OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 23-Apr-2004 13:33:41
Branch: HEAD Handle: 2004042312334100
Modified files:
openpkg-src/openldap openldap.spec
Log:
This provides an option for enabling Unix crypt(3) password handling in
OpenLDAP's slapd(8).
When migrating from traditional user authentication to OpenLDAP one
mostly have an user database using crypt(3)'ed passwords. Using this
data to populate an OpenLDAP server requires crypt(3) handling, which
is disabled by default. For the sake of simplicity and convinience (and
it doesn't harm because OpenLDAP used Autoconf to check for -lcrypt and
uses the stuff only for its daemon part), the option is defaulted to
yes.
Submitted by: Birger Kraegelin <[EMAIL PROTECTED]>
Summary:
Revision Changes Path
1.108 +8 -4 openpkg-src/openldap/openldap.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/openldap/openldap.spec
============================================================================
$ cvs diff -u -r1.107 -r1.108 openldap.spec
--- openpkg-src/openldap/openldap.spec 22 Apr 2004 07:25:35 -0000 1.107
+++ openpkg-src/openldap/openldap.spec 23 Apr 2004 11:33:41 -0000 1.108
@@ -34,12 +34,13 @@
Group: Database
License: GPL
Version: 2.2.11
-Release: 20040422
+Release: 20040423
# package options
-%option with_fsl yes
-%option with_sasl no
-%option with_perl no
+%option with_fsl yes
+%option with_crypt yes
+%option with_sasl no
+%option with_perl no
# list of sources
Source0:
ftp://ftp.openldap.org/pub/openldap/openldap-release/openldap-%{version}.tgz
@@ -119,6 +120,9 @@
%else
--without-cyrus-sasl \
--disable-spasswd \
+%endif
+%if "%{with_crypt}" == "yes"
+ --enable-crypt \
%endif
--disable-dynamic \
--disable-shared \
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]