blob: dfa72e4cd3e9e588a03aee2ba2e7d98bdc5be46f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
SMB_MODULE_DEFAULT(libldb_ldap,NOT)
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)
fi
|