From d09c38faf7d3b76de3633e43b747d38b5078eace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 16 Jan 2018 19:22:16 +0000 Subject: [PATCH] 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. --- tests/check/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/meson.build b/tests/check/meson.build index c3e93ef6c0..ec459284fb 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(),],