You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2015/04/25 14:10:36 UTC

svn commit: r8707 - /dev/apr/

Author: trawick
Date: Sat Apr 25 12:10:36 2015
New Revision: 8707

Log:
Proposed APR 1.5.2

Added:
    dev/apr/CHANGES-APR-1.5   (with props)
    dev/apr/CHANGES-APR-1.5.2   (with props)
    dev/apr/apr-1.5.2-win32-src.zip   (with props)
    dev/apr/apr-1.5.2-win32-src.zip.asc   (with props)
    dev/apr/apr-1.5.2-win32-src.zip.md5   (with props)
    dev/apr/apr-1.5.2-win32-src.zip.sha1   (with props)
    dev/apr/apr-1.5.2.tar.bz2   (with props)
    dev/apr/apr-1.5.2.tar.bz2.asc   (with props)
    dev/apr/apr-1.5.2.tar.bz2.md5   (with props)
    dev/apr/apr-1.5.2.tar.bz2.sha1   (with props)
    dev/apr/apr-1.5.2.tar.gz   (with props)
    dev/apr/apr-1.5.2.tar.gz.asc   (with props)
    dev/apr/apr-1.5.2.tar.gz.md5   (with props)
    dev/apr/apr-1.5.2.tar.gz.sha1   (with props)

