diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-12-31 03:43:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:49:10 -0500 |
commit | 8d147a4dd30ab94ccd1d8faedc38fad5af69150a (patch) | |
tree | 9b54f921f92d58a4c32d5f49088d288de9fc5ec2 /source4/lib/ldb | |
parent | cf07cd3feeea7cc1874c95affc67b428aabf412c (diff) | |
download | samba-8d147a4dd30ab94ccd1d8faedc38fad5af69150a.tar.gz samba-8d147a4dd30ab94ccd1d8faedc38fad5af69150a.tar.bz2 samba-8d147a4dd30ab94ccd1d8faedc38fad5af69150a.zip |
r12632: Build fixes from Brad Hards <bradh@frogmouth.net>
Andrew Bartlett
(This used to be commit 44b107d3150135ee4381c1ba4eac23bfd9cb16b9)
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/Makefile.in | 2 | ||||
-rw-r--r-- | source4/lib/ldb/configure.in | 1 | ||||
-rw-r--r-- | source4/lib/ldb/include/ldb_private.h | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in index 26d1ffff2e..6b90837aed 100644 --- a/source4/lib/ldb/Makefile.in +++ b/source4/lib/ldb/Makefile.in @@ -60,7 +60,7 @@ COMMON_OBJ=common/ldb.o common/ldb_ldif.o \ common/attrib_handlers.o MODULES_OBJ=modules/operational.o modules/schema.o modules/rdn_name.o \ - modules/ldb_map.o + modules/objectclass.o modules/ldb_map.o OBJS = $(MODULES_OBJ) $(COMMON_OBJ) $(LDB_TDB_OBJ) $(TDB_OBJ) $(TALLOC_OBJ) $(LDB_LDAP_OBJ) $(LDB_SQLITE3_OBJ) diff --git a/source4/lib/ldb/configure.in b/source4/lib/ldb/configure.in index 8b9e599892..05bc015919 100644 --- a/source4/lib/ldb/configure.in +++ b/source4/lib/ldb/configure.in @@ -11,6 +11,7 @@ AC_DEFUN([SMB_MODULE_DEFAULT], [echo -n ""]) AC_DEFUN([SMB_LIBRARY_ENABLE], [echo -n ""]) AC_DEFUN([SMB_EXT_LIB_ENABLE], [echo -n ""]) AC_DEFUN([SMB_EXT_LIB], [echo -n ""]) +AC_DEFUN([SMB_ENABLE], [echo -n ""]) AC_INIT(include/ldb.h) WITH_GCOV=0 AC_ARG_ENABLE(gcov, diff --git a/source4/lib/ldb/include/ldb_private.h b/source4/lib/ldb/include/ldb_private.h index 94ee10860b..d0aec6e137 100644 --- a/source4/lib/ldb/include/ldb_private.h +++ b/source4/lib/ldb/include/ldb_private.h @@ -150,6 +150,7 @@ int lsqlite3_connect(struct ldb_context *ldb, struct ldb_module *operational_module_init(struct ldb_context *ldb, const char *options[]); struct ldb_module *schema_module_init(struct ldb_context *ldb, const char *options[]); struct ldb_module *rdn_name_module_init(struct ldb_context *ldb, const char *options[]); +struct ldb_module *objectclass_module_init(struct ldb_context *ldb, const char *options[]); int ldb_match_msg(struct ldb_context *ldb, |