[SCM] Samba Shared Repository - branch master updated

Björn Jacke bjacke at samba.org
Fri May 7 03:58:21 MDT 2010


The branch, master has been updated
       via  358a385... s3:configure: use correct SONAMEFLAG on Solaris depending on which linker is being used
      from  4ad1943... Make us pass all SMB2 lock tests except MULTIPLE-UNLOCK and CONTEXT. Them next :-).

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


- Log -----------------------------------------------------------------
commit 358a3855c20153d7fe742ca2e6b9bd8a9c92e525
Author: Björn Jacke <bj at sernet.de>
Date:   Fri May 7 11:56:38 2010 +0200

    s3:configure: use correct SONAMEFLAG on Solaris depending on which linker is being used

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

Summary of changes:
 source3/configure.in |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/configure.in b/source3/configure.in
index 330e2e8..61e60a1 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -1562,11 +1562,15 @@ DSO_EXPORTS=""
 				LDSHFLAGS="-shared"
 			else
 				PICFLAG="-KPIC"
-				SONAMEFLAG="-h "
 				## ${CFLAGS} added for building 64-bit shared
 				## libs using Sun's Compiler
 				LDSHFLAGS="-G \${CFLAGS}"
 			fi
+			if test "$ac_cv_prog_gnu_ld" = "yes"; then
+				SONAMEFLAG="-Wl,-soname="
+			else
+				SONAMEFLAG="-Wl,-h,"
+			fi
 			AC_DEFINE(STAT_ST_BLOCKSIZE,512,[The size of a block])
 			AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
 			;;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list