pkgsrc/www/ap-php/Makefile
cube 1050521ede PHP4/5 security changes... They're not critical issues; secunia classes
them between "not critical" and "less critical".

Fix CVE-2006-0996, CVE-2006-1494, CVE-2006-1608, CVE-2006-1490.

See:
    http://secunia.com/advisories/19383/
    http://secunia.com/advisories/19599/

Patches were extracted from CVS.  I had to translate the one for
CVE-2006-1608 on php4 because it has not made its way to the php4.4 branch
(I don't know why;  I can confirm it fixes the issue).

While here, add PATCHDIR to the list of variables php5's Makefile.php
defines.  That way, ap-php gets patched too...
2006-04-14 13:47:29 +00:00

30 lines
908 B
Makefile

# $NetBSD: Makefile,v 1.9 2006/04/14 13:47:30 cube Exp $
#
PKGNAME= ap-php-${PHP_BASE_VERS}
PKGREVISION= 6
COMMENT= Apache (${PKG_APACHE}) module for ${PKG_PHP}
APACHE_MODULE= YES
SHLIBTOOL_OVERRIDE= libtool
.include "../../lang/php/phpversion.mk"
.include "${PHPPKGSRCDIR}/Makefile.php"
# Ensure we export symbols in the linked shared object.
LDFLAGS+= ${EXPORT_SYMBOLS_LDFLAGS}
INSTALLATION_DIRS= lib/httpd
do-install:
if [ -f ${WRKSRC}/.libs/libphp${PKG_PHP_VERSION}.so ]; then \
${INSTALL_DATA} ${WRKSRC}/.libs/libphp${PKG_PHP_VERSION}.so \
${PREFIX}/lib/httpd/mod_php${PKG_PHP_VERSION}.so; \
elif [ -f ${WRKSRC}/libs/libphp${PKG_PHP_VERSION}.so ]; then \
${INSTALL_DATA} ${WRKSRC}/libs/libphp${PKG_PHP_VERSION}.so \
${PREFIX}/lib/httpd/mod_php${PKG_PHP_VERSION}.so; \
fi
.include "${PHPPKGSRCDIR}/buildlink3.mk"
.include "../../mk/apache.mk"
.include "../../mk/bsd.pkg.mk"