Revert "Move -stc=c99 to CFLAGS restricted to only 4.next"
authorJeremy Harris <jgh@wizmail.org>
Tue, 12 Feb 2019 11:38:44 +0000 (11:38 +0000)
committerJeremy Harris <jgh@wizmail.org>
Tue, 12 Feb 2019 11:38:44 +0000 (11:38 +0000)
This reverts commit f7ec5ba1bbea7563ea9084bb2f67a260f0041d65.
For 4.93 onwards, c99 is required for all active branches

build-farm.conf.template

index cb08834c5c9945bea2f9c4105d0efeebdb8b1552..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',
@@ -251,11 +252,4 @@ if ($branch eq 'global')
 #      $conf{makefile_set}{SUPPORT_DANE} = '';
 #}
 
-# Some platforms need the c99 setting enabled for 4.next, which starts using more c99 syntax
-if ($branch eq '4.next')
-{
-        $conf{makefile_add}{CFLAGS} .= ' -std=c99';
-}
-
-
 1;