X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx12.valuehost.ru (mx12.valuehost.ru [217.112.42.215]) by lists.alpinelinux.org (Postfix) with ESMTP id 2974C5C665F for ; Wed, 14 Nov 2018 00:12:01 +0000 (GMT) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx12.valuehost.ru (Postfix) with ESMTP id 8EAA2622B4 for ; Wed, 14 Nov 2018 03:12:00 +0300 (MSK) From: alpine-mips-patches Date: Tue, 13 Nov 2018 21:03:03 +0000 Subject: [alpine-aports] [PATCH] main/json-c0.12: fix build with gcc8 To: alpine-aports@lists.alpinelinux.org Message-Id: <20181114001200.8EAA2622B4@mx12.valuehost.ru> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/json-c0.12/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/json-c0.12/APKBUILD b/main/json-c0.12/APKBUILD index f3cc53b53b..2cf2388cfd 100644 --- a/main/json-c0.12/APKBUILD +++ b/main/json-c0.12/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=json-c0.12 pkgver=0.12.1 -pkgrel=1 +pkgrel=2 pkgdesc="A JSON implementation in C" url="https://github.com/json-c/json-c/wiki" arch="all" @@ -21,7 +21,7 @@ prepare() { build() { cd "$builddir" - export CFLAGS="${CFLAGS} -Wno-error=unused-but-set-variable" + export CFLAGS="${CFLAGS} -Wno-error=unused-but-set-variable -Wno-error=implicit-fallthrough" ./configure --prefix=/usr \ --build=$CBUILD \ --host=$CHOST \ -- 2.19.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---