From ae5d807725906810f8b9ad77d1aad1462dd513dc Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sat, 11 Sep 2010 08:22:09 +0200 Subject: lib/replace:wscript - attempt to fix the features detection on Tru64 Hopefully now we detect the built-in "socklen_t" https://bugs.internet2.edu/jira/browse/SSPCPP-114 http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V50_HTML/MAN/MAN5/0001____.HTM --- lib/replace/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/replace/wscript') diff --git a/lib/replace/wscript b/lib/replace/wscript index 35e376a05d..62075145a5 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -29,9 +29,9 @@ def configure(conf): conf.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1) - # on Tru64 certain features are only available with _OSF_SOURCE + # on Tru64 certain features are only available with _XOPEN_SOURCE set to 500 if conf.env['SYSTEM_UNAME_SYSNAME'] == 'OSF1': - conf.DEFINE('_OSF_SOURCE', 1, add_to_cflags=True) + conf.DEFINE('_XOPEN_SOURCE', 500, add_to_cflags=True) conf.CHECK_HEADERS('crypt.h locale.h acl/libacl.h compat.h') conf.CHECK_HEADERS('acl/libacl.h attr/xattr.h compat.h ctype.h dustat.h') -- cgit