[SCM] Samba Shared Repository - branch master updated

Amitay Isaacs amitay at samba.org
Fri Mar 16 09:05:02 MDT 2012


The branch, master has been updated
       via  cbe27b3 build: Do not use --export-dynamic flag on OpenBSD 5.x
      from  8503eec s3-notify: Lift "/." handling up one level

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


- Log -----------------------------------------------------------------
commit cbe27b37190315c4b6a32132dc4c1e8d487fa50b
Author: Amitay Isaacs <amitay at gmail.com>
Date:   Fri Mar 16 22:57:09 2012 +1100

    build: Do not use --export-dynamic flag on OpenBSD 5.x
    
    With --export-dynamic flag on OpenBSD 5.x, extra symbols get added in the
    data segment which causes ABI generation script to fail.
    
    Autobuild-User: Amitay Isaacs <amitay at samba.org>
    Autobuild-Date: Fri Mar 16 16:04:31 CET 2012 on sn-devel-104

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

Summary of changes:
 source3/wscript |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/wscript b/source3/wscript
index 4da8a44..476fb10 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -69,7 +69,8 @@ def configure(conf):
     if Options.options.with_swat:
         conf.env['build_swat'] = True
 
-    conf.ADD_LDFLAGS("-Wl,--export-dynamic", testflags=True)
+    if sys.platform != 'openbsd5':
+        conf.ADD_LDFLAGS("-Wl,--export-dynamic", testflags=True)
 
     conf.CHECK_HEADERS('execinfo.h libexc.h libunwind.h netdb.h')
     conf.CHECK_HEADERS('linux/falloc.h')


-- 
Samba Shared Repository


More information about the samba-cvs mailing list