summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-01-16 19:22:16 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-01-16 19:22:16 +0000
commitd09c38faf7d3b76de3633e43b747d38b5078eace (patch)
tree09a608ae013e4661306c36e115518053f143064a /tests
parent9297da71ce1838940ad4dd27b993cfd84070868c (diff)
meson: tests: fix build of tcp test on unix
Need to add gio-unix-2.0 dep to pipelines/tcp test otherwise it won't find the gio/gunixfdmessage.h header which is not in the same dir as the other gio headers. This issue was masked before because we didn't include config.h so HAVE_GIO_UNIX_2_0 wasn't defined.
Diffstat (limited to 'tests')
-rw-r--r--tests/check/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/meson.build b/tests/check/meson.build
index c3e93ef6c..ec459284f 100644
--- a/tests/check/meson.build
+++ b/tests/check/meson.build
@@ -62,7 +62,7 @@ base_tests = [
[ 'pipelines/oggmux.c', not ogg_dep.found(), [ ogg_dep, ] ],
[ 'pipelines/streamsynchronizer.c' ],
# FIXME: tcp test on windows/msvc
- [ 'pipelines/tcp.c', not core_conf.has('HAVE_SYS_SOCKET_H') or not core_conf.has('HAVE_UNISTD_H') ],
+ [ 'pipelines/tcp.c', not core_conf.has('HAVE_SYS_SOCKET_H') or not core_conf.has('HAVE_UNISTD_H'), [giounix_dep] ],
[ 'pipelines/theoraenc.c', not theoraenc_dep.found(), [ theoraenc_dep ] ],
[ 'pipelines/vorbisenc.c', not vorbisenc_dep.found() ],
[ 'pipelines/vorbisdec.c', not vorbisenc_dep.found(),],