[SCM] Samba Shared Repository - branch master updated

Matthias Dieter Wallnöfer mdw at samba.org
Sat Sep 11 04:18:39 MDT 2010


The branch, master has been updated
       via  2442d25 lib/replace:wscript - additional attempt to fix the build on Tru64
      from  a02a2c3 libcli/security Use talloc_zero when making a struct security_token

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 2442d256368daa11b55ca61578a73620653736df
Author: Matthias Dieter Wallnöfer <mdw at samba.org>
Date:   Sat Sep 11 12:15:20 2010 +0200

    lib/replace:wscript - additional attempt to fix the build on Tru64
    
    Obviously we really need both definitions ("socklen_t" has been found by
    "_XOPEN_SOURCE"=500). But now FIONREAD wasn't accessible.

-----------------------------------------------------------------------

Summary of changes:
 lib/replace/wscript |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/replace/wscript b/lib/replace/wscript
index 331f1e8..e626eeb 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -29,8 +29,10 @@ def configure(conf):
 
     conf.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1)
 
-    # on Tru64 certain features are only available with _XOPEN_SOURCE set to 500
+    # on Tru64 certain features are only available with _OSF_SOURCE set to 1
+    # and _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')


-- 
Samba Shared Repository


More information about the samba-cvs mailing list