[SCM] Samba Shared Repository - branch v3-4-test updated
Karolin Seeger
kseeger at samba.org
Fri Dec 31 12:03:21 MST 2010
The branch, v3-4-test has been updated
via d28ba1d Ñ3/configue: set Tru64 cc's PIC switch right (none)
from 023aa6f Fix bug #7892 - open_file_fchmod() leaves a stale lock.
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-4-test
- Log -----------------------------------------------------------------
commit d28ba1d46c226c8c611816393cdf8eba393300f5
Author: Björn Jacke <bj at sernet.de>
Date: Fri Nov 26 01:32:53 2010 +0100
Ñ3/configue: set Tru64 cc's PIC switch right (none)
-fPIC made shared library builds fail there
Fixes #7821
(cherry picked from commit dbcf73c45782c310cb7ff1f2177d410399e2f06d)
(cherry picked from commit 83eb2e9aef40e5e838d2654298e281ad3ec98af3)
-----------------------------------------------------------------------
Summary of changes:
source3/configure.in | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/configure.in b/source3/configure.in
index 237d22f..b34d690 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -1647,7 +1647,9 @@ DSO_EXPORTS=""
BLDSHARED="true"
LDSHFLAGS="-shared"
SONAMEFLAG="-Wl,-soname,"
- PICFLAG="-fPIC"
+ if test "${GCC}" = "yes"; then
+ PICFLAG="-fPIC"
+ fi
AC_DEFINE(STAT_ST_BLOCKSIZE,512)
AC_DEFINE(BROKEN_GETGRNAM,1,[Does getgrnam work correctly])
;;
--
Samba Shared Repository
More information about the samba-cvs
mailing list