Author: metze Date: 2007-05-24 09:28:05 +0000 (Thu, 24 May 2007) New Revision: 23110
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23110 Log: add --disable-shared option, very useful for the build-farm... 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 2007-05-24 09:06:15 UTC (rev 23109) +++ branches/SAMBA_4_0/source/build/m4/check_ld.m4 2007-05-24 09:28:05 UTC (rev 23110) @@ -47,7 +47,7 @@ fi ]) -AC_MSG_CHECKING([ability to build shared libraries]) +AC_MSG_CHECKING([whether to try to build shared libraries on $host_os]) # and these are for particular systems case "$host_os" in @@ -167,6 +167,14 @@ AC_MSG_CHECKING([STLD_FLAGS]) AC_MSG_RESULT([$STLD_FLAGS]) +AC_ARG_ENABLE(shared, +[ --disable-shared Disable testing for building shared libraries], +[],[enable_shared=yes]) + +if test x"$enable_shared" = x"no" -o x"$enable_shared" = x"false"; then + BLDSHARED=false +fi + ####################################################### # test whether building a shared library actually works if test $BLDSHARED = true; then @@ -231,7 +239,7 @@ AC_SUBST(USESHARED) AC_ARG_ENABLE(dso, -[ --enable-dso Enable using shared libraries internally (experimental)], +[ --enable-dso Enable using shared libraries internally (experimental)], [],[enable_dso=no]) if test x"$enable_dso" = x"yes" -a x"$BLDSHARED" != x"true"; then
