From 34fec03ed659cb93f345cf0d1bf01901890b0576 Mon Sep 17 00:00:00 2001 From: "Anthony J. Bentley" Date: Sat, 21 Mar 2015 23:59:43 +0000 Subject: The json library used for tests has changed name. Closes #2191 --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 87cdbf7..5d88438 100644 --- a/Makefile +++ b/Makefile @@ -47,12 +47,12 @@ ifeq ($(WANT_TEST),yes) # We require the presence of libjson -- http://oss.metaparadigm.com/json-c/ ifneq ($(PKGCONFIG),) TESTCFLAGS := $(TESTCFLAGS) \ - $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --cflags json) + $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --cflags json-c) TESTLDFLAGS := $(TESTLDFLAGS) \ - $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --libs json) + $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --libs json-c) else - TESTCFLAGS := $(TESTCFLAGS) -I$(PREFIX)/include/json - TESTLDFLAGS := $(TESTLDFLAGS) -ljson + TESTCFLAGS := $(TESTCFLAGS) -I$(PREFIX)/include/json-c + TESTLDFLAGS := $(TESTLDFLAGS) -ljson-c endif ifneq ($(GCCVER),2) -- cgit v1.2.1