diff options
-rw-r--r-- | CMakeLists.txt | 3 | ||||
-rw-r--r-- | handler.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e648b03..85527be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,9 +18,8 @@ SET(SOURCES macvlan.c ubus.c vlandev.c wireless.c) -find_library(json NAMES json-c json) SET(LIBS - ubox ubus uci ${json} blobmsg_json) + ubox ubus uci json-c blobmsg_json) IF (NOT DEFINED LIBNL_LIBS) FIND_LIBRARY(libnl NAMES libnl-3 libnl nl-3 nl) @@ -15,7 +15,7 @@ #define __NETIFD_HANDLER_H #include <libubox/blobmsg_json.h> -#include <json/json.h> +#include <json-c/json.h> #include "config.h" typedef void (*script_dump_cb)(const char *script, const char *name, json_object *obj); |