diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-05-01 20:58:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:05:30 -0500 |
commit | 07440b79e86fb23248b59a5abcc88a1d090f32ee (patch) | |
tree | b708538e8a36581e77376090cedeba29aa529f16 | |
parent | ec83aa3fda3de99e1a58292af1302c42376c8739 (diff) | |
download | samba-07440b79e86fb23248b59a5abcc88a1d090f32ee.tar.gz samba-07440b79e86fb23248b59a5abcc88a1d090f32ee.tar.bz2 samba-07440b79e86fb23248b59a5abcc88a1d090f32ee.zip |
r15383: Revert making DSO's the default - this caused a few test suite breakages.
(This used to be commit 44898adcf876e34a5b93b94d2824f1c2f8bec566)
-rw-r--r-- | source4/configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source4/configure.in b/source4/configure.in index d859216e5a..a392bc8e01 100644 --- a/source4/configure.in +++ b/source4/configure.in @@ -48,6 +48,13 @@ sinclude(ntvfs/sysdep/config.m4) sinclude(lib/appweb/config.m4) sinclude(nsswitch/config.m4) +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]) + ################################################# # add *_CFLAGS only for the real build CFLAGS="${CFLAGS} ${DEVELOPER_CFLAGS}" |