diff options
Diffstat (limited to 'community/php7')
-rw-r--r-- | community/php7/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/community/php7/APKBUILD b/community/php7/APKBUILD index f76b0dbc3b..ae4f0c25b0 100644 --- a/community/php7/APKBUILD +++ b/community/php7/APKBUILD @@ -3,7 +3,7 @@ pkgname=php7 _pkgreal=php pkgver=7.0.17 -pkgrel=5 +pkgrel=6 pkgdesc="The PHP language runtime engine - 7th branch" url="http://www.php.net/" arch="all" @@ -71,6 +71,7 @@ prepare() { } _build() { + [ "$CARCH" = "s390x" ] && _disable_pcre_jit="--without-pcre-jit" export EXTENSION_DIR=/usr/lib/$pkgname/modules ./configure \ --build=$CBUILD \ @@ -89,6 +90,7 @@ _build() { --disable-short-tags \ --with-openssl=shared --with-kerberos --with-system-ciphers \ --with-pcre-regex --with-pcre-dir \ + $_disable_pcre_jit \ --with-zlib=shared --with-zlib-dir \ --enable-bcmath=shared \ --with-bz2=shared \ |