summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 9181231372..407ffec572 100644
--- a/wscript
+++ b/wscript
@@ -568,9 +568,9 @@ def configure(conf):
# finding curl can be tricky
#
if Options.options.also_libdir != '':
- curl_linkflags = "-L" + Options.options.also_libdir + " -lcurl -lssl"
+ curl_linkflags = "-L" + Options.options.also_libdir + " -lcurl -lssl -lcrypto"
else:
- curl_linkflags = "-lcurl -lssl"
+ curl_linkflags = "-lcurl -lssl -lcrypto"
conf.check_cc(function_name='curl_global_init', header_name='curl/curl.h', linkflags=curl_linkflags, uselib_store='CURL')
# Tell everyone that this is a waf build