From 40707e3c5bc730ebc5780b1c545c5daeb3353a42 Mon Sep 17 00:00:00 2001 From: Kahrl Date: Thu, 15 Sep 2011 01:11:18 +0200 Subject: SQLite needs to be linked with -ldl on some Linux distros. --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9c3b0960a..c479b4e73 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -74,7 +74,7 @@ else() endif(APPLE) endif(BUILD_CLIENT) find_package(ZLIB REQUIRED) - set(PLATFORM_LIBS -lpthread) + set(PLATFORM_LIBS -lpthread ${CMAKE_DL_LIBS}) #set(CLIENT_PLATFORM_LIBS -lXxf86vm) # This way Xxf86vm is found on OpenBSD too find_library(XXF86VM_LIBRARY Xxf86vm) -- cgit v1.2.3