Skip to content

Commit

Permalink
cmake: add -lutil
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Gröber authored and ry committed Dec 23, 2010
1 parent d75c338 commit 1f7026e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cmake/libs.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ find_library(RT rt)
find_library(DL dl)
check_library_exists(socket socket "" HAVE_SOCKET_LIB)
check_library_exists(nsl gethostbyname "" HAVE_NSL_LIB)
check_library_exists(util openpty "" HAVE_UTIL_LIB)

if(RT)
set(extra_libs ${extra_libs} ${RT})
Expand All @@ -35,6 +36,10 @@ if(${HAVE_NSL_LIB})
set(extra_libs ${extra_libs} nsl)
endif()

if(HAVE_UTIL_LIB)
set(extra_libs ${extra_libs} util)
endif()

if(${OPENSSL_FOUND} MATCHES True)
add_definitions(-DHAVE_OPENSSL=1)
set(HAVE_OPENSSL True)
Expand Down

0 comments on commit 1f7026e

Please sign in to comment.