pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/php-opcache



Module Name:    pkgsrc
Committed By:   taca
Date:           Fri Jan  2 06:17:43 UTC 2026

Modified Files:
        pkgsrc/devel/php-opcache: Makefile

Log Message:
devel/php-opcache: restrict PHP version

php-opcache is integrated in PHP base from PHP 8.5.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/php-opcache/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/php-opcache/Makefile
diff -u pkgsrc/devel/php-opcache/Makefile:1.9 pkgsrc/devel/php-opcache/Makefile:1.10
--- pkgsrc/devel/php-opcache/Makefile:1.9       Wed Nov 12 12:24:27 2025
+++ pkgsrc/devel/php-opcache/Makefile   Fri Jan  2 06:17:43 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2025/11/12 12:24:27 jperkin Exp $
+# $NetBSD: Makefile,v 1.10 2026/01/02 06:17:43 taca Exp $
 
 MODNAME=               opcache
 PKGREVISION=           1
@@ -12,9 +12,12 @@ USE_PHP_EXT_PATCHES= Yes
 # Ensure libgcc's __builtin_cpu_* stuff is pulled in.
 LDFLAGS.SunOS+=        -lgcc
 
+# PHP 8.5 bundles opcache extension.
+PHP_VERSIONS_ACCEPTED= 83 82 84 81 74 56
+
 # PHP 8.4's opcache depends on gmake.
 .include "../../lang/php/phpversion.mk"
-.if ${PHP_VER} >= 84
+.if ${PHP_VER} == 84
 USE_TOOLS+=    gmake
 .endif
 



Home | Main Index | Thread Index | Old Index