mirror of
https://github.com/samba-team/samba.git
synced 2025-08-02 00:22:11 +03:00
waf: fix build on AIX7
the same works for AIX 5,6,7 so leave away the version specifics (as autoconf build did) Signed-off-by: Christian Ambach <ambi@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
@ -322,7 +322,7 @@ def configure(conf):
|
||||
else:
|
||||
conf.env.HAVE_LD_VERSION_SCRIPT = False
|
||||
|
||||
if sys.platform == "aix5" or sys.platform == "aix6":
|
||||
if sys.platform.startswith('aix'):
|
||||
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)
|
||||
|
Reference in New Issue
Block a user