From 96ced6699d319cb247775c18d6a869810ad18ac7 Mon Sep 17 00:00:00 2001 From: Fabian Freyer Date: Tue, 26 Aug 2014 21:12:23 +0200 Subject: [PATCH] Added -lcrypto as needed in #32 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a04993f..2a3abf7 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AS_CASE([$host_os], [PLATFORM="nix"]) PKG_CHECK_MODULES([openssl], [openssl], [], - [AC_CHECK_HEADER(openssl/ssl.h, [openssl_LIBS="-lssl"], [AC_MSG_ERROR([openssl not found; openssl required])])]) + [AC_CHECK_HEADER(openssl/ssl.h, [openssl_LIBS="-lssl -lcrypto"], [AC_MSG_ERROR([openssl not found; openssl required])])]) PKG_CHECK_MODULES([check], [check >= 0.9.4], [], [AC_MSG_WARN([libcheck not found; unit tests will not be compilable])])