From: Andrew Bartlett Date: Sun, 23 Sep 2012 20:45:05 +0000 (+1000) Subject: lib/replace: Look for special flags needed for c99 X-Git-Tag: talloc-2.0.8~182 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e51c386beff808e74c8c1f360a6f4db30fe74b5;p=thirdparty%2Fsamba.git lib/replace: Look for special flags needed for c99 This is normally handled by the waf core, but for HP-UX we currently fail. The autoconf code hard-codes a case for HP-UX, but I want to try testing it using a generic system first. Andrew Bartlett --- diff --git a/lib/replace/wscript b/lib/replace/wscript index 58053057d79..d5b2631cfd7 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -43,6 +43,16 @@ def configure(conf): conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True) conf.DEFINE('_BSD_TYPES', 1, add_to_cflags=True) + # Try to find the right extra flags for C99 initialisers + for f in ["", "-AC99", "-qlanglvl=extc99", "-qlanglvl=stdc99", "-c99"]: + if conf.CHECK_CFLAGS([f], ''' +struct foo {int x;char y;}; +struct foo bar = { .y = 'X', .x = 1 }; +'''): + if f != "": + conf.ADD_CFLAGS(f) + break + conf.CHECK_HEADERS('linux/types.h crypt.h locale.h acl/libacl.h compat.h') conf.CHECK_HEADERS('acl/libacl.h attr/xattr.h compat.h ctype.h dustat.h') conf.CHECK_HEADERS('fcntl.h fnmatch.h glob.h history.h krb5.h langinfo.h')