diff options
author | Simon Frankenberger <simon@fraho.eu> | 2018-12-24 07:42:21 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-06-14 11:37:51 +0000 |
commit | f34b568e97b2b21795abe344e606fd61041c0ae2 (patch) | |
tree | 3fc668c35d8bbbcdbb373c460c9d841528ceb932 /community/php7-pecl-apcu | |
parent | 98d7235c34d6fb32a8b7e602e4478f3e9910167c (diff) | |
download | aports-f34b568e97b2b21795abe344e606fd61041c0ae2.tar.bz2 aports-f34b568e97b2b21795abe344e606fd61041c0ae2.tar.xz |
community/php7-pecl-apcu: Fix build against PHP 7.3
When building against PHP 7.3.0 the build fails due to missing pcre2
headers. This commit adds this dependency.
Diffstat (limited to 'community/php7-pecl-apcu')
-rw-r--r-- | community/php7-pecl-apcu/APKBUILD | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/community/php7-pecl-apcu/APKBUILD b/community/php7-pecl-apcu/APKBUILD index a4a41d7cf2..2c259e04b3 100644 --- a/community/php7-pecl-apcu/APKBUILD +++ b/community/php7-pecl-apcu/APKBUILD @@ -2,15 +2,14 @@ # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=php7-pecl-apcu _pkgreal=apcu -# release 5 is php7+ pkgver=5.1.17 -pkgrel=0 +pkgrel=1 pkgdesc="PHP extension APC User Cache - PECL" url="https://pecl.php.net/package/apcu" arch="all" license="PHP-3.01" depends="php7-common" -makedepends="pcre-dev php7-dev autoconf re2c" +makedepends="pcre2-dev php7-dev autoconf re2c" source="https://pecl.php.net/get/$_pkgreal-$pkgver.tgz" builddir="$srcdir/$_pkgreal-$pkgver" provides="php7-apcu=$pkgver-r$pkgrel" # for backward compatibility |