Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 92378 invoked from network); 10 Apr 2006 10:43:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 Apr 2006 10:43:10 -0000 Received: (qmail 76053 invoked by uid 500); 10 Apr 2006 10:43:10 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 76020 invoked by uid 500); 10 Apr 2006 10:43:09 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 76009 invoked by uid 99); 10 Apr 2006 10:43:09 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Apr 2006 03:43:09 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 10 Apr 2006 03:43:09 -0700 Received: (qmail 92224 invoked by uid 65534); 10 Apr 2006 10:42:42 -0000 Message-ID: <20060410104242.92223.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r392915 - /apr/apr/trunk/CHANGES Date: Mon, 10 Apr 2006 10:42:42 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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 ] - *) 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 ] @@ -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 ] - *) 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.