The branch, master has been updated via 097075c build: On AIX we need _XOPEN_SOURCE >= 500 for CLOCK_REALTIME from aac0c58 libcli/echo: fix off by 1 crash bug
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 097075c31f79f59a498cc89ca715e5936b41b465 Author: Matthieu Patou <m...@matws.net> Date: Sat Dec 11 13:13:42 2010 +0300 build: On AIX we need _XOPEN_SOURCE >= 500 for CLOCK_REALTIME Autobuild-User: Matthieu Patou <m...@samba.org> Autobuild-Date: Sat Dec 11 14:48:21 CET 2010 on sn-devel-104 ----------------------------------------------------------------------- Summary of changes: buildtools/wafsamba/wscript | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) Changeset truncated at 500 lines: diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index 5756df4..2b73f7f 100644 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -300,6 +300,9 @@ def configure(conf): else: conf.env.HAVE_LD_VERSION_SCRIPT = False + if sys.platform == "aix5": + conf.DEFINE('_XOPEN_SOURCE', 500, add_to_cflags=True) + # we should use the PIC options in waf instead # Some compilo didn't support -fPIC but just print a warning if conf.env['COMPILER_CC'] == "suncc": -- Samba Shared Repository