aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2013-10-25 17:28:13 +0200
committerMartin Willi <martin@revosec.ch>2014-06-04 15:53:02 +0200
commitb7a4d44bd035eea462b264482a8871a0e26e16ec (patch)
tree0ae5e83a4b25903d64afe3ae72f2a21300063998 /src
parentf3c809e615f0e8eb476efcc85a3c8cf2cbe3f7c3 (diff)
downloadstrongswan-b7a4d44bd035eea462b264482a8871a0e26e16ec.tar.bz2
strongswan-b7a4d44bd035eea462b264482a8871a0e26e16ec.tar.xz
openssl: Check and link against libeay32 instead of libcrypto on Windows
Most Windows OpenSSL builds come with the crypto library named libeay32.
Diffstat (limited to 'src')
-rw-r--r--src/libstrongswan/plugins/openssl/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/openssl/Makefile.am b/src/libstrongswan/plugins/openssl/Makefile.am
index a7ffefd82..9287f788a 100644
--- a/src/libstrongswan/plugins/openssl/Makefile.am
+++ b/src/libstrongswan/plugins/openssl/Makefile.am
@@ -32,4 +32,4 @@ libstrongswan_openssl_la_SOURCES = \
openssl_gcm.c openssl_gcm.h
libstrongswan_openssl_la_LDFLAGS = -module -avoid-version
-libstrongswan_openssl_la_LIBADD = -lcrypto
+libstrongswan_openssl_la_LIBADD = $(OPENSSL_LIB)