diff options
author | Colin Snover | 2017-12-18 17:36:42 -0600 |
---|---|---|
committer | Thierry Crozat | 2019-08-04 22:12:29 +0100 |
commit | 4c16ecb47f3c91037c03fd4553d8b55dc0ebc426 (patch) | |
tree | cdde688020f8c1dbd25e69bef33a1faf3672f6bd /configure | |
parent | 248b96c36bc38cf96f6b0117817db5c21fbefe1a (diff) | |
download | scummvm-rg350-4c16ecb47f3c91037c03fd4553d8b55dc0ebc426.tar.gz scummvm-rg350-4c16ecb47f3c91037c03fd4553d8b55dc0ebc426.tar.bz2 scummvm-rg350-4c16ecb47f3c91037c03fd4553d8b55dc0ebc426.zip |
BUILD: Fix missing frameworks for iOS static builds
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |