summaryrefslogtreecommitdiff
path: root/source4/build/m4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-11-06 20:17:25 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:24:56 -0500
commit0b3f04a9be532f1bc36f1608652b955738beaee7 (patch)
treef0b20864c12acc90811a542d270404be20f3aaf7 /source4/build/m4
parent5c3fd8e4717ec7167a67f9e9ee1e2d86f7d515a8 (diff)
downloadsamba-0b3f04a9be532f1bc36f1608652b955738beaee7.tar.gz
samba-0b3f04a9be532f1bc36f1608652b955738beaee7.tar.bz2
samba-0b3f04a9be532f1bc36f1608652b955738beaee7.zip
r19582: Support building both shared and static versions of libraries at the same
time. The --enable-dso flag now specifies whether or not the Samba binaries themselves should be linked against the shared libraries. By default, all libraries will be built staticly. If supported, the shared variant of each library will also be built. If people think building both shared and static library versions in 'make all' is too time-inefficient, please let me know and I'll move the shared library bits to 'make everything'. (This used to be commit 91faa1154a1de18a42f5e237c406157026280478)
Diffstat (limited to 'source4/build/m4')
-rw-r--r--source4/build/m4/check_ld.m47
1 files changed, 0 insertions, 7 deletions
diff --git a/source4/build/m4/check_ld.m4 b/source4/build/m4/check_ld.m4
index e44c29d0e3..9428f62040 100644
--- a/source4/build/m4/check_ld.m4
+++ b/source4/build/m4/check_ld.m4
@@ -185,10 +185,3 @@ AC_TRY_RUN([#include "${srcdir-.}/build/tests/trivial.c"],
AC_MSG_RESULT(yes),
AC_MSG_ERROR([we cannot link with the selected cc and ld flags. Aborting configure]),
AC_MSG_WARN([cannot run when cross-compiling]))
-
-AC_ARG_ENABLE(dso,
-[ --enable-dso Enable building internal libraries as DSO's (experimental)],
-[ if test x$enable_dso != xyes; then
- BLDSHARED=false
- fi],
-[BLDSHARED=false])