[Scummvm-git-logs] scummvm master -> 09b1f9d6c1ddae7ed648fb09fb7f81f72c7a0c66
vyzigold
smulumas at gmail.com
Thu Oct 3 21:49:22 CEST 2019
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:
09b1f9d6c1 CONFIGURE: Disable TTS building on MinGW by default
Commit: 09b1f9d6c1ddae7ed648fb09fb7f81f72c7a0c66
https://github.com/scummvm/scummvm/commit/09b1f9d6c1ddae7ed648fb09fb7f81f72c7a0c66
Author: Jaromir Wysoglad (jaromirwysoglad at gmail.com)
Date: 2019-10-03T21:32:20+02:00
Commit Message:
CONFIGURE: Disable TTS building on MinGW by default
TTS shouldn't be built under MinGW by default, because it causes
a warning at the end of the build. Before this it would still build
TTS on MinGW64.
Changed paths:
configure
diff --git a/configure b/configure
index aa1f446..52d9c26 100755
--- a/configure
+++ b/configure
@@ -4230,18 +4230,6 @@ echocheck "TTS libraries"
if test "$_tts" = auto ; then
_tts=no
case $_host_os in
- mingw*)
- cat > $TMPC << EOF
-#include <windows.h>
-#include <Servprov.h>
-#include <sapi.h>
-int main(void) { return 0; }
-EOF
- cc_check -lsapi -lole32 && _tts=yes
- if test "$_host_os" = "mingw32" ; then
- _tts=no
- fi
- ;;
linux*)
cat > $TMPC << EOF
#include <speech-dispatcher/libspeechd.h>
More information about the Scummvm-git-logs
mailing list