Skip to content
Snippets Groups Projects
Commit d0848dd5 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

initiate 2.3.21 release engineering

import MP configure fix
parent deedb3aa
No related branches found
No related tags found
No related merge requests found
OpenLDAP 2.3 Change Log OpenLDAP 2.3 Change Log
OpenLDAP 2.3.21 Engineering
Build Environment
Fixed multi-precision sizeof detection
OpenLDAP 2.3.20 Release OpenLDAP 2.3.20 Release
Added libldap SASL workaround for broken LDAP servers (ITS#4391) Added libldap SASL workaround for broken LDAP servers (ITS#4391)
Fixed libldap/slapd valuesReturnFilter OID (ITS#4404) Fixed libldap/slapd valuesReturnFilter OID (ITS#4404)
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
ol_package=OpenLDAP ol_package=OpenLDAP
ol_major=2 ol_major=2
ol_minor=3 ol_minor=3
ol_patch=20 ol_patch=X
ol_api_inc=20320 ol_api_inc=20320
ol_api_current=2 ol_api_current=2
ol_api_revision=8 ol_api_revision=8
......
...@@ -2412,7 +2412,7 @@ AC_DEFINE(LBER_TAG_T,long,[define to large integer type]) ...@@ -2412,7 +2412,7 @@ AC_DEFINE(LBER_TAG_T,long,[define to large integer type])
dnl ---------------------------------------------------------------- dnl ----------------------------------------------------------------
dnl Check for multiple precision support dnl Check for multiple precision support
if test $ol_with_mp = longlong || test $ol_with_mp = auto ; then if test $ol_with_mp = longlong || test $ol_with_mp = auto ; then
if test $ac_cv_sizeof_long_long > 4 ; then if test $ac_cv_sizeof_long_long -gt 4 ; then
ol_with_mp=longlong ol_with_mp=longlong
AC_DEFINE(USE_MP_LONG_LONG,1,[define to use 'long long' for MP]) AC_DEFINE(USE_MP_LONG_LONG,1,[define to use 'long long' for MP])
elif test $ol_with_mp = longlong ; then elif test $ol_with_mp = longlong ; then
...@@ -2420,7 +2420,7 @@ if test $ol_with_mp = longlong || test $ol_with_mp = auto ; then ...@@ -2420,7 +2420,7 @@ if test $ol_with_mp = longlong || test $ol_with_mp = auto ; then
fi fi
fi fi
if test $ol_with_mp = long || test $ol_with_mp = auto ; then if test $ol_with_mp = long || test $ol_with_mp = auto ; then
if test $ac_cv_sizeof_long > 4 ; then if test $ac_cv_sizeof_long -gt 4 ; then
ol_with_mp=long ol_with_mp=long
AC_DEFINE(USE_MP_LONG,1,[define to use 'long' for MP]) AC_DEFINE(USE_MP_LONG,1,[define to use 'long' for MP])
elif test $ol_with_mp = long ; then elif test $ol_with_mp = long ; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment