diff options
author | Jaromir Wysoglad | 2019-10-03 21:32:20 +0200 |
---|---|---|
committer | Jaromir Wysoglad | 2019-10-03 21:32:20 +0200 |
commit | 09b1f9d6c1ddae7ed648fb09fb7f81f72c7a0c66 (patch) | |
tree | f1530227c6d7e7e7c4fb79865676163f51acf976 /configure | |
parent | e4c3c690902e546f2a093815cfe2ae6ec19e6c67 (diff) | |
download | scummvm-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-x | configure | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -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> |