diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-05-04 09:35:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:51:58 -0500 |
commit | 91ec102fb99853ddfd854efa54bbd0862d34e2e7 (patch) | |
tree | c3fc878436d5d0635b3757c74fd9c41dc9d80984 | |
parent | 6c6c5927a1e16e347a0e353904241694b21b57f9 (diff) | |
download | samba-91ec102fb99853ddfd854efa54bbd0862d34e2e7.tar.gz samba-91ec102fb99853ddfd854efa54bbd0862d34e2e7.tar.bz2 samba-91ec102fb99853ddfd854efa54bbd0862d34e2e7.zip |
r22662: disable shared library support on Tru64
metze
(This used to be commit 75d5155cd33096aea0dc31dfa596769eb923299d)
-rw-r--r-- | source4/build/m4/check_ld.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/build/m4/check_ld.m4 b/source4/build/m4/check_ld.m4 index f4a4c6d0ab..a86be25ed4 100644 --- a/source4/build/m4/check_ld.m4 +++ b/source4/build/m4/check_ld.m4 @@ -135,7 +135,8 @@ case "$host_os" in fi ;; *osf*) - BLDSHARED="true" + # disabled because tru64 fails to link libtorture.so + BLDSHARED="false" SONAMEFLAG="-Wl,-soname," PICFLAG="-fPIC" ;; |