Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2013-06-07 00:17:31 +0400
committerMikkel Krautz <mikkel@krautz.dk>2013-06-07 00:18:27 +0400
commit22d18212acec9e97231a13a6dc02a0c451df9b89 (patch)
tree2ebd50903dee2c8a17e1a017ab9cbe8992c9c2f8 /src/mumble/TextToSpeech_unix.cpp
parenta436774b18c3268d580e8897d4d07bc17ed7640c (diff)
mumble.pro: add speech-dispatcher 0.8 compatibiltiy.
Based on initial patch by Timo Gurr <timo.gurr@gmail.com>
Diffstat (limited to 'src/mumble/TextToSpeech_unix.cpp')
-rw-r--r--src/mumble/TextToSpeech_unix.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mumble/TextToSpeech_unix.cpp b/src/mumble/TextToSpeech_unix.cpp
index d0fbb8276..6443c0702 100644
--- a/src/mumble/TextToSpeech_unix.cpp
+++ b/src/mumble/TextToSpeech_unix.cpp
@@ -33,7 +33,11 @@
#include "TextToSpeech.h"
#ifdef USE_SPEECHD
-#include <libspeechd.h>
+# ifdef USE_SPEECHD_PKGCONFIG
+# include <speech-dispatcher/libspeechd.h>
+# else
+# include <libspeechd.h>
+# endif
#endif
#include "Global.h"