diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-08 18:31:20 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-08 18:31:20 +0100 |
commit | 30a6af515d04af106853b42216c7c9c945787502 (patch) | |
tree | e634ab4fc6718cc77cf429da8164ec62071f2b74 | |
parent | f3c5bad8589ea6b7f99929c0dba133a19595ac9d (diff) | |
download | ponymap-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.txt | 2 |
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) |