You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2006/04/10 12:42:42 UTC

svn commit: r392915 - /apr/apr/trunk/CHANGES

Author: jorton
Date: Mon Apr 10 03:42:34 2006
New Revision: 392915

URL: http://svn.apache.org/viewcvs?rev=392915&view=rev
Log:
Synch with 1.2.x branch.

Modified:
    apr/apr/trunk/CHANGES

Modified: apr/apr/trunk/CHANGES
URL: http://svn.apache.org/viewcvs/apr/apr/trunk/CHANGES?rev=392915&r1=392914&r2=392915&view=diff
==============================================================================
--- apr/apr/trunk/CHANGES (original)
+++ apr/apr/trunk/CHANGES Mon Apr 10 03:42:34 2006
@@ -3,10 +3,6 @@
   *) NetBSD: Avoid leaving zombie process when using apr_signal() 
      to ignore SIGCHLD.  PR 36750.  [Todd Vierling <tv pobox.com>]
 
-  *) Correct bug in kqueue backend for apr_pollset where we would
-     erroneously indicate that a socket was readable or writeable.
-     [Garrett Rooney]
-
   *) Implement support for apr_proc_mutex_trylock() on Unix platforms.
      PR 38785.  [Chris Darroch <chrisd pearsoncmg.com>]
 
@@ -16,10 +12,6 @@
   *) APR_FIND_APR macro no longer checks /usr/local/apache2/
      [Colm MacCarthaigh]
 
-  *) Only include uuid/uuid.h if we haven't already included uuid.h, since
-     doing so can result in type conflicts.
-     [Craig Rodrigues <rodrigc crodrigues.org>]
-
   *) Add APR_POLLSET_NOCOPY option to apr_pollset API to eliminate
      O(n)-time lookup in apr_pollset_remove() (currently implemented
      only for epoll).  [Brian Pane]
@@ -62,13 +54,30 @@
   *) Add APR_ARRAY_IDX() and APR_ARRAY_PUSH() convenience macros to
      apr_tables.h.  [Garrett Rooney]
 
-Changes for APR 1.2.4
+Changes for APR 1.2.7
+
+  *) Netware - add missing apu_version.c parsing for apu_version_string()
+     to the Netware specific builds.  Unix platforms support this API 
+     since 0.9.1.  [Brad Nicholes]
+
+  *) Fix a regression in the updated win32 apr_file_read with timeouts
+     since 1.2.6 which would fail to return the bytes read in specific
+     edge cases.  [William Rowe]
+
+Changes for APR 1.2.6
 
   *) Fully test the detected libuuid or libc based uuid_create or
      uuid_generate function against the detected uuid.h, uuid/uuid.h,
      or sys/uuid.h (using only the first-found .h examined in that order)
      for correct compilation.  Resolves various apr_os_uuid issues on
      multiple environments.  [William Rowe]
+
+  *) Prevent detection of robust mutex support with glibc 2.4,
+     fixing APR_LOCK_PROC_PTHREAD locks.  PR 38442.  [Joe Orton]
+
+  *) Correct bug in kqueue backend for apr_pollset where we would
+     erroneously indicate that a socket was readable or writeable.
+     [Garrett Rooney]
 
   *) Make the filePtr in apr_file_t an apr_off_t on Unix, to avoid issues
      truncating offsets down to 32 bits on large file systems.