b3838003e9
* 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]
34 lines
909 B
Makefile
34 lines
909 B
Makefile
# $NetBSD: Makefile,v 1.72 2013/12/01 09:45:49 ryoon Exp $
|
|
|
|
DISTNAME= apr-1.5.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_APACHE:=apr/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://apr.apache.org/
|
|
COMMENT= Apache Portable Runtime
|
|
LICENSE= apache-2.0
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
PKGCONFIG_OVERRIDE+= apr.pc.in
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-devrandom=/dev/urandom
|
|
CONFIGURE_ARGS+= --with-installbuilddir=${PREFIX}/libexec/apr
|
|
CONFIGURE_ENV+= LIBS=${LIBS:M*:Q}
|
|
LIBS.SunOS+= -lnsl
|
|
|
|
TEST_TARGET= check
|
|
|
|
post-install:
|
|
${RM} ${DESTDIR}${PREFIX}/libexec/apr/libtool
|
|
${INSTALL_SCRIPT} ${PKG_LIBTOOL} ${DESTDIR}${PREFIX}/libexec/apr/libtool
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if ${OPSYS} == "Linux" || ${OPSYS} == "SunOS"
|
|
.include "../../devel/libuuid/buildlink3.mk"
|
|
.endif
|
|
.include "../../mk/bsd.pkg.mk"
|