From b8688d2960c998b60713deeff7df1603f7a8bd3e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Gst=C3=A4dtner?= Date: Sun, 3 Mar 2013 18:20:10 +0100 Subject: [PATCH 1/1] fix libnl detection --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2076fc9..f7e9a04 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,8 @@ SET(LIBS ubox ubus uci ${json} blobmsg_json) IF (NOT DEFINED LIBNL_LIBS) - SET(LIBNL_LIBS -lnl) + FIND_LIBRARY(libnl NAMES libnl-3 libnl nl-3 nl) + SET(LIBNL_LIBS ${libnl}) ENDIF() IF("${CMAKE_SYSTEM_NAME}" MATCHES "Linux" AND NOT DUMMY_MODE) -- 2.11.0