diff options
author | schmonz <schmonz@pkgsrc.org> | 2021-12-19 10:09:29 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2021-12-19 10:09:29 +0000 |
commit | 089236c6f4c9a57ef52c1984f311e9ad2fc2def8 (patch) | |
tree | 33634d85ab46a82cc5234bda281677f98af157d3 /textproc | |
parent | 9a335a332b35c7c7997be43a26178c11b60a9528 (diff) | |
download | pkgsrc-089236c6f4c9a57ef52c1984f311e9ad2fc2def8.tar.gz |
Define PHP_VERSIONS_INCOMPATIBLE before including phpversion.mk.
Intended (as was the previous commit) to avoid wasting bulk build time
attempting PHP>=8 variants.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/php-xapian/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/php-xapian/Makefile b/textproc/php-xapian/Makefile index 135c68d5450..3ef7a0fc3cc 100644 --- a/textproc/php-xapian/Makefile +++ b/textproc/php-xapian/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.2 2021/12/14 08:47:06 schmonz Exp $ +# $NetBSD: Makefile,v 1.3 2021/12/19 10:09:29 schmonz Exp $ PKGNAME= ${PHP_PKG_PREFIX}-${PKGNAME_MODULE} COMMENT= PHP bindings for Xapian search engine HOMEPAGE= https://xapian.org/docs/bindings/php/ -.include "../../lang/php/phpversion.mk" - PHP_VERSIONS_INCOMPATIBLE= 80 81 +.include "../../lang/php/phpversion.mk" + .if (${PKG_PHP_MAJOR_VERS} == 5) CONFIGURE_ARGS+= --with-php PHP_5_OR_EMPTY= 5 |