diff options
author | Björn Jacke <bj@sernet.de> | 2010-08-13 14:53:22 +0200 |
---|---|---|
committer | Björn Jacke <bj@sernet.de> | 2010-08-13 14:57:44 +0200 |
commit | 5390baeb6b97acbfde89bdb6a2c678a516a0e360 (patch) | |
tree | 04e115352ba9abf008d461d4975faced32bb096b /source3/configure.in | |
parent | 37177f1c05398e1d4a59bebcdb3cd16dd6e8382b (diff) | |
download | samba-5390baeb6b97acbfde89bdb6a2c678a516a0e360.tar.gz |
tdb: add TDB_DEPS variable filled with required libraries
This is required for Solaris, which needs to link in librt to make use of
fdatasync().
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index 0023fe2a692..6b736712d8e 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2137,6 +2137,7 @@ then LINK_LIBTDB=STATIC SMB_LIBRARY(tdb, 1) LIBTDB_OBJ0="" + LIBTDB_LIBS="$LIBTDB_LIBS $TDB_DEPS" for obj in ${TDB_OBJ}; do LIBTDB_OBJ0="${LIBTDB_OBJ0} ${tdbdir}/${obj}" done |