makefile_set =>{
# uncomment to use ccache
#CC => 'ccache gcc',
+ HAVE_IPV6 => 'yes',
# Required for some tests to pass
AUTH_PLAINTEXT => 'yes',
SUPPORT_MAILDIR => 'yes',
# 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',
],
# Configuration tuning for test suite ./configure
- test_configure_env =>{},
- test_configure_args =>[],
+ 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')