try to use --also-libdir to try to find curl, part 3
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 4 May 2012 02:49:12 +0000 (02:49 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 4 May 2012 02:49:12 +0000 (02:49 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@12173 d708f5d6-7413-0410-9779-e7cbd77b26cf

wscript

diff --git a/wscript b/wscript
index 91812313728a938b0791a17163834a0c907fc048..407ffec57228c3b65c34c661b12673a447fe8eaf 100644 (file)
--- 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