Changes for APR 1.3.9 *) SECURITY: CVE-2009-2699 (cve.mitre.org) Faulty error handling in the Solaris pollset support (Event Port backend) which could trigger hangs in the prefork and event MPMs on that platform. PR 47645. [Jeff Trawick]
35 lines
785 B
Makefile
35 lines
785 B
Makefile
# $NetBSD: Makefile,v 1.60 2009/12/02 11:36:27 fhajny Exp $
|
|
|
|
DISTNAME= apr-1.3.9
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_APACHE:=apr/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://apr.apache.org/
|
|
COMMENT= Apache Portable Runtime
|
|
LICENSE= apache-2.0
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
PKGCONFIG_OVERRIDE+= apr.pc.in
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--with-devrandom=/dev/urandom \
|
|
--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.pkg.mk"
|