summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-09-27 01:02:37 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-09-27 01:02:37 +0000
commit9e7a6d6b8b4f5bf38d6faa2fca211657fc8b2959 (patch)
treecbe22cb9b2494f674c925534c5a619eef6d6501e /source3/configure.in
parentc60f6f066ea47f7d85fc8028f9d657cfe5841893 (diff)
downloadsamba-9e7a6d6b8b4f5bf38d6faa2fca211657fc8b2959.tar.gz
samba-9e7a6d6b8b4f5bf38d6faa2fca211657fc8b2959.tar.bz2
samba-9e7a6d6b8b4f5bf38d6faa2fca211657fc8b2959.zip
Readd the 2.2 --with-ldapsam paramaters so as to allow a smooth upgrade path to
a 3.0 based PDC. Change defaults to use SSL, so that this also matches. Andrew Bartlett (This used to be commit 36c2a3820faa1d90cd331881720be0e61ab93460)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 5221b8ec2b..faa7a2d6fa 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -2216,6 +2216,23 @@ AC_ARG_WITH(sam,
########################################################################################
#################################################
+# check for a LDAP password database configuration backwards compatibility
+AC_MSG_CHECKING(whether to use LDAP SAM 2.2 compatible configuration)
+AC_ARG_WITH(ldapsam,
+[ --with-ldapsam Include LDAP SAM 2.2 compatible configuration (default=no)],
+[ case "$withval" in
+ yes)
+ AC_MSG_RESULT(yes)
+ AC_DEFINE(WITH_LDAP_SAMCONFIG)
+ ;;
+ *)
+ AC_MSG_RESULT(no)
+ ;;
+ esac ],
+ AC_MSG_RESULT(no)
+)
+
+#################################################
# check for a TDB password database
AC_MSG_CHECKING(whether to use TDB SAM database)
AC_ARG_WITH(tdbsam,