summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2017-09-05 14:36:18 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2017-09-08 17:06:35 +0200
commit21088b301387bf3239fc8799176e2a51c392ebe8 (patch)
tree1d08e7addeec3d86938084c0152b82a82627d795
parentcae05d92f74d46db4cfc19d918a8ad87d19f5dc2 (diff)
meson: Don't build the igt audio test without gsl available.
Signed-off-by: Eric Anholt <eric@anholt.net> Acked-by: Jani Nikula <jani.nikula@intel.com> Acked-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Acked-by: Petri Latvala <petri.latvala@intel.com> Acked-by: Daniel Stone <daniels@collabora.com> Acked-by: Radoslaw Szwichtenberg <radoslaw.szwichtenberg@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--tests/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 73833758..4dd5a9c9 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -248,7 +248,7 @@ if libdrm_amdgpu.found()
test_deps += libdrm_amdgpu
endif
-if alsa.found()
+if alsa.found() and gsl.found()
test_progs += [
'audio',
]