diff options
Diffstat (limited to 'lib/replace')
-rw-r--r-- | lib/replace/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
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') |