diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-12-19 08:18:57 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:51:55 +0100 |
commit | 9d71dba42e3d4a31079c28ed6a456bfdfad7f124 (patch) | |
tree | 1cf95efaab8d339a4410544aff3fb36918e9f5ad /source4/lib/replace/libreplace_ld.m4 | |
parent | 1385a75409fc8d200aa3836ae7d3dc8de240d860 (diff) | |
download | samba-9d71dba42e3d4a31079c28ed6a456bfdfad7f124.tar.gz samba-9d71dba42e3d4a31079c28ed6a456bfdfad7f124.tar.bz2 samba-9d71dba42e3d4a31079c28ed6a456bfdfad7f124.zip |
r26533: libreplace: hopefully fix the share library/module build on darwin
metze
(This used to be commit 3d64338f3cfeef2e9851ca8c932863af6f1f22c3)
Diffstat (limited to 'source4/lib/replace/libreplace_ld.m4')
-rw-r--r-- | source4/lib/replace/libreplace_ld.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/replace/libreplace_ld.m4 b/source4/lib/replace/libreplace_ld.m4 index c317680a9a..cb8e21434e 100644 --- a/source4/lib/replace/libreplace_ld.m4 +++ b/source4/lib/replace/libreplace_ld.m4 @@ -164,7 +164,7 @@ AC_DEFUN([AC_LIBREPLACE_LD_SHLIB_DISALLOW_UNDEF_FLAG], LD_SHLIB_DISALLOW_UNDEF_FLAG="-warning_unresolved" ;; *darwin*) - LD_SHLIB_DISALLOW_UNDEF_FLAG="-undefined warning" + LD_SHLIB_DISALLOW_UNDEF_FLAG="-undefined error" ;; esac @@ -268,7 +268,7 @@ AC_DEFUN([AC_LIBREPLACE_LD_SHLIB_ALLOW_UNDEF_FLAG], LD_SHLIB_ALLOW_UNDEF_FLAG="-expect_unresolved '*'" ;; *darwin*) - LD_SHLIB_ALLOW_UNDEF_FLAG="-undefined suppress" + LD_SHLIB_ALLOW_UNDEF_FLAG="-undefined dynamic_lookup" ;; esac |