trawick 2003/12/22 15:02:33
Modified: . CHANGES
build apu-hints.m4
Log:
Fix xlate.c compile failure on AIX 5.2.
AIX 5.2 has the more modern declaration of iconv(), where the
input buffer is no longer const.
APR_TRY_COMPILE_NO_WARNING doesn't work with native AIX compiler
yet, so for now we still need to hard-code this.
PR: 25701
Revision Changes Path
1.123 +8 -4 apr-util/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr-util/CHANGES,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- CHANGES 10 Dec 2003 18:20:21 -0000 1.122
+++ CHANGES 22 Dec 2003 23:02:32 -0000 1.123
@@ -3,10 +3,6 @@
*) Add timeout feature to apr_reslist_acquire().
[Mladen Turk <mturk apache.org>]
- *) Fixed a bug in apr_rmm that would cause it to mishandle blocks of
- a size close to the one requested from the allocator.
- [Kevin Wang <xwang_tech yahoo.com>]
-
*) Add SHA1 support to apr_password_validate.
[Paul Querna <chip force-elite.com>]
@@ -18,6 +14,14 @@
*) The following header files have been removed:
apu_compat.h
+
+Changes with APR-util 0.9.5
+
+ *) Fix xlate.c compile failure on AIX 5.2. PR 25701. [Jeff Trawick]
+
+ *) Fixed a bug in apr_rmm that would cause it to mishandle blocks of
+ a size close to the one requested from the allocator.
+ [Kevin Wang <xwang_tech yahoo.com>]
Changes with APR-util 0.9.4
1.4 +1 -1 apr-util/build/apu-hints.m4
Index: apu-hints.m4
===================================================================
RCS file: /home/cvs/apr-util/build/apu-hints.m4,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- apu-hints.m4 28 May 2003 04:45:46 -0000 1.3
+++ apu-hints.m4 22 Dec 2003 23:02:33 -0000 1.4
@@ -24,7 +24,7 @@
*-hp-hpux11.*)
APR_SETIFNULL(apu_crypt_threadsafe, [1])
;;
- *-ibm-aix*)
+ *-ibm-aix4*|*-ibm-aix5.1*)
APR_SETIFNULL(apu_iconv_inbuf_const, [1])
;;
*-ibm-os390)