From 7717998192111626584132cf56746194980a2d70 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Thu, 18 Jan 2001 18:40:21 +0000 Subject: [PATCH] treat additional schemes as elective options as even {crypt} requires special attention to implement on most platforms (due to OpenSSL issues). --- configure | 8 ++++---- configure.in | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure b/configure index aa3ee5d897..c61f905c08 100755 --- a/configure +++ b/configure @@ -67,13 +67,13 @@ ac_help="$ac_help ac_help="$ac_help --enable-cleartext enable cleartext passwords (yes)" ac_help="$ac_help - --enable-crypt enable crypt(3) passwords (auto)" + --enable-crypt enable crypt(3) passwords (no)" ac_help="$ac_help --enable-dynamic enable linking built binaries with dynamic libs (no)" ac_help="$ac_help --enable-kpasswd enable Kerberos password verification (no)" ac_help="$ac_help - --enable-lmpasswd enable LAN Manager passwords (auto)" + --enable-lmpasswd enable LAN Manager passwords (no)" ac_help="$ac_help --enable-spasswd enable (Cyrus) SASL password verification (no)" ac_help="$ac_help @@ -1612,7 +1612,7 @@ if test "${enable_crypt+set}" = set; then ol_enable_crypt="$ol_arg" else - ol_enable_crypt="auto" + ol_enable_crypt="no" fi # end --enable-crypt # OpenLDAP --enable-dynamic @@ -1672,7 +1672,7 @@ if test "${enable_lmpasswd+set}" = set; then ol_enable_lmpasswd="$ol_arg" else - ol_enable_lmpasswd="auto" + ol_enable_lmpasswd="no" fi # end --enable-lmpasswd # OpenLDAP --enable-spasswd diff --git a/configure.in b/configure.in index f3e037e6d2..758a402b22 100644 --- a/configure.in +++ b/configure.in @@ -148,10 +148,10 @@ AC_ARG_WITH(xxslapdoptions,[SLAPD (Standalone LDAP Daemon) Options:]) OL_ARG_ENABLE(slapd,[ --enable-slapd enable building slapd], yes)dnl OL_ARG_ENABLE(aci,[ --enable-aci enable per-object ACIs], no)dnl OL_ARG_ENABLE(cleartext,[ --enable-cleartext enable cleartext passwords], yes)dnl -OL_ARG_ENABLE(crypt,[ --enable-crypt enable crypt(3) passwords], auto)dnl +OL_ARG_ENABLE(crypt,[ --enable-crypt enable crypt(3) passwords], no)dnl OL_ARG_ENABLE(dynamic,[ --enable-dynamic enable linking built binaries with dynamic libs], no)dnl OL_ARG_ENABLE(kpasswd,[ --enable-kpasswd enable Kerberos password verification], no)dnl -OL_ARG_ENABLE(lmpasswd,[ --enable-lmpasswd enable LAN Manager passwords], auto)dnl +OL_ARG_ENABLE(lmpasswd,[ --enable-lmpasswd enable LAN Manager passwords], no)dnl OL_ARG_ENABLE(spasswd,[ --enable-spasswd enable (Cyrus) SASL password verification], no)dnl OL_ARG_ENABLE(modules,[ --enable-modules enable dynamic module support], no)dnl dnl OL_ARG_ENABLE(multimaster,[ --enable-multimaster enable multimaster replication], no)dnl -- 2.39.5