Added: dev/apr/CHANGES-APR-1.5
==============================================================================
--- dev/apr/CHANGES-APR-1.5 (added)
+++ dev/apr/CHANGES-APR-1.5 Sat Apr 25 12:10:36 2015
@@ -0,0 +1,200 @@
+                                                     -*- coding: utf-8 -*-
+Changes for APR 1.5.2
+
+  *) SECURITY: CVE-2015-1829 (cve.mitre.org)
+     APR applications using APR named pipe support on Windows can be 
+     vulnerable to a pipe squatting attack from a local process; the extent
+     of the vulnerability, when present, depends on the application.
+     Initial analysis and report was provided by John Hernandez of Casaba 
+     Security via HP SSRT Security Alert.  [Yann Ylavic]
+
+  *) apr_atomic: Fix errors when building on Visual Studio 2013 while
+     maintaining the ability to build on Visual Studio 6 with Windows
+     Server 2003 R2 SDK. PR 57191. [Gregg Smith]
+
+  *) Switch to generic atomics for early/unpatched Solaris 10 not exporting
+     some atomic functions.  PR 55418.  [Yann Ylavic]
+
+  *) apr_file_mktemp() on HP-UX: Remove limitation of 26 temporary files
+     per process.  PR 57677.  [Jeff Trawick]
+
+  *) apr_escape: Correctly calculate the size of the returned string in
+     apr_escape_path and set the correct return value in case we actually
+     escape the string. [<aduryagin gmail.com>] PR 57230.
+
+  *) pollcb on Windows: Handle calls with no file/socket descriptors.
+     Follow up to PR 49882. [Jeff Trawick, Yann Ylavic]
+
+  *) apr_poll(cb): fix error paths returned values and leaks.  [Yann Ylavic]
+
+  *) apr_thread_cond_*wait() on BeOS: Fix broken logic.  PR 45800.
+     [Jochen Voss (no e-mail)]
+
+  *) apr_skiplist: Optimize the number of allocations by reusing pooled or
+     malloc()ed nodes for the lifetime of the skiplist.  [Yann Ylavic]
+
+  *) apr_skiplist: Fix possible multiple-free() on the same value in
+     apr_skiplist_remove_all().  [Yann Ylavic]
+
+  *) apr_pollset: On z/OS, threadsafe apr_pollset_poll() may return
+     "EDC8102I Operation would block" under load.
+     [Pat Odonnell <patod us.ibm.com>]
+
+  *) On z/OS, apr_sockaddr_info_get() with family == APR_UNSPEC was not 
+     returning IPv4 addresses if any IPv6 addresses were returned. 
+     [Eric Covener]
+
+  *) Windows cmake build: Fix an incompatibility with cmake 2.8.12 and
+     later.  [Jeff Trawick]
+
+  *) apr_global_mutex/apr_proc_mutex: Resolve failures with the 
+     POSIX sem implementation in environments which receive signals.
+     [Jeff Trawick]
+
+  *) apr_skiplist: Fix potential corruption of skiplists leading to 
+     results or crashes. [Takashi Sato <takashi tks st>, Eric Covener]
+     PR 56654.
+
+  *) Improve platform detection by updating config.guess and config.sub.
+     [Rainer Jung]
+
+Changes for APR 1.5.1
+
+  *) apr_os_proc_mutex_get() on Unix:  Avoid segfault for cross-
+     process pthread mutexes.  [Yann Ylavic <ylavic.dev gmail.com>]
+
+  *) When using shmget-based shared memory, the ID used for ftok is
+     now an APR hash of the filename instead of the constant '1'.
+     We do this to help avoid collisions. PR 53996 [Jim Jagielski]
+
+  *) apr_socket_atreadeof(): Fix breakage on OS X. [Jim Jagielski]
+
+  *) Fix POSIX shared memory (shm_open) use for named shared memory.
+     Includes adding '--enable-posix-shm' to force POSIX shm if
+     available, and OS X compatibility. PR 55928.
+     [Jozef Hatala <jh-asf skrt org>, Jim Jagielski]
+
+  *) Fix race condition when calling apr_dir_make_recursive from
+     multiple threads on Windows.
+     [Bert Huijben]
+
+  *) Fix apr_escape.c compilation errors on EBCDIC platforms.
+     [Eric Covener]
+
+  *) FreeBSD 10: Correct a regression in 1.5.0 which affected non-
+     blocking sockets in some applications, including httpd.  [Jeff
+     Trawick]
+
+  *) Windows cmake build: Fix incorrect installation of some .pdb
+     files.  Fix incorrect use of some logic intended for Windows 9x,
+     including legacy filesystem interfaces and dynamic loading of
+     some Windows APIs.  [Jeff Trawick]
+
+  *) apr_skiplist: Add compatibility with C++ applications.
+     [Jeff Trawick]
+
+  *) Correct a regression in 1.5.0 which affected out-of-tree
+     builds on Unix.  [Rainer Jung]
+
+  *) Improve platform detection by updating config.guess and config.sub.
+     [Rainer Jung]
+
+Changes for APR 1.5.0
+
+  *) Fix Linux kernel version check to recognize more versions,
+     including versions 3.10 and later.  PR 55690.  [Joe Orton,
+     Arfrever Frehtes Taifersar Arahesis <arfrever.fta gmail.com>]
+
+  *) Add apr_sockaddr_is_wildcard() to check if a socket address
+     refers to the wildcard address for the protocol family (e.g.,
+     0.0.0.0/INADDR_ANY for IPv4).  [Jeff Trawick]
+
+  *) apr_file_dup2() on Windows: Fix debug RTL assertion when 
+     attempting to _commit(stdout) or _commit(stderr).  [Mike Rumph
+     <mike.rumph oracle.com>]
+
+  *) apr_socket_connect() on Windows: Handle WSAEISCONN.  PR 48736.
+     [<inoue ariel-networks.com>, Jeff Trawick]
+
+  *) z/OS: threadsafe apr_pollset_poll support for sockets [Greg Ames]
+
+  *) Windows:  Don't obtain a mutex for buffered file I/O unless the
+     file was opened with the APR_FOPEN_XTHREAD flag.  [Ivan Zhakov
+     <ivan visualsvn.com>]
+
+  *) Windows:  Create named shared memory segments under the "Local"
+     namespace if the caller is unprivileged, fixing an inability of
+     unprivileged callers to use apr_shm_create() with named shared
+     memory segments under recent Windows.  As before, shared memory
+     segments are created under the "Global" namespace for privileged
+     callers.  Add apr_shm_create_ex() and apr_shm_attach_ex(), which
+     provide the ability to override the normal namespace selection.
+     [Jeff Trawick]
+
+  *) Update compile settings for MINT OS.  PR 47181. [Alan Hourihane
+     <alanh fairlite.co.uk>]
+
+  *) Files and pipes on Windows:  Don't create an unused pollset when
+     files and pipes are opened.  [Mladen Turk]
+
+  *) apr_socket_timeout_set() on Windows: If the socket was in a non-
+     blocking state before, disable that setting so that timeouts work.
+     [Jeff Trawick]
+
+  *) File info APIs: Fix calculation of atime and mtime on AIX. PR 51146.
+     [Ruediger Pluem]
+
+  *) Add the apr_escape interface. [Graham Leggett]
+
+  *) Cygwin build fixes.  PRs 51016 and 55586.  [Carlo Bramini
+     <carlo.bramix libero.it>] 
+
+  *) Add apr_skiplist family. [Jim Jagielski]
+
+  *) Add experimental cmake-based build system for Windows.  Refer to 
+     README.cmake for more information.  [Jeff Trawick, Tom Donovan]
+
+  *) Add the apr_table_getm() call, which transparently handles the
+     merging of keys with multiple values. [Graham Leggett]
+
+  *) Add apr_hash_this_key(), apr_hash_this_key_len(), and 
+     apr_hash_this_val() for easier access to those attributes from
+     a hash iterator.  [Hyrum K. Wright <hyrum_wright mail.utexas.edu>]
+
+  *) MinGW/MSYS:  Support shared builds of APR, other general improvements
+     to support of this toolchain.  PR 46175.  [Carlo Bramini 
+     <carlo.bramix libero.it>]  
+
+  *) Improve platform detection by updating config.guess and config.sub.
+     [Rainer Jung]
+
+  *) apr_socket_opt_set: Add support for APR_SO_BROADCAST. PR 46389.
+     [Armin Müller <mueller itestra com>]
+
+  *) Enable platform specific support for the opening of a file or
+     pipe in non-blocking mode through the APR_FOPEN_NONBLOCK flag.
+     [Graham Leggett]
+
+Changes for APR 1.4.x and later:
+
+  *) http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/CHANGES?view=markup
+
+Changes for APR 1.3.x and later:
+
+  *) http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/CHANGES?view=markup
+
+Changes for APR 1.2.x and later:
+
+  *) http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/CHANGES?view=markup
+
+Changes for APR 1.1.x and later:
+
+  *) http://svn.apache.org/viewvc/apr/apr/branches/1.1.x/CHANGES?view=markup
+
+Changes for APR 1.0.x and later:
+
+  *) http://svn.apache.org/viewvc/apr/apr/branches/1.0.x/CHANGES?view=markup
+
+Changes for APR 0.9.x and later/earlier:
+
+  *) http://svn.apache.org/viewvc/apr/apr/branches/0.9.x/CHANGES?view=markup

