diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-11-16 08:30:32 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:45:28 +0100 |
commit | 31fe478cec856bf90404833923583a7793aba0c0 (patch) | |
tree | 555c69cec1992939b1dbf09aac0fbd1ea5dbfee3 | |
parent | 579eca54b738fb2f78bc994cee8632dbf94c5a2d (diff) | |
download | samba-31fe478cec856bf90404833923583a7793aba0c0.tar.gz samba-31fe478cec856bf90404833923583a7793aba0c0.tar.bz2 samba-31fe478cec856bf90404833923583a7793aba0c0.zip |
r25982: libreplace: try to ignore unresolved symbols in modules on Tru64
metze
(This used to be commit bfde13b70b6be4c4aeeafa50d4619237930f9e0e)
-rw-r--r-- | source4/lib/replace/libreplace_ld.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/lib/replace/libreplace_ld.m4 b/source4/lib/replace/libreplace_ld.m4 index 2f9834838d..9356ebdf6e 100644 --- a/source4/lib/replace/libreplace_ld.m4 +++ b/source4/lib/replace/libreplace_ld.m4 @@ -223,6 +223,9 @@ AC_DEFUN([AC_LIBREPLACE_MDLD_FLAGS], MDLD_FLAGS="-b" fi ;; + *osf*) + MDLD_FLAGS="-shared -expect_unresolved '*'" + ;; *darwin*) MDLD_FLAGS="-bundle -flat_namespace -undefined suppress -Wl,-search_paths_first" ;; |