From: Felix Fietkau Date: Tue, 12 Mar 2013 13:37:35 +0000 (+0100) Subject: detect the right library name for json-c X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=c9e849b50162fadb1ebaaedba7a743040c9f299f;p=project%2Fuhttpd.git detect the right library name for json-c Signed-off-by: Felix Fietkau --- diff --git a/CMakeLists.txt b/CMakeLists.txt index cd22fc7..ec45c52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,7 +69,8 @@ IF(UBUS_SUPPORT) SET(PLUGINS ${PLUGINS} uhttpd_ubus) ADD_DEFINITIONS(-DHAVE_UBUS) ADD_LIBRARY(uhttpd_ubus MODULE ubus.c) - TARGET_LINK_LIBRARIES(uhttpd_ubus ubus ubox blobmsg_json json) + FIND_LIBRARY(libjson NAMES json-c json) + TARGET_LINK_LIBRARIES(uhttpd_ubus ubus ubox blobmsg_json ${libjson}) ENDIF() IF(PLUGINS)