Propchange: dev/apr/CHANGES-APR-1.5
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/CHANGES-APR-1.5.2
==============================================================================
--- dev/apr/CHANGES-APR-1.5.2 (added)
+++ dev/apr/CHANGES-APR-1.5.2 Sat Apr 25 12:10:36 2015
@@ -0,0 +1,60 @@
+                                                     -*- coding: utf-8 -*-
+Changes for APR 1.5.2
+
+  *) SECURITY: CVE-2015-1829 (cve.mitre.org)
+     APR applications using APR named pipe support on Windows can be 
+     vulnerable to a pipe squatting attack from a local process; the extent
+     of the vulnerability, when present, depends on the application.
+     Initial analysis and report was provided by John Hernandez of Casaba 
+     Security via HP SSRT Security Alert.  [Yann Ylavic]
+
+  *) apr_atomic: Fix errors when building on Visual Studio 2013 while
+     maintaining the ability to build on Visual Studio 6 with Windows
+     Server 2003 R2 SDK. PR 57191. [Gregg Smith]
+
+  *) Switch to generic atomics for early/unpatched Solaris 10 not exporting
+     some atomic functions.  PR 55418.  [Yann Ylavic]
+
+  *) apr_file_mktemp() on HP-UX: Remove limitation of 26 temporary files
+     per process.  PR 57677.  [Jeff Trawick]
+
+  *) apr_escape: Correctly calculate the size of the returned string in
+     apr_escape_path and set the correct return value in case we actually
+     escape the string. [<aduryagin gmail.com>] PR 57230.
+
+  *) pollcb on Windows: Handle calls with no file/socket descriptors.
+     Follow up to PR 49882. [Jeff Trawick, Yann Ylavic]
+
+  *) apr_poll(cb): fix error paths returned values and leaks.  [Yann Ylavic]
+
+  *) apr_thread_cond_*wait() on BeOS: Fix broken logic.  PR 45800.
+     [Jochen Voss (no e-mail)]
+
+  *) apr_skiplist: Optimize the number of allocations by reusing pooled or
+     malloc()ed nodes for the lifetime of the skiplist.  [Yann Ylavic]
+
+  *) apr_skiplist: Fix possible multiple-free() on the same value in
+     apr_skiplist_remove_all().  [Yann Ylavic]
+
+  *) apr_pollset: On z/OS, threadsafe apr_pollset_poll() may return
+     "EDC8102I Operation would block" under load.
+     [Pat Odonnell <patod us.ibm.com>]
+
+  *) On z/OS, apr_sockaddr_info_get() with family == APR_UNSPEC was not 
+     returning IPv4 addresses if any IPv6 addresses were returned. 
+     [Eric Covener]
+
+  *) Windows cmake build: Fix an incompatibility with cmake 2.8.12 and
+     later.  [Jeff Trawick]
+
+  *) apr_global_mutex/apr_proc_mutex: Resolve failures with the 
+     POSIX sem implementation in environments which receive signals.
+     [Jeff Trawick]
+
+  *) apr_skiplist: Fix potential corruption of skiplists leading to 
+     results or crashes. [Takashi Sato <takashi tks st>, Eric Covener]
+     PR 56654.
+
+  *) Improve platform detection by updating config.guess and config.sub.
+     [Rainer Jung]
+

