X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qt0-f174.google.com (mail-qt0-f174.google.com [209.85.216.174]) by lists.alpinelinux.org (Postfix) with ESMTP id B3BA55C48B2 for ; Wed, 12 Apr 2017 01:00:36 +0000 (GMT) Received: by mail-qt0-f174.google.com with SMTP id n46so11441941qta.2 for ; Tue, 11 Apr 2017 18:00:36 -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=JwrxhE37r85rrDGM9TgspLtyWEvc3SUEtuHqBTLvN1c=; b=APyhSZPQZGmKV/AoRdSgVscFEXkxXB9BnxIWdWaPyNqSVw5jZDEbrGJgDkt5HmRdaM IcQMF7M/4v6yaBwZmWnqN7GOc9/ALNNZG67a2tv29lL+zBeD2bQ6FqPf7lTWyp4B12A2 E5e6WnoCopZJ5LlNrlCMSoXQeK/P530Jhcrxs= 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=JwrxhE37r85rrDGM9TgspLtyWEvc3SUEtuHqBTLvN1c=; b=bHzFmEorsVyqxJNMCa9XhOhMr4rljFdgsnUjVNHZvbTRDErsdjZ9wlLGI+Ls6Bk04v 2kdxwk3u7tn9hmaeanzeIxc/rzGdykylOwujCr/tDC4GS85PbtXl6lUQjvuHtykALe4W dka+7zlurTmB1RpIlHHRv7CcOHkrNewbxd3dgUT48To7raD87EV9dszxNxXG1VaYFHpW TzA4z0lJTdxKBBYQxv2+casmUvtUvrbuDqkqRKbe745fRuQ2DoiLJJsiIJMK7nYkmXqD f97498mw6nSoirki0NK6jYcFdbP6Ilh17OtQnCQXJDOTJZGD4ZEPaXivsNJvKxgebg+4 Ldvw== X-Gm-Message-State: AN3rC/6+mI8VWnuyWnPZoaqRTPkCuacnZaAx7hq+jy6ciRHAwA33C0TzXzwFjv5qEmV8kQ== X-Received: by 10.237.42.29 with SMTP id c29mr12183429qtd.113.1491958836122; Tue, 11 Apr 2017 18:00:36 -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 f10sm1769340qkb.36.2017.04.11.18.00.34 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 11 Apr 2017 18:00:35 -0700 (PDT) From: "Tuan M. Hoang" To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 5/6] community/php7: disable jit on s390x Date: Tue, 11 Apr 2017 21:00:14 -0400 Message-Id: <1491958814-24542-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/php7/APKBUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/community/php7/APKBUILD b/community/php7/APKBUILD index 15aec60af4..62a8fa1e60 100644 --- a/community/php7/APKBUILD +++ b/community/php7/APKBUILD @@ -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 \ -- 2.12.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---