diff options
author | Eugene Sandulenko | 2016-09-10 23:08:09 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-09-10 23:08:09 +0200 |
commit | 7f373b4cfbd5769e1cbc696c2e302de3c568e722 (patch) | |
tree | b7103622eed36f0e4de3c13d4b68a1732e13f6d4 | |
parent | eb64843a3b73e7af1fb033eb8503d1d8c5e4477b (diff) | |
download | scummvm-rg350-7f373b4cfbd5769e1cbc696c2e302de3c568e722.tar.gz scummvm-rg350-7f373b4cfbd5769e1cbc696c2e302de3c568e722.tar.bz2 scummvm-rg350-7f373b4cfbd5769e1cbc696c2e302de3c568e722.zip |
CONFIGURE: AmigaOS requires -lpthread for libcurl
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -4179,6 +4179,10 @@ if test "$_libcurl" != "no"; then LIBCURL_LIBS=`$_libcurlconfig --libs` LIBCURL_CFLAGS=`$_libcurlconfig --cflags` + if test "$_host" = "amigaos"; then + append_var LIBCURL_LIBS "-lpthread" + fi + if test "$_libcurl" = "auto"; then _libcurl=no |