summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2010-06-16 23:36:38 +0200
committerKarolin Seeger <kseeger@samba.org>2010-06-18 08:33:34 +0200
commitfbbefbc0e2c821a5a05e7157ad4a9422ea87e4d4 (patch)
treee6a1722035bfc7c8fd4f2a21bd4d6268b3e2d88b
parent0d9db4b4ad2bd32c461661d641484f35affe1856 (diff)
downloadsamba-fbbefbc0e2c821a5a05e7157ad4a9422ea87e4d4.tar.gz
s3:configure: use cc for linking on IRIX and fix shlib usage
The last two patches address bug #7504 (numerous build glitches to be fixed). (cherry picked from commit fe9dde3a629db9ae98ff6d94be145aa7e7c2d9ce)
-rw-r--r--source3/configure.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 4e9ee1ba604..4360ca6e130 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -1571,9 +1571,8 @@ DSO_EXPORTS=""
;;
esac
BLDSHARED="true"
- LDSHFLAGS="-set_version sgi1.0 -shared"
- SONAMEFLAG="-soname "
- SHLD="\${LD}"
+ LDSHFLAGS="-Wl,-set_version,sgi1.0 -shared"
+ SONAMEFLAG="-Wl,-soname,"
if test "${GCC}" = "yes"; then
PICFLAG="-fPIC"
else