diff options
author | taca <taca> | 2012-06-16 02:59:48 +0000 |
---|---|---|
committer | taca <taca> | 2012-06-16 02:59:48 +0000 |
commit | 6dca4f1ceea435b42d24988f377b5035f3f889ed (patch) | |
tree | 087749a59877ab50857d0eed40bac55a0563d248 | |
parent | 010f2e2e4df28f8312984a3e879e9bf5f531b5f9 (diff) | |
download | pkgsrc-6dca4f1ceea435b42d24988f377b5035f3f889ed.tar.gz |
Restrict to PHP 5.2.x and 5.3.x since there is no PHP 5.4.x officialy yet.
-rw-r--r-- | security/php-suhosin/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/php-suhosin/Makefile b/security/php-suhosin/Makefile index 27197eb71cf..40620f67324 100644 --- a/security/php-suhosin/Makefile +++ b/security/php-suhosin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2012/01/20 03:23:34 taca Exp $ +# $NetBSD: Makefile,v 1.6 2012/06/16 02:59:48 taca Exp $ # MODNAME= suhosin @@ -14,6 +14,9 @@ COMMENT= Advanced protection system for PHP installations PKG_DESTDIR_SUPPORT= user-destdir +# There is no patch for PHP 5.4 yet(?). +PHP_VERSIONS_ACCEPTED= 52 53 + CONFIGURE_ARGS= --enable-${MODNAME} .include "../../lang/php/ext.mk" |