summaryrefslogtreecommitdiffstats
path: root/source/Makefile.in
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-24 03:15:58 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:14:39 -0500
commit1cf17edc14ebd379b982b589a66e86316ef7087b (patch)
tree493374ce9ee29a5373fcb76ad1876ffb80695c4f /source/Makefile.in
parent203fc0b03c7397f7339a917456cb1701ed592f32 (diff)
downloadsamba-1cf17edc14ebd379b982b589a66e86316ef7087b.tar.gz
samba-1cf17edc14ebd379b982b589a66e86316ef7087b.tar.xz
samba-1cf17edc14ebd379b982b589a66e86316ef7087b.zip
r18869: two build fixes for systems without ldap
the first is to not enable the ldap ldb backend just yet. This will need configure tests to conditionally include. We should be able to use the m4 files from lib/ldb/ The 2nd is to fix libads/gpo.o not to publicly prototype a function that needs ldap.h
Diffstat (limited to 'source/Makefile.in')
-rw-r--r--source/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Makefile.in b/source/Makefile.in
index 1a4c63df0a1..cc2c355f1c0 100644
--- a/source/Makefile.in
+++ b/source/Makefile.in
@@ -789,7 +789,8 @@ LDB_MODULES_OBJ=lib/ldb/modules/operational.o lib/ldb/modules/schema.o lib/ldb/m
lib/ldb/modules/objectclass.o \
lib/ldb/modules/paged_results.o lib/ldb/modules/sort.o lib/ldb/modules/asq.o
-LDB_LDAP_OBJ=lib/ldb/ldb_ldap/ldb_ldap.o
+# disabled until build issues sorted out
+# LDB_LDAP_OBJ=lib/ldb/ldb_ldap/ldb_ldap.o
LDB_OBJ = ${LDB_COMMON_OBJ} ${LDB_TDB_OBJ} ${LDB_LDAP_OBJ} ${LDB_MODULES_OBJ}