Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 379ED1A9239 for ; Sun, 19 Dec 2021 10:09:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8C53584D21; Sun, 19 Dec 2021 10:09:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C807384CD9 for ; Sun, 19 Dec 2021 10:09:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id oDFxaAv1_bV8 for ; Sun, 19 Dec 2021 10:09:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2B55284C13 for ; Sun, 19 Dec 2021 10:09:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 241ACFAEC; Sun, 19 Dec 2021 10:09:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163990857031780" MIME-Version: 1.0 Date: Sun, 19 Dec 2021 10:09:30 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/textproc/php-xapian To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20211219100930.241ACFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163990857031780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Sun Dec 19 10:09:30 UTC 2021 Modified Files: pkgsrc/textproc/php-xapian: Makefile Log Message: Define PHP_VERSIONS_INCOMPATIBLE before including phpversion.mk. Intended (as was the previous commit) to avoid wasting bulk build time attempting PHP>=8 variants. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/php-xapian/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163990857031780 Content-Disposition: inline Content-Length: 778 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/php-xapian/Makefile diff -u pkgsrc/textproc/php-xapian/Makefile:1.2 pkgsrc/textproc/php-xapian/Makefile:1.3 --- pkgsrc/textproc/php-xapian/Makefile:1.2 Tue Dec 14 08:47:06 2021 +++ pkgsrc/textproc/php-xapian/Makefile Sun Dec 19 10:09:29 2021 @@ -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 --_----------=_163990857031780--