diff options
author | Derrell Lipman <derrell@samba.org> | 2005-06-04 17:13:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:35 -0500 |
commit | a1ba224107fbcf6f8a9a3091f42cde2a0c47f85e (patch) | |
tree | 0d29cea6db75b6318f9645def992a7a840a369bf /source4/lib/ldb/config.m4 | |
parent | 5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0 (diff) | |
download | samba-a1ba224107fbcf6f8a9a3091f42cde2a0c47f85e.tar.gz samba-a1ba224107fbcf6f8a9a3091f42cde2a0c47f85e.tar.bz2 samba-a1ba224107fbcf6f8a9a3091f42cde2a0c47f85e.zip |
r7276: - moved static tdb function ltdb_dn_fold() into common/ so that it can be
called from multiple backends. (ldb_sqlite3 needs it too.) Added parameter
for a callback function that determines whether an attribute needs case
folding.
- begin to prepare for sqlite3 in build process
- work-in-progress updates, on ldb_sqlite3
(This used to be commit a80bced0b96ffb655559a43cf7f4d7a34deb5a7d)
Diffstat (limited to 'source4/lib/ldb/config.m4')
-rw-r--r-- | source4/lib/ldb/config.m4 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/ldb/config.m4 b/source4/lib/ldb/config.m4 index 1a65eebd01..dfa72e4cd3 100644 --- a/source4/lib/ldb/config.m4 +++ b/source4/lib/ldb/config.m4 @@ -3,6 +3,11 @@ if test x"$with_ldap_support" = x"yes"; then SMB_MODULE_DEFAULT(libldb_ldap,STATIC) fi +SMB_MODULE_DEFAULT(libldb_sqlite3,NOT) +if test x"$with_sqlite3_support" = x"yes"; then + SMB_MODULE_DEFAULT(libldb_sqlite3,STATIC) +fi + SMB_LIBRARY_ENABLE(libldb,NO) if test x"$experimental" = x"yes"; then SMB_LIBRARY_ENABLE(libldb,YES) |