mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
r158: cope with or without LDAP in samba build of ldb
This commit is contained in:
parent
5004159bf9
commit
e776ce4f9e
@ -52,11 +52,11 @@ struct ldb_context *ldb_connect(const char *url, unsigned int flags,
|
||||
return ltdb_connect(url, flags, options);
|
||||
}
|
||||
|
||||
#ifdef HAVE_LDAP
|
||||
#if HAVE_LDAP
|
||||
if (strncmp(url, "ldap", 4) == 0) {
|
||||
return lldb_connect(url, flags, options);
|
||||
}
|
||||
#endif /*HAVE_LDAP*/
|
||||
#endif
|
||||
|
||||
errno = EINVAL;
|
||||
return NULL;
|
||||
|
@ -1,3 +1,7 @@
|
||||
if test x"$HAVE_LDAP" = x"yes"; then
|
||||
SMB_SUBSYSTEM(LIBLDB_LDAP,[lib/ldb/ldb_ldap/ldb_ldap.o])
|
||||
fi
|
||||
|
||||
SMB_SUBSYSTEM(LIBLDB,[lib/ldb/common/ldb.o],
|
||||
[lib/ldb/common/ldb_ldif.o \
|
||||
lib/ldb/common/ldb_parse.o \
|
||||
@ -8,7 +12,7 @@ SMB_SUBSYSTEM(LIBLDB,[lib/ldb/common/ldb.o],
|
||||
lib/ldb/ldb_tdb/ldb_pack.o \
|
||||
lib/ldb/ldb_tdb/ldb_index.o \
|
||||
lib/ldb/ldb_tdb/ldb_match.o \
|
||||
lib/ldb/ldb_ldap/ldb_ldap.o],
|
||||
\$(LIBLDAP_LDAP_OBJS)],
|
||||
lib/ldb/include/ldb.h)
|
||||
|
||||
SMB_SUBSYSTEM(LDBADD,[],
|
||||
|
Loading…
Reference in New Issue
Block a user