summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-11-20 18:18:46 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-11-20 18:18:46 +0000
commit3face708593d3de417b93472b827d05a8a5813fb (patch)
tree5d256621c3119d5d60e0853a0a8eeafa8b27b962 /libs
parent1178a7b23104ab77db81acf9a9d8c535ade71c9a (diff)
libs/nixio: link with libcrypto when using OpenSSL as digest backend
Diffstat (limited to 'libs')
-rw-r--r--libs/nixio/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/nixio/Makefile b/libs/nixio/Makefile
index 42d366652..fd2e06afc 100644
--- a/libs/nixio/Makefile
+++ b/libs/nixio/Makefile
@@ -32,7 +32,7 @@ ifeq ($(NIXIO_TLS),axtls)
endif
ifeq ($(NIXIO_TLS),openssl)
- NIXIO_LDFLAGS += -lssl
+ NIXIO_LDFLAGS += -lssl -lcrypto
endif
ifeq ($(NIXIO_TLS),cyassl)