aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJaromir Wysoglad2019-10-03 21:32:20 +0200
committerJaromir Wysoglad2019-10-03 21:32:20 +0200
commit09b1f9d6c1ddae7ed648fb09fb7f81f72c7a0c66 (patch)
treef1530227c6d7e7e7c4fb79865676163f51acf976 /configure
parente4c3c690902e546f2a093815cfe2ae6ec19e6c67 (diff)
downloadscummvm-rg350-09b1f9d6c1ddae7ed648fb09fb7f81f72c7a0c66.tar.gz
scummvm-rg350-09b1f9d6c1ddae7ed648fb09fb7f81f72c7a0c66.tar.bz2
scummvm-rg350-09b1f9d6c1ddae7ed648fb09fb7f81f72c7a0c66.zip
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.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 0 insertions, 12 deletions
diff --git a/configure b/configure
index aa1f446e3a..52d9c26016 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>