[Pkg-openldap-devel] r635 - in openldap/trunk-2.3/debian: . patches
Matthijs Mohlmann
active2-guest at costa.debian.org
Sun Mar 12 18:20:29 UTC 2006
Author: active2-guest
Date: 2006-03-12 18:20:28 +0000 (Sun, 12 Mar 2006)
New Revision: 635
Added:
openldap/trunk-2.3/debian/patches/configure.in-fix
Modified:
openldap/trunk-2.3/debian/changelog
openldap/trunk-2.3/debian/patches/series
Log:
* Make a bash comparison instead of C.
Modified: openldap/trunk-2.3/debian/changelog
===================================================================
--- openldap/trunk-2.3/debian/changelog 2006-03-06 20:17:46 UTC (rev 634)
+++ openldap/trunk-2.3/debian/changelog 2006-03-12 18:20:28 UTC (rev 635)
@@ -40,12 +40,13 @@
* For new installations do not install a DB_CONFIG file but use the
slapd.conf as file for BDB/HDB configuration parameters. See: slapd-bdb(5)
* Added various "exit 0" to the installation scripts.
+ * Add configure.in patch to fix C comparison what should be bash (ITS#4416)
[ Steve Langasek ]
* debian/slapd.templates: Fix typo durin -> during; re-run
debconf-updatepo, fixing up the fuzzies (closes: #319596).
- -- Matthijs Mohlmann <matthijs at cacholong.nl> Wed, 1 Mar 2006 00:33:24 +0100
+ -- Matthijs Mohlmann <matthijs at cacholong.nl> Mon, 6 Mar 2006 21:24:50 +0100
openldap2.2 (2.2.26-4) unstable; urgency=low
Added: openldap/trunk-2.3/debian/patches/configure.in-fix
===================================================================
--- openldap/trunk-2.3/debian/patches/configure.in-fix 2006-03-06 20:17:46 UTC (rev 634)
+++ openldap/trunk-2.3/debian/patches/configure.in-fix 2006-03-12 18:20:28 UTC (rev 635)
@@ -0,0 +1,22 @@
+Index: configure.in
+===================================================================
+--- configure.in.orig
++++ configure.in
+@@ -2413,7 +2413,7 @@
+ dnl ----------------------------------------------------------------
+ dnl Check for multiple precision support
+ 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
+ AC_DEFINE(USE_MP_LONG_LONG,1,[define to use 'long long' for MP])
+ elif test $ol_with_mp = longlong ; then
+@@ -2421,7 +2421,7 @@
+ fi
+ fi
+ 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
+ AC_DEFINE(USE_MP_LONG,1,[define to use 'long' for MP])
+ elif test $ol_with_mp = long ; then
Modified: openldap/trunk-2.3/debian/patches/series
===================================================================
--- openldap/trunk-2.3/debian/patches/series 2006-03-06 20:17:46 UTC (rev 634)
+++ openldap/trunk-2.3/debian/patches/series 2006-03-12 18:20:28 UTC (rev 635)
@@ -6,3 +6,4 @@
libldap-makefile_in
add-autogen-sh
fixmanpages -p0
+configure.in-fix -p0
More information about the Pkg-openldap-devel
mailing list