summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/configure.ac
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-09-25 16:59:00 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:20:19 -0500
commit95340f8afb12b8c9bcaaa230b4cad74e77a79a9c (patch)
tree9e0bb5564a0376f56ae123e3faeef62364355a45 /source4/lib/ldb/configure.ac
parent1b8d6b3e7d78c9b4d0fdb1676d5a116c12cfe127 (diff)
downloadsamba-95340f8afb12b8c9bcaaa230b4cad74e77a79a9c.tar.gz
samba-95340f8afb12b8c9bcaaa230b4cad74e77a79a9c.tar.bz2
samba-95340f8afb12b8c9bcaaa230b4cad74e77a79a9c.zip
r18903: merge from samba3:
define HAVE_LDB_LDAP and HAVE_LDB_SQLITE3 metze (This used to be commit 4e2f5ba490d717283ab089d90ebd5c108a8c53b0)
Diffstat (limited to 'source4/lib/ldb/configure.ac')
-rw-r--r--source4/lib/ldb/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/configure.ac b/source4/lib/ldb/configure.ac
index 70a4100451..e1e9d49cee 100644
--- a/source4/lib/ldb/configure.ac
+++ b/source4/lib/ldb/configure.ac
@@ -54,7 +54,7 @@ m4_include(libtdb.m4)
m4_include(ldap.m4)
if test x"$with_ldap_support" = x"yes"; then
LIBS="$LIBS -llber -lldap"
- CFLAGS="$CFLAGS -DHAVE_LDAP=1"
+ CFLAGS="$CFLAGS -DHAVE_LDB_LDAP=1"
EXTRA_OBJ="$EXTRA_OBJ ldb_ldap/ldb_ldap.o"
TESTS="$TESTS test-ldap.sh"
fi
@@ -62,7 +62,7 @@ fi
m4_include(sqlite3.m4)
if test x"$with_sqlite3_support" = x"yes"; then
LIBS="$LIBS -lsqlite3"
- CFLAGS="$CFLAGS -DHAVE_SQLITE3=1"
+ CFLAGS="$CFLAGS -DHAVE_LDB_SQLITE3=1"
EXTRA_OBJ="$EXTRA_OBJ ldb_sqlite3/ldb_sqlite3.o"
TESTS="$TESTS test-sqlite3.sh"
fi