[SCM] Samba Shared Repository - branch master updated

Matthieu Patou mat at samba.org
Tue Dec 14 06:46:02 MST 2010


The branch, master has been updated
       via  a55f5e7 wafsamba: change the default value for SAMBA_MODULE of pyembed to False
       via  8c90287 build do not add -no-undefined on openbsd
      from  0fe7440 Ensure we use vfs_fsp_stat(), not VFS_STAT directly, and store into fsp->fsp_name->st instead of a SMB_STRUCT_STAT on the stack.

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


- Log -----------------------------------------------------------------
commit a55f5e7080587ae7cc3b2e64ef2fbd467cc24842
Author: Matthieu Patou <mat at matws.net>
Date:   Tue Dec 14 15:38:03 2010 +0300

    wafsamba: change the default value for SAMBA_MODULE of pyembed to False
    
    ALL SAMBA_MODULE didn't need this, new modules that could need will just
    have to opt this in
    
    Autobuild-User: Matthieu Patou <mat at samba.org>
    Autobuild-Date: Tue Dec 14 14:45:15 CET 2010 on sn-devel-104

commit 8c90287198afa59b4d96ebaa7985d38753c14caf
Author: Matthieu Patou <mat at matws.net>
Date:   Mon Dec 13 17:41:26 2010 +0300

    build do not add -no-undefined on openbsd

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

Summary of changes:
 buildtools/wafsamba/wafsamba.py |    2 +-
 source4/lib/ldb/wscript         |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py
index 3cb97c0..7758aff 100644
--- a/buildtools/wafsamba/wafsamba.py
+++ b/buildtools/wafsamba/wafsamba.py
@@ -361,7 +361,7 @@ def SAMBA_MODULE(bld, modname, source,
                  local_include=True,
                  vars=None,
                  enabled=True,
-                 pyembed=True,
+                 pyembed=False,
                  ):
     '''define a Samba module.'''
 
diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript
index c75525d..eb205e0 100644
--- a/source4/lib/ldb/wscript
+++ b/source4/lib/ldb/wscript
@@ -62,7 +62,8 @@ def configure(conf):
 
     # we don't want any libraries or modules to rely on runtime
     # resolution of symbols
-    conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
+    if sys.platform != "openbsd":
+        conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True)
 
     conf.SAMBA_CONFIG_H()
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list