[SCM] Samba Shared Repository - branch v3-6-test updated

Karolin Seeger kseeger at samba.org
Sun Feb 12 12:57:55 MST 2012


The branch, v3-6-test has been updated
       via  9269f41 s3-popt: Fix configure.developer builds on Solaris.
      from  9d5ed16 s3:winbindd fix a return code check

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit 9269f41229368b2614880718e710fd461b28196f
Author: Ira Cooper <ira at samba.org>
Date:   Fri Feb 3 16:47:18 2012 -0800

    s3-popt: Fix configure.developer builds on Solaris.
    
    alloca.h needs to be included, or the build complains the implicit
    definition of alloca.
    
    Signed-off-by: Jeremy Allison <jra at samba.org>
    
    Autobuild-User: Jeremy Allison <jra at samba.org>
    Autobuild-Date: Sat Feb  4 03:27:42 CET 2012 on sn-devel-104
    (cherry picked from commit 74ca6d1ddb1c5a4fbe9ddb29566878efe1761897)
    
    Fix bug #8743 (configure.developer build is broken).

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

Summary of changes:
 lib/popt/system.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/popt/system.h b/lib/popt/system.h
index 1d1b9da..bbb4f6c 100644
--- a/lib/popt/system.h
+++ b/lib/popt/system.h
@@ -58,6 +58,8 @@ char *alloca ();
 # endif
 #elif defined(__GNUC__) && defined(__STRICT_ANSI__)
 #define alloca __builtin_alloca
+#elif defined(__GNUC__) && defined(HAVE_ALLOCA_H)
+# include <alloca.h>
 #endif
 
 /*@-redecl -redef@*/


-- 
Samba Shared Repository


More information about the samba-cvs mailing list