]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Ready for release
authorKurt Zeilenga <kurt@openldap.org>
Sat, 15 Feb 2003 20:17:22 +0000 (20:17 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 15 Feb 2003 20:17:22 +0000 (20:17 +0000)
CHANGES
build/version.sh
configure
configure.in

diff --git a/CHANGES b/CHANGES
index b43610afc46f7b83a128790cdf96104873ca6468..3c491a7e0608db996e61a103b93060597a4b8bd4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,6 @@
 OpenLDAP 2.1 Change Log
 
-OpenLDAP 2.1.13 Engineering
+OpenLDAP 2.1.13 Release
        Fixed back-bdb group ACL deadlock bug (ITS#2195)
        Fixed back-bdb passwd hang bug (ITS#2122)
        Fixed slapd RDN handling (ITS#2243)
@@ -19,7 +19,7 @@ OpenLDAP 2.1.13 Engineering
        Updated back-ldap, back-meta, back-sql
        Added slapd ACL caching
        Added slapd attribute options enhancement
-       Added slapd ldapi// SASL EXTERNAL support
+       Added slapd ldapi:// SASL EXTERNAL support
        Added liblutil passwd sanity checks (ITS#2159)
        Build Environment
                Check back-bdb requirement for BDB 4.1
index b3cbad91068806e5d3ba11aab70ec805fdb2d6b8..c83baa8c7f7c3901161c29e66d115d7e29dc88e3 100755 (executable)
@@ -7,10 +7,10 @@
 ol_package=OpenLDAP
 ol_major=2
 ol_minor=1
-ol_patch=X
-ol_api_inc=20111
-ol_api_lib=2:111:0
-ol_release_date="00/00/0000"
+ol_patch=13
+ol_api_inc=20113
+ol_api_lib=2:113:0
+ol_release_date="02-16-2003"
 
 if test $ol_patch != X ; then
        ol_version=${ol_major}.${ol_minor}.${ol_patch}
index 3b73c6456e6b7103a0fdf4b84289458603003353..200b94d61c05f91a87c8e6d21ac895c562fa0b8f 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # $OpenLDAP$
-# from OpenLDAP 
+# from OpenLDAP: pkg/ldap/configure.in,v 1.408.2.30 2003/02/10 19:24:24 kurt Exp  
 
 # Copyright 1998-2003 The OpenLDAP Foundation.  All Rights Reserved.
 # 
@@ -29,10 +29,10 @@ ac_help="$ac_help
   --with-subdir=DIR       change default subdirectory used for installs"
 ac_help="$ac_help
   --enable-debug         enable debugging [yes]"
-ac_help="$ac_help
-    --enable-dynamic     enable linking built binaries with dynamic libs [no]"
 ac_help="$ac_help
   --enable-syslog        enable syslog support [auto]"
+ac_help="$ac_help
+  --enable-dynamic       enable linking built binaries with dynamic libs [no]"
 ac_help="$ac_help
   --enable-proctitle     enable proctitle support [yes]"
 ac_help="$ac_help
@@ -1408,10 +1408,10 @@ else
        ol_enable_debug="yes"
 fi
 # end --enable-debug
-# OpenLDAP --enable-dynamic
-       # Check whether --enable-dynamic or --disable-dynamic was given.
-if test "${enable_dynamic+set}" = set; then
-  enableval="$enable_dynamic"
+# OpenLDAP --enable-syslog
+       # Check whether --enable-syslog or --disable-syslog was given.
+if test "${enable_syslog+set}" = set; then
+  enableval="$enable_syslog"
   
        ol_arg=invalid
        for ol_val in auto yes no ; do
@@ -1420,18 +1420,18 @@ if test "${enable_dynamic+set}" = set; then
                fi
        done
        if test "$ol_arg" = "invalid" ; then
-               { echo "configure: error: bad value $enableval for --enable-dynamic" 1>&2; exit 1; }
+               { echo "configure: error: bad value $enableval for --enable-syslog" 1>&2; exit 1; }
        fi
-       ol_enable_dynamic="$ol_arg"
+       ol_enable_syslog="$ol_arg"
 
 else
-       ol_enable_dynamic="no"
+       ol_enable_syslog="auto"
 fi
-# end --enable-dynamic
-# OpenLDAP --enable-syslog
-       # Check whether --enable-syslog or --disable-syslog was given.
-if test "${enable_syslog+set}" = set; then
-  enableval="$enable_syslog"
+# end --enable-syslog
+# OpenLDAP --enable-dynamic
+       # Check whether --enable-dynamic or --disable-dynamic was given.
+if test "${enable_dynamic+set}" = set; then
+  enableval="$enable_dynamic"
   
        ol_arg=invalid
        for ol_val in auto yes no ; do
@@ -1440,14 +1440,14 @@ if test "${enable_syslog+set}" = set; then
                fi
        done
        if test "$ol_arg" = "invalid" ; then
-               { echo "configure: error: bad value $enableval for --enable-syslog" 1>&2; exit 1; }
+               { echo "configure: error: bad value $enableval for --enable-dynamic" 1>&2; exit 1; }
        fi
-       ol_enable_syslog="$ol_arg"
+       ol_enable_dynamic="$ol_arg"
 
 else
-       ol_enable_syslog="auto"
+       ol_enable_dynamic="no"
 fi
-# end --enable-syslog
+# end --enable-dynamic
 # OpenLDAP --enable-proctitle
        # Check whether --enable-proctitle or --disable-proctitle was given.
 if test "${enable_proctitle+set}" = set; then
index 5bf194b9e5e784a0294c5590d2f1d285b84aa15e..c77e211cb7608f7887ea681dc2cd441505068ae3 100644 (file)
@@ -131,8 +131,8 @@ AC_SUBST(ldap_subdir)dnl
 dnl ----------------------------------------------------------------
 dnl General "enable" options
 OL_ARG_ENABLE(debug,[  --enable-debug    enable debugging], yes)dnl
-OL_ARG_ENABLE(dynamic,[    --enable-dynamic      enable linking built binaries with dynamic libs], no)dnl
 OL_ARG_ENABLE(syslog,[  --enable-syslog          enable syslog support], auto)dnl
+OL_ARG_ENABLE(dynamic,[  --enable-dynamic        enable linking built binaries with dynamic libs], no)dnl
 OL_ARG_ENABLE(proctitle,[  --enable-proctitle    enable proctitle support], yes)dnl
 dnl OL_ARG_ENABLE(referrals,[  --enable-referrals        enable LDAPv2+ Referrals (experimental)], no)dnl
 ol_enable_referrals=${ol_enable_referrals-no}