Propchange: dev/apr/CHANGES-APR-1.5.2
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/apr-1.5.2-win32-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/apr/apr-1.5.2-win32-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/apr/apr-1.5.2-win32-src.zip.asc
==============================================================================
--- dev/apr/apr-1.5.2-win32-src.zip.asc (added)
+++ dev/apr/apr-1.5.2-win32-src.zip.asc Sat Apr 25 12:10:36 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.22 (GNU/Linux)
+
+iQIcBAABCgAGBQJVO4LJAAoJEOxYLrY5/wkspfsP/3Dath4yINYFG08TsB4jiq4m
+dcgWAJ8B245A8XqF2K2LX56gDfu4FZFFd5h4HL4Jnp7zBpf5GDr3HnnDQ7rYEB5n
+bDFs8exyCyfwgcQevBNah5mUS93MCwRpHxo89321wk2ZNQOVjw/9lgNKuhEta6+0
+1vPhWHqDLpy1qa7euACzcDqE+Zy7WFRF6gCEKNxYcay/PXT1DB1w/nT1U57qveGZ
+llTj8w5ApwMhV7N2LXL0ziX+Slxs21quCuboL0vjs0qZP2peYVJYO989jusiBYkL
+l/jy5fUvP0t/mKNS0FltkqNVAhQTyuruQkrGOJSVnVRWfyGtpxwVMX4ATIaUZVWS
+4DhJ7Bgg8ji0fqbmrw7y5mjxiFFuI8MvI13No2wixZnKrHT1+bF3/AgPeRPUKnGC
+o3Wwp1PN7kjLkdhZ7XBLOzTswphNdRAm/iPWILoh/yiO82Cvpbe8qhMzecJN2joQ
+B7Wdco8dalCaN8oIOl6Mj/DRB2cyTM+g6ImSEfDwykguf6/0ZYVWQZjzVVH3UyM1
+ak03hlZrzSQnYYjohZUGTRcITWaOv7x3cVpDmldOYhlVPg1bpcAD69/wGSPMDRK2
+hVhJKgVukt8/ilmkQ8XQ2BkExs2JPzwV7q0L5jS8Ov/902eSBniX2BTv0CS5DNot
+BHSjVlK56QPCDNSobpKK
+=WYKr
+-----END PGP SIGNATURE-----

