Move -stc=c99 to CFLAGS restricted to only 4.next
[buildfarm-client.git] / build-farm.conf.template
index a2745d252f6a13407cfe90d708d56457a6300e20..cb08834c5c9945bea2f9c4105d0efeebdb8b1552 100644 (file)
@@ -220,6 +220,12 @@ our %conf =(
         qw()
     ],
 
+    # Configuration tuning for test suite ./configure
+    test_configure_env => {},
+    test_configure_args => [],
+    # Configuration tuning for test suite run
+    # eg. test_run_args = '-FLAVOUR openssl_1_1_1',
+    test_run_args => '',       
 );
 
 if ($branch eq 'global')
@@ -245,4 +251,11 @@ 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;