aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2015-02-08 18:31:20 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2015-02-08 18:31:20 +0100
commit30a6af515d04af106853b42216c7c9c945787502 (patch)
treee634ab4fc6718cc77cf429da8164ec62071f2b74
parentf3c5bad8589ea6b7f99929c0dba133a19595ac9d (diff)
downloadponymap-30a6af515d04af106853b42216c7c9c945787502.tar.gz
ponymap-30a6af515d04af106853b42216c7c9c945787502.tar.xz
ponymap-30a6af515d04af106853b42216c7c9c945787502.zip
Make sure to link with libcrypto
Archlinux seems to have removed -lcrypto from libssl.pc.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9cb75f8..2dda7cf 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -23,7 +23,7 @@ set (project_VERSION "${project_VERSION}.${project_VERSION_PATCH}")
find_package (Curses)
find_package (PkgConfig REQUIRED)
pkg_check_modules (jansson REQUIRED jansson)
-pkg_check_modules (libssl REQUIRED libssl)
+pkg_check_modules (libssl REQUIRED libssl libcrypto)
pkg_check_modules (ncursesw ncursesw)
if (ncursesw_FOUND)