Ports: Build bc with -std=c17

This port tries to do `UINTMAX_C(true)`.
`UINTMAX_C(x)` is defined as `x ## UL`, resulting in `trueUL` when
using C23's bool keywords.
This commit is contained in:
Sönke Holz
2026-02-25 17:54:44 +01:00
committed by Sönke Holz
parent 0ddb109ed7
commit 2ec81e01d5

View File

@@ -8,7 +8,7 @@ useconfigure='true'
configscript='configure.sh'
configopts=("--prefix=/usr/local" "--disable-nls")
export CFLAGS='-O3 -flto'
export CFLAGS='-O3 -flto -std=c17'
configure() {
run ./"${configscript}" "${configopts[@]}"