summaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorarnej27959 <arnej@yahoo-inc.com>2016-06-28 14:39:56 +0200
committerarnej27959 <arnej@yahoo-inc.com>2016-06-28 14:39:56 +0200
commit4c16d716f9ec72a0af95d293cf954bb3829acefa (patch)
treed3dd0976139f71886d67c24b59b2d8da3701ab83 /fastos
parent41686e96180155a6fd747453616c628720505456 (diff)
link with libraries used
* fastos uses dlopen(), link with -ldl if needed * fsamanagers uses pthread functions, link with thread library * searchsummary uses compress(), link with zlib
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/fastos/src/vespa/fastos/CMakeLists.txt b/fastos/src/vespa/fastos/CMakeLists.txt
index 782c704624f..5e5eb6cf139 100644
--- a/fastos/src/vespa/fastos/CMakeLists.txt
+++ b/fastos/src/vespa/fastos/CMakeLists.txt
@@ -24,6 +24,7 @@ vespa_add_library(fastos
vtag.cpp
INSTALL lib64
DEPENDS
+ ${CMAKE_DL_LIBS}
)
find_package(Threads REQUIRED)
target_link_libraries(fastos PUBLIC ${CMAKE_THREAD_LIBS_INIT})