Update php-memcache to 8.0. This is now for php80. 8.0.0 (2020-12-06) - Version 8.x support PHP 8.x - Version 4.x supports PHP 7.0-7.4. - Version 4.x is considered to be stable for production usage. - Support for PHP 5.x has been removed, please use memcache extension ver. 3.x - Special thanks to Frantisek Drojak - thesource93 (github) and Zaffy (github) for making this happen
22 lines
514 B
Makefile
22 lines
514 B
Makefile
# $NetBSD: Makefile,v 1.15 2021/03/07 15:41:30 taca Exp $
|
|
#
|
|
|
|
MODNAME= memcache
|
|
PECL_VERSION= 8.0
|
|
PECL_LEGACY_VERSION_SCHEME= yes
|
|
CATEGORIES+= devel
|
|
|
|
COMMENT= PHP extension for memcached
|
|
LICENSE= php
|
|
|
|
CONFLICTS= php-memcache-[0-9]*
|
|
|
|
PHP_VERSIONS_ACCEPTED= 80
|
|
|
|
CONFIGURE_ARGS+= --enable-${MODNAME}
|
|
CONFIGURE_ARGS+= --with-zlib-dir=${BUILDLINK_PREFIX.zlib}
|
|
WRKSRC= ${WRKDIR}/${MODNAME}-${PECL_VERSION}
|
|
|
|
.include "../../lang/php/ext.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|