diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-25 16:59:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:19 -0500 |
commit | 95340f8afb12b8c9bcaaa230b4cad74e77a79a9c (patch) | |
tree | 9e0bb5564a0376f56ae123e3faeef62364355a45 /source4/lib/ldb/common/ldb_modules.c | |
parent | 1b8d6b3e7d78c9b4d0fdb1676d5a116c12cfe127 (diff) | |
download | samba-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/common/ldb_modules.c')
-rw-r--r-- | source4/lib/ldb/common/ldb_modules.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c index 06a8a4bcf6..adbbe58e10 100644 --- a/source4/lib/ldb/common/ldb_modules.c +++ b/source4/lib/ldb/common/ldb_modules.c @@ -137,13 +137,13 @@ static const struct ldb_module_ops *ldb_find_module_ops(const char *name) #ifndef STATIC_ldb_MODULES -#ifdef HAVE_LDAP +#ifdef HAVE_LDB_LDAP #define LDAP_INIT ldb_ldap_init, #else #define LDAP_INIT #endif -#ifdef HAVE_SQLITE3 +#ifdef HAVE_LDB_SQLITE3 #define SQLITE3_INIT ldb_sqlite3_init, #else #define SQLITE3_INIT |