summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-04 02:48:00 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-04 02:48:00 +0000
commitab642b9895e2fb09532b33a04ad6eb3d243e431e (patch)
tree37e8cf6fc51ad629cfd1b4f2b3c4bb9165d1b284 /wscript
parent56129b4b728edd39dd54467df68df2d2fd39c6c5 (diff)
try to use --also-libdir to try to find curl, part 2
git-svn-id: svn://localhost/ardour2/branches/3.0@12172 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 1626750757..9181231372 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"
+ curl_linkflags = "-L" + Options.options.also_libdir + " -lcurl -lssl"
else:
- curl_linkflags = "-lcurl"
+ curl_linkflags = "-lcurl -lssl"
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