mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 17:16:38 +01:00
try to use --also-libdir to try to find curl, part 3
git-svn-id: svn://localhost/ardour2/branches/3.0@12173 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
ab642b9895
commit
24f286b8e4
1 changed files with 2 additions and 2 deletions
4
wscript
4
wscript
|
|
@ -568,9 +568,9 @@ def configure(conf):
|
||||||
# finding curl can be tricky
|
# finding curl can be tricky
|
||||||
#
|
#
|
||||||
if Options.options.also_libdir != '':
|
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:
|
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')
|
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
|
# Tell everyone that this is a waf build
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue