trawick 2003/05/09 03:59:20
Modified: . CHANGES
build apu-conf.m4
Log:
Fix a problem with LDAP configuration which caused subsequent
configure tests to fail since LIBS contained LDAP libraries for
subsequent tests but LDFLAGS no longer included the path to such
LDAP libraries.
Revision Changes Path
1.112 +5 -0 apr-util/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr-util/CHANGES,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- CHANGES 9 May 2003 10:55:00 -0000 1.111
+++ CHANGES 9 May 2003 10:59:20 -0000 1.112
@@ -1,5 +1,10 @@
Changes with APR-util 0.9.4
+ *) Fix a problem with LDAP configuration which caused subsequent
+ configure tests to fail since LIBS contained LDAP libraries for
+ subsequent tests but LDFLAGS no longer included the path to such
+ LDAP libraries. [Jeff Trawick]
+
*) Fix a problem preventing the use of the bundled Expat when APR-util
is built stand-alone. [Jeff Trawick]
1.55 +2 -0 apr-util/build/apu-conf.m4
Index: apu-conf.m4
===================================================================
RCS file: /home/cvs/apr-util/build/apu-conf.m4,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- apu-conf.m4 9 May 2003 10:55:01 -0000 1.54
+++ apu-conf.m4 9 May 2003 10:59:20 -0000 1.55
@@ -702,6 +702,7 @@
[
save_cppflags="$CPPFLAGS"
save_ldflags="$LDFLAGS"
+ save_libs="$LIBS"
if test -n "$with_ldap_include"; then
CPPFLAGS="$CPPFLAGS -I$with_ldap_include"
APR_ADDTO(APRUTIL_INCLUDES, [-I$with_ldap_include])
@@ -739,6 +740,7 @@
CPPFLAGS=$save_cppflags
LDFLAGS=$save_ldflags
+ LIBS=$save_libs
])
AC_SUBST(ldap_h)