Author: metze Date: 2006-09-28 15:10:11 +0000 (Thu, 28 Sep 2006) New Revision: 18974
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18974 Log: we don't have the configure check that sets ac_cv_gnu_ld_no_default_allow_shlib_undefined and as -Wl,--allow-shlib-undefined is supported on SuSE 7.3 I don't see a problem is always pass it explicit metze Modified: branches/SAMBA_4_0/source/build/m4/check_ld.m4 Changeset: Modified: branches/SAMBA_4_0/source/build/m4/check_ld.m4 =================================================================== --- branches/SAMBA_4_0/source/build/m4/check_ld.m4 2006-09-28 14:08:44 UTC (rev 18973) +++ branches/SAMBA_4_0/source/build/m4/check_ld.m4 2006-09-28 15:10:11 UTC (rev 18974) @@ -42,11 +42,7 @@ case "$host_os" in *linux*) BLDSHARED="true" - if test "${ac_cv_gnu_ld_no_default_allow_shlib_undefined}" = "yes"; then - SHLD_FLAGS="-shared -Wl,-Bsymbolic -Wl,--allow-shlib-undefined" - else - SHLD_FLAGS="-shared -Wl,-Bsymbolic" - fi + SHLD_FLAGS="-shared -Wl,-Bsymbolic -Wl,--allow-shlib-undefined" LDFLAGS="-Wl,--export-dynamic" PICFLAG="-fPIC" SONAMEFLAG="-Wl,-soname="
