From: Christian Ambach Date: Sat, 10 Nov 2012 00:58:43 +0000 (-0600) Subject: build(waf): support AIX 6.1 X-Git-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=3712de7b9c494f6e01782e837f369e8beb5a054e build(waf): support AIX 6.1 on AIX6.1, we need to define _ALL_SOURCE as well, otherwise system headers with BSD types like u_int cannot be used --- diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index 441e727a5b11..17aef278e9fe 100755 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -322,7 +322,7 @@ def configure(conf): else: conf.env.HAVE_LD_VERSION_SCRIPT = False - if sys.platform == "aix5": + if sys.platform == "aix5" or sys.platform == "aix6": conf.DEFINE('_ALL_SOURCE', 1, add_to_cflags=True) # Might not be needed if ALL_SOURCE is defined # conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)