diff options
author | taca <taca@pkgsrc.org> | 2012-08-17 15:38:19 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2012-08-17 15:38:19 +0000 |
commit | 1db7821ee64a0f8f2bba0cf848d53c5ef4cda5d3 (patch) | |
tree | 8453aec85ec623192f956a0bfcd0a4af20abe46b /lang/php | |
parent | 0308f55abc0a5cb1503d77ea10ce0f5aa260b852 (diff) | |
download | pkgsrc-1db7821ee64a0f8f2bba0cf848d53c5ef4cda5d3.tar.gz |
Remove remained codes for PHP 5.2.x.
Diffstat (limited to 'lang/php')
-rw-r--r-- | lang/php/ext.mk | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lang/php/ext.mk b/lang/php/ext.mk index 7585ac82745..d9646514f4a 100644 --- a/lang/php/ext.mk +++ b/lang/php/ext.mk @@ -1,4 +1,4 @@ -# $NetBSD: ext.mk,v 1.28 2012/06/16 02:47:51 taca Exp $ +# $NetBSD: ext.mk,v 1.29 2012/08/17 15:38:19 taca Exp $ # # PHP extension package framework, for both PECL and bundled PHP extensions. # @@ -36,14 +36,9 @@ WRKSRC?= ${WRKDIR}/${EXTRACT_ELEMENTS} DISTINFO_FILE= ${.CURDIR}/${PHPPKGSRCDIR}/distinfo .else # PECL extension -# WARINING: following fixed version number for 5.2 and 5.3 must not be bumped! -.if defined(PECL_LEGACY_VERSION_SCHEME) && \ - (${PKG_PHP_VERSION} == "52" || ${PKG_PHP_VERSION} == "53") -. if ${PKG_PHP_VERSION} == "52" -PKGNAME?= ${PHP_PKG_PREFIX}-${MODNAME}-5.2.17.${PECL_VERSION} -. elif ${PKG_PHP_VERSION} == "53" +# WARINING: following fixed version number for PHP 5.3.x must not be bumped! +.if defined(PECL_LEGACY_VERSION_SCHEME) && ${PKG_PHP_VERSION} == "53" PKGNAME?= ${PHP_PKG_PREFIX}-${MODNAME}-5.3.9.${PECL_VERSION} -. endif .else PKGNAME?= ${PHP_PKG_PREFIX}-${MODNAME}-${PECL_VERSION} .endif |