From 938a0bc9ac657df7a1b530b9c2e9c7b2cdfaff6c Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 24 May 2007 09:28:05 +0000 Subject: r23110: add --disable-shared option, very useful for the build-farm... metze (This used to be commit 251d534a883efd384e0951c9af595203d962b972) --- source4/build/m4/check_ld.m4 | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'source4/build/m4') diff --git a/source4/build/m4/check_ld.m4 b/source4/build/m4/check_ld.m4 index 8e0a709a3a..9bc96fb83f 100644 --- a/source4/build/m4/check_ld.m4 +++ b/source4/build/m4/check_ld.m4 @@ -47,7 +47,7 @@ else 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_RESULT([$STLD]) 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 @@ USESHARED=false 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 -- cgit