summaryrefslogtreecommitdiff
path: root/harmony/pcre2/APKBUILD
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2018-03-18 00:27:52 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2018-03-18 00:27:52 -0500
commit66e3db301a2e36dce488afd1d437d0755bb1e786 (patch)
treeec3ee720e8c9419eb3a48998094d590fe1db1130 /harmony/pcre2/APKBUILD
parent340963f6d33884ec1f4da5d8a5df899b99f48bce (diff)
downloadpackages-66e3db301a2e36dce488afd1d437d0755bb1e786.tar.gz
packages-66e3db301a2e36dce488afd1d437d0755bb1e786.tar.bz2
packages-66e3db301a2e36dce488afd1d437d0755bb1e786.tar.xz
packages-66e3db301a2e36dce488afd1d437d0755bb1e786.zip
harmony/pcre2: disable JIT on pmmx; it requires SSE2
Diffstat (limited to 'harmony/pcre2/APKBUILD')
-rw-r--r--harmony/pcre2/APKBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/harmony/pcre2/APKBUILD b/harmony/pcre2/APKBUILD
index 115be1e56..d06c4b22c 100644
--- a/harmony/pcre2/APKBUILD
+++ b/harmony/pcre2/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=pcre2
pkgver=10.30
-pkgrel=0
+pkgrel=1
pkgdesc="Perl-compatible regular expression library"
url="http://pcre.sourceforge.net/"
arch="all"
@@ -18,6 +18,7 @@ builddir="$srcdir/$pkgname-$pkgver"
case "$CARCH" in
s390x) _enable_jit="";;
ppc64) _enable_jit="";;
+ pmmx) _enable_jit="";; # maybe someday fix sse2 detection
*) _enable_jit="--enable-jit";;
esac