summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2016-04-07 12:10:08 +0200
committerFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2016-04-07 10:14:13 +0000
commit1c6c55187ff041a36ef4420fb4997123e21582cf (patch)
tree5a64f68d52019eaef1f2e9eb4a5706d46e1a519d /tests
parentbf1ddea99376b2fb56b98aea3b16cf25ce9a6464 (diff)
Revert "Fix compilation on Debian"
Debian seems to have a packaging bug, or libspeechd is just buggy, whichever it is, the deb packages install the libspeechd.h header twice. That header has a "#include <libspeechd_version.h>" in some versions, but the version file is only to be found in the speech-dispatcher subdirectory. See for example https://packages.debian.org/sid/amd64/libspeechd-dev/filelist which seems to be the same in all versions I could find. This reverts commit 45a127b37ef743a4a6dade41e26bf582e96c7938. Change-Id: If51ec7b47020d50cb95582487d62375e7734ddc3 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/texttospeech/tst_qtexttospeech.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/texttospeech/tst_qtexttospeech.cpp b/tests/auto/texttospeech/tst_qtexttospeech.cpp
index 1109e01..afdecba 100644
--- a/tests/auto/texttospeech/tst_qtexttospeech.cpp
+++ b/tests/auto/texttospeech/tst_qtexttospeech.cpp
@@ -40,7 +40,7 @@
#include <QSignalSpy>
#if defined(Q_OS_UNIX) && !(defined(Q_OS_MAC) || defined(Q_OS_ANDROID))
- #include <libspeechd.h>
+ #include <speech-dispatcher/libspeechd.h>
#if LIBSPEECHD_MAJOR_VERSION > 0 || LIBSPEECHD_MINOR_VERSION >= 9
#define HAVE_SPD_090
#endif