Browse Source

auc: link to libdl when needed

Fixes compilation under glibc.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
lilik-openwrt-22.03
Rosen Penev 4 years ago
parent
commit
67ac784f75
No known key found for this signature in database GPG Key ID: 36D31CFA845F0E3B
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      utils/auc/Makefile
  2. +1
    -1
      utils/auc/src/CMakeLists.txt

+ 1
- 1
utils/auc/Makefile View File

@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=auc
PKG_VERSION:=0.1.4
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_LICENSE:=GPL-3.0
include $(INCLUDE_DIR)/package.mk


+ 1
- 1
utils/auc/src/CMakeLists.txt View File

@ -8,5 +8,5 @@ SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
find_library(json NAMES json-c json)
ADD_EXECUTABLE(auc auc.c)
TARGET_LINK_LIBRARIES(auc uci ubox ubus uclient blobmsg_json ${json})
TARGET_LINK_LIBRARIES(auc uci ubox ubus uclient blobmsg_json ${json} ${CMAKE_DL_LIBS})
INSTALL(TARGETS auc RUNTIME DESTINATION sbin)

Loading…
Cancel
Save