mirror of
https://github.com/openwrt/telephony.git
synced 2025-12-21 21:24:35 +04:00
20 lines
730 B
Diff
20 lines
730 B
Diff
--- kamailio4-4.0.1/modules/json/Makefile 2013-04-25 16:56:29.000000000 +0200
|
|
+++ kamailio4-next/modules/json/Makefile 2013-05-31 10:54:42.125995025 +0200
|
|
@@ -11,12 +11,12 @@ LIBS=
|
|
|
|
BUILDER = $(shell which pkg-config)
|
|
ifeq ($(BUILDER),)
|
|
- DEFS+=-I/usr/include/json -I$(LOCALBASE)/include/json \
|
|
+ DEFS+=-I/usr/include/json-c -I$(LOCALBASE)/include/json-c \
|
|
-I$(LOCALBASE)/include
|
|
- LIBS+=-L$(SYSBASE)/include/lib -L$(LOCALBASE)/lib -ljson
|
|
+ LIBS+=-L$(SYSBASE)/include/lib -L$(LOCALBASE)/lib -ljson-c
|
|
else
|
|
- DEFS+= $(shell pkg-config --cflags json)
|
|
- LIBS+= $(shell pkg-config --libs json)
|
|
+ DEFS+= $(shell pkg-config --cflags json-c)
|
|
+ LIBS+= $(shell pkg-config --libs json-c)
|
|
endif
|
|
DEFS+=-DKAMAILIO_MOD_INTERFACE
|
|
|