Add -std=c99 to example CFLAGS
authorJeremy Harris <jgh@wizmail.org>
Mon, 24 Dec 2018 00:35:24 +0000 (00:35 +0000)
committerJeremy Harris <jgh@wizmail.org>
Mon, 24 Dec 2018 00:35:24 +0000 (00:35 +0000)
build-farm.conf.template

index 223db7aa87880a940eb0d79e66049bdf84f7c336..d2e429204d98d99f18c698107ecd36ee9e7bef70 100644 (file)
@@ -169,7 +169,8 @@ our %conf =(
     # LDFLAGS => '-Wall'  will create  LDFLAGS+='-Wall'
     makefile_add =>{
         # Show all warnings and errors
-        CFLAGS => '-Wall -Wno-parentheses -Werror=format-security',
+       # Some platforms need the c99 setting enabled
+        CFLAGS => '-std=c99 -Wall -Wno-parentheses -Werror=format-security',
         # Or enable debugging flags
         #CFLAGS => '-g -Wall',
         #LFLAGS => '-g',