diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-05-22 11:56:50 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-05-30 04:15:11 +0200 |
commit | 91e4983d306aacbdfe2097fc8d9e60cb367989bb (patch) | |
tree | 2b241df3d075aeda1773c4e44ceaea68b21ce3b6 /source3/configure.in | |
parent | ac63b55033d4ba37dbbc4712fa980ac90a162e2d (diff) | |
download | samba-91e4983d306aacbdfe2097fc8d9e60cb367989bb.tar.gz |
s3-build: Remove build of libtdb.so from the autoconf build
We now either link tdb statically or we use the system provided tdb
This means that we now only have one build system for externally-available
tdb, which in turn ensures we have a consistent shared library built as
libtdb.so
Andrew Bartlett
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in index 890e1fb304..324586c40d 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1954,9 +1954,7 @@ AC_SUBST(LIBTDB_OBJ0) if test "x$enable_external_libtdb" = xno then m4_include(../lib/tdb/libtdb.m4) - if test x"$USESHARED" == x"no" ; then - LINK_LIBTDB=STATIC - fi + LINK_LIBTDB=STATIC LIBTDBVERSION=`grep ^VERSION ${tdbdir}/wscript | sed -e "s/'//g" -e 's/.* //'` SMB_LIBRARY(tdb, 1, ${LIBTDBVERSION}) LIBTDB_OBJ0="" |