Changes for APR 1.3.8 *) SECURITY: CVE-2009-2412 (cve.mitre.org) Fix overflow in pools and rmm, where size alignment was taking place. [Matt Lewis <mattlewis@google.com>, Sander Striker] *) Make sure that "make check" is used in the RPM spec file, consistent with apr-util. [Graham Leggett] *) Pass default environment to testflock, testoc and testpipe children, so that tests run when APR is compiled with Intel C Compiler. [Bojan Smojver]
35 lines
782 B
Makefile
35 lines
782 B
Makefile
# $NetBSD: Makefile,v 1.59 2009/08/07 14:29:44 gdt Exp $
|
|
|
|
DISTNAME= apr-1.3.8
|
|
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"
|