[SCM] Samba Shared Repository - branch master updated

Stefan Metzmacher metze at samba.org
Fri May 21 06:00:27 MDT 2010


The branch, master has been updated
       via  ab093ff... wafsamba: Disable the abi checks when gdb is not available
      from  50b472a... s4:libcli/ldap Update headermap.txt (autotools build) and wscript_build for libcli_ldap.h

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


- Log -----------------------------------------------------------------
commit ab093ffe4637db65afb3779f592f20dd55f4e5f3
Author: Thomas Nagy <tnagy2pow10 at gmail.com>
Date:   Fri May 21 12:48:11 2010 +0200

    wafsamba: Disable the abi checks when gdb is not available
    
    Try to find gdb during the configuration, if gdb is missing, disable
    the abi checks.
    
    Signed-off-by: Stefan Metzmacher <metze at samba.org>

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

Summary of changes:
 buildtools/wafsamba/wscript |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript
index 56f2e60..7bb2baa 100644
--- a/buildtools/wafsamba/wscript
+++ b/buildtools/wafsamba/wscript
@@ -191,6 +191,10 @@ def configure(conf):
     conf.env.ABI_CHECK = Options.options.ABI_CHECK or Options.options.developer
     if Options.options.ABI_CHECK_DISABLE:
         conf.env.ABI_CHECK = False
+    try:
+        conf.find_program('gdb', mandatory=True)
+    except:
+        conf.env.ABI_CHECK = False
 
     conf.CHECK_COMMAND(['uname', '-a'],
                        msg='Checking build system',


-- 
Samba Shared Repository


More information about the samba-cvs mailing list