The branch, master has been updated
       via  6a7c420 waf:lib/replace fix iconv checks on HP/UX
      from  9abf162 smbXsrv_open.c: Initialize local variable.

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


- Log -----------------------------------------------------------------
commit 6a7c420a79cc1258528f152f4de9a0608767729f
Author: Christian Ambach <a...@samba.org>
Date:   Wed Jan 29 20:48:38 2014 +0100

    waf:lib/replace fix iconv checks on HP/UX
    
    we need to copy away the list of LDFLAGS
    to be tried before modifying it instead of
    just creating a new reference and then continuing
    with a modified list while it should have been
    reset back to the original value
    
    Bug: https://bugzilla.samba.org/show_bug.cgi?id=9911
    
    Signed-off-by: Christian Ambach <a...@samba.org>
    
    Reviewed-by: Andrew Bartlett <abart...@samba.org>
    
    Autobuild-User(master): Andrew Bartlett <abart...@samba.org>
    Autobuild-Date(master): Thu Feb 13 02:01:03 CET 2014 on sn-devel-104

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

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


Changeset truncated at 500 lines:

diff --git a/lib/replace/wscript b/lib/replace/wscript
index ab95018..cabf91f 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -398,7 +398,7 @@ removeea setea
         else:
             # Some hosts need lib iconv for linking with lib intl
             # So we try with flags just in case it helps.
-            oldflags = conf.env['EXTRA_LDFLAGS'];
+            oldflags = list(conf.env['EXTRA_LDFLAGS']);
             conf.env['EXTRA_LDFLAGS'].extend(["-liconv"])
             conf.CHECK_FUNCS_IN('dgettext gettext bindtextdomain textdomain 
bind_textdomain_codeset',
                                 'intl', checklibc=False, headers='libintl.h')


-- 
Samba Shared Repository

Reply via email to