[Scummvm-cvs-logs] scummvm master -> 05bffc9832568d029582434ea13307e2364bc809
wjp
wjp at usecode.org
Sat Mar 5 15:01:19 CET 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:
05bffc9832 CONFIGURE: Error out when host-os is msys.
Commit: 05bffc9832568d029582434ea13307e2364bc809
https://github.com/scummvm/scummvm/commit/05bffc9832568d029582434ea13307e2364bc809
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2016-03-05T14:59:15+01:00
Commit Message:
CONFIGURE: Error out when host-os is msys.
The msys shell can be run in both msys and in mingw mode. We don't
support it when in msys mode, as this mode seems to be intended as a
cygwin-like compatibility layer, instead of for native Windows
applications.
Changed paths:
configure
diff --git a/configure b/configure
index 1af8c29..88b8456 100755
--- a/configure
+++ b/configure
@@ -2443,6 +2443,10 @@ case $_host_os in
mint*)
append_var DEFINES "-DSYSTEM_NOT_SUPPORTING_D_TYPE"
;;
+ msys)
+ echo ERROR: Using the MSYS shell in msys mode is not supported. Please use the MSYS shell in mingw mode instead.
+ exit 1
+ ;;
n64)
append_var DEFINES "-D__N64__"
append_var DEFINES "-DLIMIT_FPS"
More information about the Scummvm-git-logs
mailing list