aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorEugene Sandulenko2016-09-10 23:11:40 +0200
committerEugene Sandulenko2016-09-10 23:11:40 +0200
commitcb08e26467b6003b44591112c724c0c12fcfbd0e (patch)
tree375415740b06ba5b881dc1bd5c7b44d8902c49b5 /configure
parent7f373b4cfbd5769e1cbc696c2e302de3c568e722 (diff)
downloadscummvm-rg350-cb08e26467b6003b44591112c724c0c12fcfbd0e.tar.gz
scummvm-rg350-cb08e26467b6003b44591112c724c0c12fcfbd0e.tar.bz2
scummvm-rg350-cb08e26467b6003b44591112c724c0c12fcfbd0e.zip
CONFIGURE: Better handling Amiga libcurl exception
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 5 insertions, 3 deletions
diff --git a/configure b/configure
index 36a0af9e4f..7ac99d4fef 100755
--- a/configure
+++ b/configure
@@ -4179,9 +4179,11 @@ if test "$_libcurl" != "no"; then
LIBCURL_LIBS=`$_libcurlconfig --libs`
LIBCURL_CFLAGS=`$_libcurlconfig --cflags`
- if test "$_host" = "amigaos"; then
- append_var LIBCURL_LIBS "-lpthread"
- fi
+ case $_host_os in
+ amigaos*)
+ append_var LIBCURL_LIBS "-lpthread"
+ ;;
+ esac
if test "$_libcurl" = "auto"; then
_libcurl=no