Propchange: dev/apr/apr-1.5.2-win32-src.zip.asc
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/apr-1.5.2-win32-src.zip.md5
==============================================================================
--- dev/apr/apr-1.5.2-win32-src.zip.md5 (added)
+++ dev/apr/apr-1.5.2-win32-src.zip.md5 Sat Apr 25 12:10:36 2015
@@ -0,0 +1 @@
+ea912a289186e5120eac3a722fe23c2f *apr-1.5.2-win32-src.zip

Propchange: dev/apr/apr-1.5.2-win32-src.zip.md5
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/apr-1.5.2-win32-src.zip.sha1
==============================================================================
--- dev/apr/apr-1.5.2-win32-src.zip.sha1 (added)
+++ dev/apr/apr-1.5.2-win32-src.zip.sha1 Sat Apr 25 12:10:36 2015
@@ -0,0 +1 @@
+ad7ad711966058de64b0e3f73d006f6dd39f56c6 *apr-1.5.2-win32-src.zip

Propchange: dev/apr/apr-1.5.2-win32-src.zip.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/apr-1.5.2.tar.bz2
==============================================================================
Binary file - no diff available.

Propchange: dev/apr/apr-1.5.2.tar.bz2
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/apr/apr-1.5.2.tar.bz2.asc
==============================================================================
--- dev/apr/apr-1.5.2.tar.bz2.asc (added)
+++ dev/apr/apr-1.5.2.tar.bz2.asc Sat Apr 25 12:10:36 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.22 (GNU/Linux)
+
+iQIcBAABCgAGBQJVO4LJAAoJEOxYLrY5/wks0/gP/iwNnZqbrZvSL5v2tkIzw7Al
+lYlczfOsEgn7UpQfotzUP22WJ8vJJewzd1RT69gp1fQAg8WwTMsPxT1YAgPewKTC
+Mt867MOJFLZxi5LArwLVz+3bOOzf7mpRHJ0ejY5wX87ccPYfk4JqYi4KzNbCiwH6
+AD+WzllXyijfh8ouDFH8m825VjCNEzaSJ008NBaiJtSlp3PHWmBJupqgjcic427y
+aPMPudLBFPIq8UgGvo/Q6grrEMQTUv8HgQ6H3RsnasAga+BWsI0eO0AjpskHLHaM
+IztxUnMNmPWSFXLkv6zJ/ojehWM77UENX/p4qt+mQTWgEJqSb3a/Gy32TKs+T9Ym
+bkKxAsqkZIvl/h6QHl1+KwcXlTAsqJOrEHbbTF0SZPwKVE4+72pZC5u5UxGIVZRt
+ZQ7x+cC8nck5c+UhRtJniJdivdNdZGmA9hB09OzoHqIIxJTHcXZB3b6to+yzWY4U
+RELebr5U2SR7eBM3hPJc3jibi9mJlur5VNR6l8+5rD/F2ZC3SynXvB9YZVEYvUuK
+/nqgwv9l0K8+llNtcAwmWFQ52qy2Zcgz/bwHw9A2FPgJzePybDLh+PkfpWUBts4d
+dS9/FYkmBfQsnkk8l7vxx+KPk8IpRaACTDarvMh5YSsqRJBVU7VUvjmNsdqytPse
+iq0pJ5edbqU1BJDhWHDF
+=TZ57
+-----END PGP SIGNATURE-----

Propchange: dev/apr/apr-1.5.2.tar.bz2.asc
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/apr-1.5.2.tar.bz2.md5
==============================================================================
--- dev/apr/apr-1.5.2.tar.bz2.md5 (added)
+++ dev/apr/apr-1.5.2.tar.bz2.md5 Sat Apr 25 12:10:36 2015
@@ -0,0 +1 @@
+4e9769f3349fe11fc0a5e1b224c236aa *apr-1.5.2.tar.bz2

Propchange: dev/apr/apr-1.5.2.tar.bz2.md5
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/apr-1.5.2.tar.bz2.sha1
==============================================================================
--- dev/apr/apr-1.5.2.tar.bz2.sha1 (added)
+++ dev/apr/apr-1.5.2.tar.bz2.sha1 Sat Apr 25 12:10:36 2015
@@ -0,0 +1 @@
+6d757fcf7c687fc300c1066076f2e8380ff8cbc0 *apr-1.5.2.tar.bz2

Propchange: dev/apr/apr-1.5.2.tar.bz2.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/apr-1.5.2.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/apr/apr-1.5.2.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/apr/apr-1.5.2.tar.gz.asc
==============================================================================
--- dev/apr/apr-1.5.2.tar.gz.asc (added)
+++ dev/apr/apr-1.5.2.tar.gz.asc Sat Apr 25 12:10:36 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.22 (GNU/Linux)
+
+iQIcBAABCgAGBQJVO4LJAAoJEOxYLrY5/wks0ecQAL2uOJhwElfDTmbXWKcGK7Nf
+5RUD/KwJ7z9nCCunRBA7PcVE7arA3Go9lHaCkZccUWrCNxnDUBXiy9ZnU7T0MfnN
+9F3StY5zukl4nmt2ZFeS6wSoPzMNaZxO4r1ydeMZuheVrlu7N1KH7MV1+tOsGANQ
+tyEH/wAcunN5JKfCid9O2mMZHWyQCqj38VhGC8D7c/WViRYpFISrR3ZzeZGepwFb
+uFwudIRvgC3xJxHXffbfhJD7G0sRvIf2kQeBURcCcYc8Tvx5F8TUikAo3DtSAJdE
+BqaFARNbRaCqgHjA++R7OfTMPBDrREBwmlOBiqXmgvq61llVW0FPK/mK0Qz+Ybtf
+azyBzIzSC6oRmsQ/p7YFAeEPD3DhTCHRvJ7i90co0uMY+rs+60tPAHLxAwOJEUA8
+hNnsSpSOs8Sd49C+5oUYjwXpXNiJbWTxdxTDrInnNR/l+GWPmAk2HEZNNgKAkwZF
+oX81r8yZ1yWqiCh6C+mQqKg4+PZgZ+n0NDBpQWMoJcpmbme4kgodFT579bZjyQ6w
+Cmkajbom7v/U9ehe0jgNG58/8RPFXuKM3escu3PUUql5+OrVbfwgYr6LaS9ST7Kh
+MrNgae7PHduLAbaRuOQHPvfjIpjSflv5yYUTNqGGdGEJS3nrhgP4y7+tOTljWXsx
+JkV9WxBXWNNRWMUlT44M
+=dLX6
+-----END PGP SIGNATURE-----

Propchange: dev/apr/apr-1.5.2.tar.gz.asc
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/apr-1.5.2.tar.gz.md5
==============================================================================
--- dev/apr/apr-1.5.2.tar.gz.md5 (added)
+++ dev/apr/apr-1.5.2.tar.gz.md5 Sat Apr 25 12:10:36 2015
@@ -0,0 +1 @@
+98492e965963f852ab29f9e61b2ad700 *apr-1.5.2.tar.gz

Propchange: dev/apr/apr-1.5.2.tar.gz.md5
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/apr/apr-1.5.2.tar.gz.sha1
==============================================================================
--- dev/apr/apr-1.5.2.tar.gz.sha1 (added)
+++ dev/apr/apr-1.5.2.tar.gz.sha1 Sat Apr 25 12:10:36 2015
@@ -0,0 +1 @@
+2ef2ac9a8de7f97f15ef32cddf1ed7325163d84c *apr-1.5.2.tar.gz

Propchange: dev/apr/apr-1.5.2.tar.gz.sha1
------------------------------------------------------------------------------
    svn:eol-style = native