From a1cc0195abd91827d347449a52336d0031b48d52 Mon Sep 17 00:00:00 2001 From: Boris Pek Date: Mon, 2 May 2016 01:55:23 +0300 Subject: jsoncpp: fix build with GCC < 6.x Fix after 0bc73f739d7a8f2bc4e5100da62a0d894cbc9e38. There is no -Werror=shift-negative-value in GCC 4.9.x. --- src/jsoncpp.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jsoncpp.mk b/src/jsoncpp.mk index 532d20b..f7ef89a 100644 --- a/src/jsoncpp.mk +++ b/src/jsoncpp.mk @@ -11,7 +11,7 @@ $(PKG)_URL := https://github.com/open-source-parsers/jsoncpp/archive/$($(PK $(PKG)_DEPS := gcc # workaround for builds with GCC >= 6.x -$(PKG)_CXXFLAGS := -Wno-error=conversion -Wno-error=shift-negative-value +$(PKG)_CXXFLAGS := -Wno-error=conversion -Wno-shift-negative-value define $(PKG)_UPDATE $(WGET) -q -O- 'https://github.com/open-source-parsers/jsoncpp/archive/' | \ -- cgit v0.12