summaryrefslogtreecommitdiff
path: root/devel/apr
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2013-12-01 09:45:49 +0000
committerryoon <ryoon@pkgsrc.org>2013-12-01 09:45:49 +0000
commit21ed247b73a43a2e9ad68da19147ab5ae20aa007 (patch)
tree661be6fcdf25a0139bc0376ecb37a38a741f8b10 /devel/apr
parent1dc0a905c20a032710477cabb0fb2be2b7d66413 (diff)
downloadpkgsrc-21ed247b73a43a2e9ad68da19147ab5ae20aa007.tar.gz
Update to 1.5.0
* BUILDLINK_{API,ABI}_DEPENDS.apr are bumped Changelog: Changes for APR 1.5.0 *) Fix Linux kernel version check to recognize more versions, including versions 3.10 and later. Bug 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 in when attempting to _commit(stdout) or _commit(stderr). [Mike Rumph <mike.rumph oracle.com>] *) apr_socket_connect() on Windows: Handle WSAEISCONN. Bug 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. Bug 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. Bug 51146. [Ruediger Pluem] *) Add the apr_escape interface. [Graham Leggett] *) Cygwin build fixes. Bugs 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. Bug 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]
Diffstat (limited to 'devel/apr')
-rw-r--r--devel/apr/Makefile4
-rw-r--r--devel/apr/PLIST4
-rw-r--r--devel/apr/buildlink3.mk6
-rw-r--r--devel/apr/distinfo8
4 files changed, 12 insertions, 10 deletions
diff --git a/devel/apr/Makefile b/devel/apr/Makefile
index 227d61286e0..b9830823fbf 100644
--- a/devel/apr/Makefile
+++ b/devel/apr/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.71 2013/07/04 16:24:02 wiz Exp $
+# $NetBSD: Makefile,v 1.72 2013/12/01 09:45:49 ryoon Exp $
-DISTNAME= apr-1.4.8
+DISTNAME= apr-1.5.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_APACHE:=apr/}
EXTRACT_SUFX= .tar.bz2
diff --git a/devel/apr/PLIST b/devel/apr/PLIST
index 1c3967e2cd7..58abd12cd73 100644
--- a/devel/apr/PLIST
+++ b/devel/apr/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2009/06/14 17:48:33 joerg Exp $
+@comment $NetBSD: PLIST,v 1.10 2013/12/01 09:45:49 ryoon Exp $
bin/apr-1-config
include/apr-1/apr.h
include/apr-1/apr_allocator.h
@@ -6,6 +6,7 @@ include/apr-1/apr_atomic.h
include/apr-1/apr_dso.h
include/apr-1/apr_env.h
include/apr-1/apr_errno.h
+include/apr-1/apr_escape.h
include/apr-1/apr_file_info.h
include/apr-1/apr_file_io.h
include/apr-1/apr_fnmatch.h
@@ -25,6 +26,7 @@ include/apr-1/apr_random.h
include/apr-1/apr_ring.h
include/apr-1/apr_shm.h
include/apr-1/apr_signal.h
+include/apr-1/apr_skiplist.h
include/apr-1/apr_strings.h
include/apr-1/apr_support.h
include/apr-1/apr_tables.h
diff --git a/devel/apr/buildlink3.mk b/devel/apr/buildlink3.mk
index 7a168adef45..165a9c52853 100644
--- a/devel/apr/buildlink3.mk
+++ b/devel/apr/buildlink3.mk
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.35 2013/04/06 11:06:52 rodent Exp $
+# $NetBSD: buildlink3.mk,v 1.36 2013/12/01 09:45:49 ryoon Exp $
BUILDLINK_TREE+= apr
.if !defined(APR_BUILDLINK3_MK)
APR_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.apr+= apr>=1.2.8
-BUILDLINK_ABI_DEPENDS.apr+= apr>=1.4.5nb3
+BUILDLINK_API_DEPENDS.apr+= apr>=1.5.0
+BUILDLINK_ABI_DEPENDS.apr+= apr>=1.5.0
BUILDLINK_PKGSRCDIR.apr?= ../../devel/apr
BUILDLINK_INCDIRS.apr?= include/apr-1
diff --git a/devel/apr/distinfo b/devel/apr/distinfo
index 5e868c8b07b..43fd06b5d79 100644
--- a/devel/apr/distinfo
+++ b/devel/apr/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.36 2013/07/04 16:24:02 wiz Exp $
+$NetBSD: distinfo,v 1.37 2013/12/01 09:45:49 ryoon Exp $
-SHA1 (apr-1.4.8.tar.bz2) = 2dce90291b6d4072a6e47d096f5c81ae1ce76f9f
-RMD160 (apr-1.4.8.tar.bz2) = 081406aa06854c04fb029069b0299e00c3f51ae6
-Size (apr-1.4.8.tar.bz2) = 772927 bytes
+SHA1 (apr-1.5.0.tar.bz2) = cae122be79070645a7ab36a53148487c84ce8bf0
+RMD160 (apr-1.5.0.tar.bz2) = 5e8dbb51eb11fba92d2de67f764c54cd72b15a72
+Size (apr-1.5.0.tar.bz2) = 813976 bytes