aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Snover2017-12-18 17:36:42 -0600
committerThierry Crozat2019-08-04 22:12:29 +0100
commit4c16ecb47f3c91037c03fd4553d8b55dc0ebc426 (patch)
treecdde688020f8c1dbd25e69bef33a1faf3672f6bd
parent248b96c36bc38cf96f6b0117817db5c21fbefe1a (diff)
downloadscummvm-rg350-4c16ecb47f3c91037c03fd4553d8b55dc0ebc426.tar.gz
scummvm-rg350-4c16ecb47f3c91037c03fd4553d8b55dc0ebc426.tar.bz2
scummvm-rg350-4c16ecb47f3c91037c03fd4553d8b55dc0ebc426.zip
BUILD: Fix missing frameworks for iOS static builds
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index 958b4ad1f0..7885fa7c6c 100755
--- a/configure
+++ b/configure
@@ -4654,7 +4654,11 @@ if test "$_libcurl" != "no"; then
if test -z "$_libcurlconfig"; then
_libcurl=no
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`
case $_host_os in