[Scummvm-git-logs] scummvm master -> cb08e26467b6003b44591112c724c0c12fcfbd0e
sev-
sev at scummvm.org
Sat Sep 10 23:12:12 CEST 2016
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
cb08e26467 CONFIGURE: Better handling Amiga libcurl exception
Commit: cb08e26467b6003b44591112c724c0c12fcfbd0e
https://github.com/scummvm/scummvm/commit/cb08e26467b6003b44591112c724c0c12fcfbd0e
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-09-10T23:11:40+02:00
Commit Message:
CONFIGURE: Better handling Amiga libcurl exception
Changed paths:
configure
diff --git a/configure b/configure
index 36a0af9..7ac99d4 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
More information about the Scummvm-git-logs
mailing list