diff options
author | Eugene Sandulenko | 2019-09-17 08:34:54 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-17 08:35:52 +0200 |
commit | 74d6531b9aba8e6df85e61bc04de562ca3971f2b (patch) | |
tree | a674973d6f0074976429bc33d09ef631606caee2 /configure | |
parent | f7b860cf12b99b644c0e3cb8d07b5845cdd76cb4 (diff) | |
download | scummvm-rg350-74d6531b9aba8e6df85e61bc04de562ca3971f2b.tar.gz scummvm-rg350-74d6531b9aba8e6df85e61bc04de562ca3971f2b.tar.bz2 scummvm-rg350-74d6531b9aba8e6df85e61bc04de562ca3971f2b.zip |
CONFIGURE: Fix libcurl detection for macOS
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -4730,6 +4730,10 @@ if test "$_libcurl" != "no"; then amigaos*) append_var LIBCURL_LIBS "-lpthread" ;; + # macOS does not allow static libs, overriding + darwin*) + LIBCURL_LIBS=`$_libcurlconfig --libs` + ;; psp2*) append_var LIBCURL_LIBS "-lssl -lcrypto" ;; |