X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qk0-f169.google.com (mail-qk0-f169.google.com [209.85.220.169]) by lists.alpinelinux.org (Postfix) with ESMTP id 443EB5C538B for ; Wed, 12 Apr 2017 01:00:39 +0000 (GMT) Received: by mail-qk0-f169.google.com with SMTP id f133so11822394qke.2 for ; Tue, 11 Apr 2017 18:00:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=flatglobe.org; s=google; h=from:to:subject:date:message-id:in-reply-to:references; bh=pZzc/suJGvu912j558MjagUf5GogLj0NUslpa5osuBY=; b=fSoc28Msi7UlILdCFXSXQFiBDSt0FfYSEoyXYQmJp94jpmwbbdRFu6x/Vh3zru3pD/ QY8q/jIw5sdci08NXmzGXsG2V5Lj6irGNCdVaA4Zo1qJVOvDjY7Qqr9l/LVRU+IJcXDl WWK351jQ3nWyD0IaLYGvszm+RMTVkwSnxchSw= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=pZzc/suJGvu912j558MjagUf5GogLj0NUslpa5osuBY=; b=op65MxJIaiOn3m+R/aOGOwyfhpBTVfGvdBOqG7M2JUfPWy6+wENxGv9s2CGLCQ8gt0 lCodsgXdjiwFq/4z6RB8zaRv28s626kMwFL5XF8cBx6pQCkeqd3VOL4UaIino4B46K4+ n1V2c4UwAbh+a/MTf+JJeVMNC4l+1q9CsG7zcQQ9K6Q28/tEmMefeLB/MjnLs074fJf9 uws0i+hKoLFdcmzt80GBsBfqlL7MNhmjjkLUhKYa5zSkSapf2bwoxHMLzXqQwFD7jC8N tUk622RaaDOHuLzx9TeCVnLCuf1hijX7IZqOrinJfRcSYu/gUWVp2EdZa5ivxytu6Cp3 Bo5g== X-Gm-Message-State: AFeK/H3chkFor/jcJN/yUSTHiiMABbsX6Dmzj7aSG2n+WNrDAFs4TGB7PTP5O+Lk3pZc3w== X-Received: by 10.55.21.141 with SMTP id 13mr49048298qkv.276.1491958838612; Tue, 11 Apr 2017 18:00:38 -0700 (PDT) Received: from localhost.localdomain (cpe-204-210-151-44.hvc.res.rr.com. [204.210.151.44]) by smtp.gmail.com with ESMTPSA id f126sm12268626qkc.47.2017.04.11.18.00.37 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 11 Apr 2017 18:00:37 -0700 (PDT) From: "Tuan M. Hoang" To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 6/6] community/pcre2: disable jit on s390x Date: Tue, 11 Apr 2017 21:00:16 -0400 Message-Id: <1491958816-24578-1-git-send-email-tmhoang@flatglobe.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1491958776-24388-1-git-send-email-tmhoang@flatglobe.org> References: <1491958776-24388-1-git-send-email-tmhoang@flatglobe.org> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- community/pcre2/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/community/pcre2/APKBUILD b/community/pcre2/APKBUILD index 7a892dede2..4072d35a2a 100644 --- a/community/pcre2/APKBUILD +++ b/community/pcre2/APKBUILD @@ -19,6 +19,7 @@ build() { cd "$builddir" # Note: Forced -O3 is recommended (needed?) for Julia. + [ "$CARCH" != "s390x" ] && _enable_jit="--enable-jit" ./configure \ CFLAGS="$CFLAGS -O3" \ --build=$CBUILD \ @@ -28,11 +29,10 @@ build() { --htmldir=/usr/share/doc/$pkgname-$pkgver/html \ --enable-pcre2-16 \ --enable-pcre2-32 \ - --enable-jit \ --enable-pcre2grep-libz \ --enable-pcre2test-libedit \ --with-match-limit-recursion=8192 \ - || return 1 + $_enable_jit make } -- 2.12.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---