Make sure macro int_errorcode is last declaration
[apr-util.git] / CHANGES
blobcd690c5940786c1c944a08012cdd4f2161de6819
1                                                      -*- coding: utf-8 -*-
2 Changes with APR-util 1.3.0
3   
4   *) Introduce apr_dbd_open_ex() [Bojan Smojver]
6   *) Make md5 hash files portable between EBCDIC and ASCII platforms  
7      [David Jones]
9   *) Add limited apr_dbd_freetds driver (MSSQL and Sybase) [Nick Kew]
11   *) Commit relicensed apr_dbd_mysql driver to /trunk/  [Nick Kew]
13   *) Support BerkeleyDB 4.6.  [Arfrever Frehtes Taifersar Arahesis]
15   *) Support Tivoli ITDS LDAP client library.  [Paul Reder]
17   *) Portably implement testdate's long-time constants to solve
18      compilation faults where #LL isn't valid.  [Curt Arnold]
20   *) Use buffered I/O with SDBM.  [Joe Schaefer]
22   *) Unify parsing of prepared statements and add binary argument functions
23      to DBD [Bojan Smojver with help from many on the APR list]
25   *) Support building DBD drivers as DSOs; use --enable-dbd-dso flag
26      to configure.  [Joe Orton, Bojan Smojver]
28   *) Rewrite detection of expat in configure to fix build on e.g. biarch
29      Linux platforms.  PR 28205.  [Joe Orton]
31   *) Add apr_thread_pool implementation.  [Henry Jen <henryjen ztune.net>]
33   *) Add support for Berkeley DB 4.5 to the configure scripts.
34      [Garrett Rooney]
36   *) Allow apr_queue.h to be included before other APR headers.
37      PR 40891 [Henry Jen <henryjen ztune.net>]
39   *) Fix precedence problem in error checking for sdbm dbm back end.
40      PR 40659 [Larry Cipriani <lvc lucent.com>]
42   *) Add an apr_reslist_acquired_count, for determining how many outstanding
43      resources there are in a reslist.  [Ryan Phillips <ryan trolocsis.com>]
45   *) Provide folding in autogenerated .manifest files for Win32 builders
46      using VisualStudio 2005  [William Rowe]
48   *) Implement DBD transaction modes
49      [Bojan Smojver with help from many on the APR list]
51   *) Implement prepared statement support in SQLite3 DBD driver
52      [Bojan Smojver]
54   *) Add get (column) name to apr_dbd API
55      [Bojan Smojver <bojan rexursive.com>] and
56      [Chris Darroch <chrisd pearsoncmg com>]
58   *) Make the DBD autoconf-glue use LDFLAGS instead of LIBS in several
59      places, fixing some configure issues on Solaris.
60      [Henry Jen <henryjen ztune.net>]
62   *) Make apr_dbd.h work as a stand alone header, without needing other
63      files to be included before it. [Henry Jen <henryjen ztune.net>]
65   *) On platforms that use autoconf stop automatically linking against
66      apr-iconv when an apr-iconv source dir is found in ../apr-iconv.
67      Instead, add a --with-apr-iconv option to configure that lets you
68      specify the relative path to your apr-iconv source directory.
69      [Garrett Rooney]
71   *) APR_FIND_APU macro now supports customisable detailed checks on
72      each installed apr-util. [Justin Erenkrantz, Colm MacCárthaigh]
74   *) APR_FIND_APU macro no longer checks /usr/local/apache2/
75      [Colm MacCárthaigh]
77   *) Add apr_dbd_oracle driver [Nick Kew and Chris Darroch]
79   *) Fix GMT offset for several date formats and add a new format.
80      [Maxime Petazzoni <maxime.petazzoni bulix.org>]
82 Changes with APR-util 1.2.8
84   *) Fix incorrect byte order (PR 37342) and incorrect timestamp type
85      in the fallback UUID generator used when no external UUID generator
86      is detected by APR.
87      [Max Bowsher]
89 Changes with APR-util 1.2.7
91   *) Fix apr_dbd_init to be safe to call multiple times
92      [Bojan Smojver <bojan rexursive com>, Nick Kew]
94   *) Win32 / Netware - add missing apu_version.c for apu_version_string()
95      to the Windows and Netware specific builds.  Unix platforms supported
96      this API since 0.9.1.  [William Rowe, Brad Nicholes].
98 Changes with APR-util 1.2.6
100   *) Stop trying to link against Berkeley DB by default.  To enable use
101      of Berkeley DB users must now explicitly pass --with-berkeley-db to
102      configure, since Berkeley DB is released under a viral license that
103      requires distribution of source code for any program that uses it.
104      [Garrett Rooney]
106   *) Stop trying to link against GDBM by default.  To enable use of GDBM
107      users must now explicitly pass --with-gdbm to configure, since GDBM
108      is licensed under the GPL.
109      [Garrett Rooney]
111   *) Fix VPATH builds, and symlink builds where apr and apr-util
112      reside in parallel as symlinks to directories with more explicit
113      names, e.g. apr-1.x and apr-util-1.x.  This solves various breakage
114      on Solaris in particular with ./buildconf and ./configure.  Also
115      eliminated the nested ../apr-iconv/buildconf, given that apr-util
116      didn't bother with ../apr/buildconf, and this was inconsistant.
117      [William Rowe]
119   *) Fix the escape implementations for the sqlite2 and sqlite3 dbd
120      back ends.
121      [Ronen Mizrahi <ronen tversity.com>, Garrett Rooney]
123   *) Add support for Berkeley DB 4.4 to the configure scripts.
124      [Garrett Rooney]
126   *) Fix bug in test suite that cause testbuckets to write 8GB file
127      on Mac OS X.  [Justin Erenkrantz]
129 Changes with APR-util 1.2.2
131   *) Teach configure how to find the Novell LDAP SDK. [Graham Leggett]
133   *) Fix usage of ldapssl_init/ldap_sslinit on platforms that support
134      these API's including Win32.  Support APR_HAS_LDAP_START_TLS_S
135      flag in the Win32 LDAP API, to drop usage of ldap_start_ssl_s
136      and ldap_stop_ssl_s on Win32 by default (change the flag in apr_ldap.hw
137      to enable if supported on a given OS level). [William Rowe]
139 Changes with APR-util 1.2.1
141   *) Fix apr_rmm_realloc() offset calculation bug.  [Keith Kelleman
142      <keith.kelleman oracle.com>]
144   *) Add sqlite3 support to APR DBD. [Rick Keiner <rick_keiner yahoo.com>]
146   *) Fix build failure with non-threaded APR on AIX.  PR 34655.
147      [Ryan Murray <rmurray+apache cyberhqz.com>]
149   *) Add sqlite2 support to APR DBD. [Ryan Phillips <ryan trolocsis.com>]
151   *) Introduction of APR DBD layer.  [Nick Kew]
153 Changes with APR-util 1.1.2
155   *) Fix libaprutil.rc for Win32 builds [William Rowe, Justin Erenkrantz]
157 Changes with APR-util 1.1.1
159   *) Fix memory leak in buckets when using APR_POOL_DEBUG mode. [Joe Schaefer]
161   *) find_apu.m4: Try installed APR-util before bundled copy if --with-apr-util
162      not passed to configure.  [Justin Erenkrantz] 
164 Changes with APR-util 1.1.0
166   *) LDAP: Move all certificate initialisation, and the creation of SSL
167      and TLS connections into the apr_ldap_set_option() API. Add support
168      for client certificates. [Graham Leggett]
170   *) Emit the run-time link path option in apu-config after installation
171      if the user is linking with libtool.  [Justin Erenkrantz]
173   *) Port testmd4 and testmd5 to the new test suite. [Thom May]
175   *) Allow passing NULL inbuf/inbytes_left parameters to
176      apr_xlate_conv_buffer(), required to correctly terminate the
177      output buffer for some stateful character set encodings.
178      [Joe Orton]
180   *) Link libaprutil against the libraries on which it depends.
181      PR 11122.  [Joe Orton]
183   *) Add apr_brigade_insert_file() function, to safely insert a file
184      into a brigade, regardless of size.  [Joe Orton]
186 Changes with APR-util 1.0.2
188   *) Teach apr_ldap_init() how to handle STARTTLS in addition to the existing
189      SSL support. Add apr_ldap_option API. [Graham Leggett]
191   *) Rework the LDAP toolkit detection to be more accurate than "OpenLDAP
192      detected regardless", while remaining backwards compatible with v1.0.
193      [Graham Leggett]
195   *) Added the apr_ldap_ssl_add_cert() API to allow multiple certificates
196      to be stored and used when establishing an SSL connection to different
197      LDAP servers. [Brad Nicholes]
199   *) Fix the detection of ldap.h on Solaris - it needs lber.h to be
200      defined first. [Graham Leggett]
202   *) Add a build script to create a solaris package. [Graham Leggett]
204 Changes with APR-util 1.0.1
206   *) Add support for Berkeley DB 4.3.  [Jani Averbach <jaa jaa.iki.fi>]
208   *) SECURITY: CAN-2004-0786 (cve.mitre.org)
209      Fix input validation in apr_uri_parse() to avoid passing negative
210      length to memcpy for malformed IPv6 literal addresses.
211      [Joe Orton]
213 Changes with APR-util 1.0
215   *) Only install apu-$MAJOR-config and add appropriate detection code to
216      find_apu.m4 (APU_FIND_APU).  [Max Bowsher <maxb ukf.net>]
218   *) Overhaul support for LDAP URL parsing. Instead of using incompatible
219      URL parsers and memory that needs freeing, apr-util provides a parser
220      which parses the URL and allocates memory from a pool. [Graham Leggett]
222   *) Remove support for LDAP v2.0 SDK toolkits. This will be added
223      back properly later assuming there is demand for it. In the mean
224      time, please use an LDAP v3.0 SDK toolkit. [Graham Leggett]
226   *) Add an apr_ldap_err_t structure to handle the return of LDAP
227      specific error codes. [Graham Leggett, Brad Nicholes]
229   *) Add APR functions to do the job of ldap_init(), hiding toolkit
230      specific SSL/TLS handling. Code derived from httpd util_ldap.
231      [Graham Leggett]
233   *) Add an RPM spec file derived from Fedora Core.
234      [Graham Leggett, Joe Orton]
236   *) The whole codebase was relicensed and is now available under
237      the Apache License, Version 2.0 (http://www.apache.org/licenses).
238      [Apache Software Foundation]
240   *) A new function, apr_reslist_invalidate, was added so that invalid
241      resources can be removed from a reslist instead of being returned
242      to the reslist in a broken state.  [Nick Kew <nick webthing.com>]
244   *) Switch to a single, top-level make. [Greg Stein]
246   *) Add timeout feature to apr_reslist_acquire().  
247      [Mladen Turk <mturk apache.org>]
249   *) Pass error codes returned from constructors all the way back to
250      the reslist consumer. Also fix a minor reslist memory leak that could
251      happen when a constructor returns an error code.  PR 23492.
252      [Snke Tesch <st@kino-fahrplan.de>, Aaron Bannert]
254   *) The following header files have been removed:
256      apu_compat.h
258 Changes with APR-util 0.9.5
260   *) Fix corrupt output from the apr_xlate_* interfaces on AIX 4.x.
261      [Joe Orton]
263   *) Change the order in which ldap.h and lber.h are defined, to fix
264      a compile bug in Solaris v2.8 which requires lber.h then ldap.h.
265      PR 27379.  [Andrew Connors <andy.connors idea.com>]
267   *) Restore support for SHA1 passwords in apr_validate_password.
268      PR 17343.  [Paul Querna <chip force-elite.com>]
270   *) Fix DESTDIR install for bundled expat library.  PR 14076
271      [David S. Madole <david madole.net>]
273   *) Fix occasional crash in apr_rmm_realloc().  PR 22915.
274      [Jay Shrauner <shrauner inktomi.com>]
276   *) Fix apr_dbm_exists() for sdbm when sizeof(int) != sizeof(size_t). 
277      [Joe Orton]
279   *) The whole codebase was relicensed and is now available under
280      the Apache License, Version 2.0 (http://www.apache.org/licenses).
281      [Apache Software Foundation]
283   *) Fix xlate.c compile failure on AIX 5.2.  PR 25701.  [Jeff Trawick]
285   *) Fixed a bug in apr_rmm that would cause it to mishandle blocks of
286      a size close to the one requested from the allocator.
287      [Kevin Wang <xwang_tech yahoo.com>]
289 Changes with APR-util 0.9.4
291   *) Changed apr_bucket_alloc_create() so that it uses the allocator
292      from the pool that was passed in rather than creating its own.
293      Also, the bucket_allocator is now allocated from the apr_allocator_t
294      rather than using apr_palloc().  Added apr_bucket_alloc_create_ex()
295      which takes an apr_allocator_t* directly rather than an apr_pool_t*.
296      [Cliff Woolley, Jean-Jacques Clar]
298   *) Added debugging consistency checks to the buckets code.  Add
299      -DAPR_BUCKET_DEBUG to the build flags to enable.
300      [Cliff Woolley]
302   *) Make the version of the db library APU built against visible.
303      [Thom May]
305   *) Fix a problem with VPATH builds copying the APR rules.mk into the
306      source directory rather than the build directory.  [Justin Erenkrantz]
308   *) SECURITY [httpd incident CAN-2003-0189] Address a thread safety
309      issue with apr_password_validate() on AIX, Linux, Mac OS X, and
310      possibly other platforms.  [Jeff Trawick, Justin Erenkrantz]
312   *) Fix a problem with LDAP configuration which caused subsequent
313      configure tests to fail since LIBS contained LDAP libraries for
314      subsequent tests but LDFLAGS no longer included the path to such 
315      LDAP libraries.  [Jeff Trawick]
317   *) Fix a problem preventing the use of the bundled Expat when APR-util
318      is built stand-alone.  [Jeff Trawick]
320   *) Use the same compiler and preprocessor for the APR-util config tests
321      which were used by APR.  The user can override this via CC and CPP.
322      This was done all along for the actual build, but not necessarily
323      for the config tests.  [Jeff Trawick]
325   *) Fix apr_uuid_parse() on EBCDIC machines.  [Jeff Trawick]
327   *) Fix alignment problem when allocating memory using apr_rmm. The problem
328      showed up while trying to write a double in the memory allocated.
329      [Madhusudan Mathihalli]
331 Changes with APR-util 0.9.3
333   *) Allow apr_date_parse_rfc to parse 'Sun, 06-Nov-1994 08:49:37 GMT' as a
334      valid date.  [Dmitri Tikhonov <dmitri@netilla.com>]
336   *) Fix error in apu-config when symlinks are involved.
337      [Garrett Rooney <rooneg@electricjellyfish.net>]
339 Changes with APR-util 0.9.2
341   *) Fix the APR_BUCKET_IS_foo() macros so they parenthesize their parameter.
342      This fixes compile problems with some types of parameters.
343      [Jim Carlson <jcarlson@jnous.com>]
345   *) Queue overwrite, we now return the item pushed, not a reference to it. 
346      [Paul Marquis <PMarquis@pobox.com, Jacob Lewallen <jlwalle@cs.ucr.edu>]
348   *) Remove include/apr_ldap.h on distclean.  PR 15592.  [Justin Erenkrantz]
350   *) Fix race conditions in apr_queue.
351      [Jacob Lewallen <jlwalle@cs.ucr.edu>]
353   *) Stop buildconf copying rules.mk, copy it at configure time. 
354      [Thom May]
356   *) Make buildconf copy rules.mk as well. 
357      [Garrett Rooney <rooneg@electricjellyfish.net>]
359   *) Add --includedir flag to apu-config.  [Justin Erenkrantz]
361   *) Fix brokenness in sdbm when sizeof(int) != sizeof(size_t)
362      (e.g., 64-bit AIX, 64-bit Solaris).  PR 14861.  [Jeff Trawick]
364   *) Have buildconf copy required files from apr so that apr-util can build
365      on its own.  [Craig Rodrigues <rodrigc@attbi.com>]
367   *) Detect OpenLDAP when used with Solaris 9. PR 13427.
368      [Gary Algier <gaa@ulticom.com>]
370   *) Detect Berkeley DB 4.1 when compiled with --with-uniquenames
371      [Thom May]
373   *) Allow apu-config to work in symlinked install directories when
374      'realpath' is available.  [Justin Erenkrantz]
376   *) Fix bug in apr_strmatch when used with case-insensitive patterns.
377      [Justin Erenkrantz]
379   *) Allow apr_queue to have greater than int number of elements.
380      [Justin Erenkrantz]
382   *) Detect Berkeley DB 4.0 compiled with --with-uniquenames.
383      [Philip Martin <philip@codematters.co.uk>]
385   *) Allocate brigades from a bucket allocator rather than a pool. [Brian Pane]
387   *) Update with the latest APR renames [Thom May]
389   *) Update doxygen tags.  [Justin Erenkrantz]
391   *) Add apr_ldap.hw for Windows build.
392      [Andre Schild <A.Schild@aarboard.ch>]
394   *) Add IPv6 literal address support to apr_uri_parse(), apr_uri_unparse(), 
395      and apr_uri_parse_hostinfo().  PR 11887  [Jeff Trawick]
397   *) Add apr_brigade_writev()  [Brian Pane]
399   *) Add support for Berkeley DB 4.1.  [Justin Erenkrantz]
401   *) Add --bindir option to apu-config.  [Justin Erenkrantz]
403 Changes with APR-util 0.9.1
405   *) Add versioning infrastructure.
406      [Justin Erenkrantz]
408   *) Running "make check" in the toplevel directory or the test/ directory
409      will build and run all test programs.  [Aaron Bannert]
411   *) Bug #9789 : NDBM support 
412      [Toomas Soome <tsoome@muhv.pri.ee>, Ian Holsman]
414   *) Added a Thread safe FIFO bounded buffer (apr_queue) [Ian Holsman]
416   *) Changed file_bucket_setaside() to use apr_file_setaside() instead
417      of turning the file bucket into an mmap bucket.  [Brian Pane]
419   *) Install libaprutil support libraries before installing libaprutil
420      itself, since on some platforms libaprutil is relinked during
421      make install and the support libraries need to exist already.
422      [Jeff Trawick]
424   *) Added a Resource List API for threadsafe access to persistent
425      and dynamically created user-defined resources.  [Aaron Bannert]
427   *) Adopted apr-util/xlate from apr/i18n for inclusion of apr-iconv
428      as required by missing libiconv.  [William Rowe]
430   *) Adopted apr-util/crypto/ uuid and md5 from apr.  [William Rowe]
432   *) Look for expat in lib64 directories.  [Peter Poeml <poeml@suse.de>]
434   *) Faster implementation of apr_brigade_puts()  [Brian Pane]
436   *) Fixed a segfault in apr_date_parse_rfc() for some date formats
437      where it was trying to overlay a potentially static input
438      string even though it didn't really need to.
439      [Cliff Woolley, Doug MacEachern]
441   *) Ensure that apu-config does not print libtool libraries when
442      using --libs.  [Justin Erenkrantz]
444   *) Added apr_bucket_file_enable_mmap() function to the bucket
445      API to let an application control whether a file bucket may
446      be turned into an mmap bucket upon read.  (The default remains
447      to do the mmap, but this function lets the app prevent the
448      mmap in contexts where mmap would be a bad idea.  Examples
449      include multiprocessors where mmap doesn't scale well and
450      NFS-mounted filesystems where a bus error can result if
451      a memory-mapped file is removed or truncated.) [Brian Pane]
453   *) Added string-matching API (apr_strmatch.h)  [Brian Pane]
455   *) Rearrange INCLUDES so that APRUTIL_PRIV_INCLUDES is always
456      first.  [Garrett Rooney <rooneg@electricjellyfish.net>]
458   *) Add --old-expat option to apu-config to allow users of apr-util to
459      determine what expat it should expect to be installed.  If the
460      flag is set to yes, it should include xmlparse.h.  If it is set to
461      no, it should include expat.h.  [Justin Erenkrantz]
463   *) Fix exporting of includes in apu-config.  [Justin Erenkrantz]
465   *) Change bucket brigades API to allow a "bucket allocator" to be
466      passed in at certain points.  This allows us to implement freelists
467      so that we can stop using malloc/free so frequently.
468      [Cliff Woolley, Brian Pane]
470   *) add apr_rmm_realloc() function
471      [Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>]
473   *) renames: apr_ansi_time_to_apr_time becomes apr_time_ansi_put
474      ap_exploded_time_t becomes apr_time_exp_t
475      [Thom May <thom@planetarytramp.net>]
477   *) Add detection support for FreeBSD's expat and expat2 ports.
478      [Justin Erenkrantz]
480   *) Deprecate check_brigade_flush(), which had several nasty bugs, and
481      which was causing apr_brigade_write()'s logic to be less than obvious.
482      Everything is now done in a slightly rearranged apr_brigade_write().
483      [Cliff Woolley]
485   *) Don't add /usr/include to the INCLUDES variable on expat's account.
486      [Joe Orton <joe@manyfish.co.uk>]
488   *) Remove the autoconf 2.5x cache directory in buildconf.
489      [Joe Orton <joe@manyfish.co.uk>]
491   *) BerkleyDB should NULL out the key if it is @EOF in vt_db_nextkey
492      [Ian Holsman]
494   *) Add ability to natively fetch and split brigades based on LF lines.
495      [Justin Erenkrantz]
497   *) add --with-berkeley-db=DIR & --with-gdbm  configure flags
498      [Ian Holsman/Justin Erenkrantz]
500   *) Fix expat detection to recognize installed versions.
501      [Eric Gillespie, Jr. <epg@pretzelnet.org>]
503   *) Add find_apu.m4 to allow third-party programs that use APR-util
504      to have a standard m4 macro for detection.  [Justin Erenkrantz]
506   *) Add apu-config - a shell script to allow third-party programs
507      easy access to APR configuration parameters.  [Justin Erenkrantz]
509   *) Add GMT offset calculation to apr_date_parse_rfc().  
510      [Justin Erenkrantz]
512   *) Introduce the apr_rmm api, to allow relocatable memory management
513      of address-independent data stores, such as shared memory.
514      [William Rowe]
516   *) Rework and fix VPATH-build support.  [Justin Erenkrantz]
518   *) Add support for Berkeley DB4.  [Justin Erenkrantz]
520   *) Improve testdbm help.  [Justin Erenkrantz]
522   *) Improve autoconf detection of DBMs.  [Justin Erenkrantz]
524   *) BerkeleyDBM v2 now checks minor level for cursor ops [Ian Holsman]
526   *) Reading a file bucket bigger than APR_MMAP_LIMIT (4MB) now yields
527      a string of 4MB mmap buckets, rather than a string of 8KB heap buckets
528      plus a 4MB mmap bucket.  To accomodate this, the mmap bucket destroy
529      function explicitly deletes the apr_mmap_t after last reference
530      to avoid having too much of a large file mapped at once if possible.
531      [Cliff Woolley]
533   *) Multi-DBM support (via apr_dbm_open_ex).  [Ian Holsman]
535   *) Use apr_mmap_dup in mmap_setaside().  [Brian Pane <bpane@pacbell.net>]
537   *) Dropped the "w" parameter from apr_bucket_heap_create() and
538      apr_bucket_heap_make().  That parameter was originally intended
539      to return the amount of data copied into the bucket, but it
540      ended up being unnecessary because that amount is invariant from
541      the size of the data and is available as b->length in the
542      resulting bucket anyway.  [Cliff Woolley]
544   *) Fix Makefile conversion for BSD/OS.  [Cliff Woolley]
546   *) Use APR_XtOffsetOf instead of offsetof() in the ring macros for
547      portability.  [Cliff Woolley]
549   *) We now create exports.c and export_vars.h, which in turn create
550      exports.c.  From this we generate two more files with different
551      purposes: aprutil.exp - list of exported symbols; and exports.lo
552      (exports.o) - an object file that can be linked with an executable
553      to force resolution of all apr-util symbols.   [Aaron Bannert]
555   *) Fix Berkley DBM support [Ian Holsman <ianh@apache.org>]
557   *) Fix apr_brigade_vprintf so that it can handle more than
558      4k of data at one time.  [Cody Sherr <csherr@covalent.net>]
560   *) prefix UNP_* flags with APR_URI_
562      rename:
563      apr_uri_components                  -> apr_uri_t
564      apr_uri_unparse_components          -> apr_uri_unparse
565      apr_uri_parse_components            -> apr_uri_parse
566      apr_uri_parse_hostinfo_components   -> apr_uri_parse_hostinfo
568      s/APU_URI_/APR_URI_/g
569      [Perl]
571   *) Landed the link-to-LDAP to the build process, and the LDAP v2/v3
572      compatibility functions.
573      [Dave Carrigan <dave@rudedog.org>, Graham Leggett]
575   *) Fix URI unparse function to handle the case where it would place a @
576      when both the username and password were present but omitted.
577      [Jon Travis <jtravis@covalent.net]
579   *) Added apr_xml_parse_file() routine and a testxml program.
580      [Ian Holsman <ianh@cnet.com>]
582   *) Extend apr_bucket struct to add a pointer to a function used
583      to free the bucket. This change enables custom buckets to
584      completely specify how they are to be allocated and freed.
585      Before this change, custom buckets were required to use the 
586      same memory allocation scheme as the standard APR buckets.
587      [Saeid Sakhitab, Bill Stoddard, Cliff Woolley, Roy Fielding]
589   *) Install Expat when installing APR-util.  [Justin Erenkrantz]
591   *) Make APR-util configure script rely on APR.  This removes the locally
592      generated copy of libtool and uses the one in APR.  Fix up how we
593      call the expat configure script.  Generate config.nice file.
594      [Justin Erenkrantz]
596   *) The apr_bucket lengths are now consistently apr_size_t, while any
597      apr_brigade lengths (short of a read) are consistently apr_off_t.
598      This is required for APR_HAS_LARGE_FILES handling.  [William Rowe]
600   *) apr_bucket_file_create() and apr_bucket_file_make() now take a pool
601      parameter which is the pool into which any needed data structures
602      should be created during file_read().  This is used for MMAPing the
603      file and reopening the file if the original apr_file_t is in XTHREAD
604      mode.  [Cliff Woolley]
606   *) apr_brigade_partition() now returns an apr_status_t. [Cliff Woolley]
608   *) Add MD4 implementation in crypto.  [Sander Striker, Justin Erenkrantz]
610   *) Moved httpd 2.0.18's util_date to apr_date and enhanced its parsing
611      capabilities.  [Justin Erenkrantz]
613   *) Moved httpd 2.0.18's util_uri to apr_uri and name-protected its
614      symbols and functions.  [Justin Erenkrantz, Roy Fielding]
616   *) Rename field "private" in struct apr_xml_elem to "priv" for C++
617      compatibility.  PR #7727  [Joshua MacDonald <jmacd@cs.berkeley.edu>]
619   *) Make APR_IMPLEMENT_EXTERNAL_HOOK_BASE generate a 
620      ${namespace}_hook_get_${hookname} function to fetch the
621      list of registered hooks [Doug MacEachern]
623   *) Allow LTFLAGS to be overridden by the configure command-line
624      (default="--silent") and introduce LT_LDFLAGS.  [Roy Fielding]
626   *) Add APR_SHARELOCK support to apr_sdbm_open(), locking read operations
627      with a shared lock and all write ops with an excl lock.  [Will Rowe]
629   *) Namespace protect apr_sdbm, and normalize the return values (including
630      the apr_sdbm_fetch, apr_sdbm_firstkey and apr_sdbm_nextkey functions).
631      Normalized the get/clear error function names, and stores the actual 
632      apr error for apr_sdbm_error_get. [Will Rowe]
634   *) Introduce an apr_fileperms_t argument to apr_dbm_open(). [Will Rowe]
636   *) Removed apr_bucket_do_create() macro, which was causing warnings
637      about unreachable code in some compilers (notably MSVC).  What
638      used to be done by this macro is now done inline in the various
639      apr_bucket_foo_create() functions.  [Cliff Woolley]
641   *) Make clean, distclean, and extraclean consistently according to the
642      Gnu makefile guidelines.  [Justin Erenkrantz <jerenkrantz@ebuilt.com>]
644   *) Migrate the --disable-libtool changes from APR to APR-util.
645      This cleans things up, and allows more flexibility when building
646      programs.  [Ryan Bloom]
648   *) Allow APR-util to be compiled without libtool.  The default is
649      to use libtool, but it can turned off with --disable-libtool
650      on the configure command.  [Ryan Bloom]
652   *) Repair calling convention for apr_register_optional_fn to
653      eliminate GP fault on Win32.  [William Rowe]
655   *) Substantial changes to correct linkage and declarations for
656      generic hooks on dso architectures.  [Ben Laurie, Will Rowe]
658   *) apr_bucket_shared_destroy() now returns a boolean value.
659      [Cliff Woolley]
661   *) We have to initialize the heap buckets to the correct length.
662      we were seeing heap buckets with 17 chars in them reporting
663      a length of 9017, because they were initialized to the amount
664      of memory allocated, instead of the amount of memory used.
665      This was only an issue for heap buckets created by the
666      apr_brigade_* functions.   [Ryan Bloom]
668   *) apr_bucket_init_types() and apr_bucket_insert_type() have been
669      removed... they're not needed anymore. [Cliff Woolley]
671   *) The apr_bucket_shared and apr_bucket_simple structures have been
672      removed as an API simplification/optimization.  This should be
673      transparent outside APR-util except to callers who attempt to
674      directly manipulate the buckets' internal structure (which is
675      not recommended anyway) and to callers who create their own
676      bucket types. [Cliff Woolley]
678   *) apr_bucket_simple_split() and apr_bucket_simple_copy() are now
679      exported functions, which could be helpful in implementing
680      external bucket types. [Cliff Woolley]
682   *) The third parameter to apr_bucket_shared_make() is now
683      'apr_off_t length' rather than 'apr_off_t end', since the
684      end usually had to be computed by the caller and all we
685      really want is the length anyway. [Cliff Woolley]