BUILD: Fix missing frameworks for iOS static builds
This commit is contained in:
parent
248b96c36b
commit
4c16ecb47f
1 changed files with 5 additions and 1 deletions
6
configure
vendored
6
configure
vendored
|
@ -4654,7 +4654,11 @@ if test "$_libcurl" != "no"; then
|
||||||
if test -z "$_libcurlconfig"; then
|
if test -z "$_libcurlconfig"; then
|
||||||
_libcurl=no
|
_libcurl=no
|
||||||
else
|
else
|
||||||
LIBCURL_LIBS=`$_libcurlconfig --libs`
|
if test -n "$_staticlibpath"; then
|
||||||
|
LIBCURL_LIBS=`$_libcurlconfig --static-libs`
|
||||||
|
else
|
||||||
|
LIBCURL_LIBS=`$_libcurlconfig --libs`
|
||||||
|
fi
|
||||||
LIBCURL_CFLAGS=`$_libcurlconfig --cflags`
|
LIBCURL_CFLAGS=`$_libcurlconfig --cflags`
|
||||||
|
|
||||||
case $_host_os in
|
case $_host_os in
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue