From d20a7db77425fab0c44e5bf307ba0061ddaf9faf Mon Sep 17 00:00:00 2001 From: Rolf Eike Beer Date: Wed, 29 Feb 2012 22:54:30 +0100 Subject: [PATCH] use CMAKE_DL_LIBS CMake provides a standard variable that holds the name of the library that contains dlopen(). Signed-off-by: Bas Pape --- src/common/CMakeLists.txt | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 710cfbcd..0e3e2a1c 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -90,16 +90,4 @@ if(APPLE) target_link_libraries(mod_common "-framework CoreServices" "-framework CoreFoundation") endif(APPLE) -if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") - set(FIND_LIBDL TRUE) -endif(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") -if(CMAKE_HOST_SYSTEM_NAME STREQUAL "kFreeBSD") - set(FIND_LIBDL TRUE) -endif(CMAKE_HOST_SYSTEM_NAME STREQUAL "kFreeBSD") - -if(FIND_LIBDL) - find_library(libdl dl) - if(NOT libdl MATCHES "NOTFOUND") - target_link_libraries(mod_common ${libdl}) - endif(NOT libdl MATCHES "NOTFOUND") -endif(FIND_LIBDL) +target_link_libraries(mod_common ${CMAKE_DL_LIBS}) -- 2.20.1