From faa4d572c4b8db36c59e9321eb081483c6e65bd1 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 30 Dec 2024 22:53:02 +0100 Subject: [PATCH] meson: Also disable drm on GNU/Hurd Part-of: --- subprojects/gst-plugins-bad/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/meson.build b/subprojects/gst-plugins-bad/meson.build index 87c635f1de..80c969e893 100644 --- a/subprojects/gst-plugins-bad/meson.build +++ b/subprojects/gst-plugins-bad/meson.build @@ -399,7 +399,7 @@ if x11_dep.found() endif # Optional dep of msdk and va -if host_system not in ['darwin', 'ios', 'android', 'windows'] +if host_system not in ['darwin', 'ios', 'android', 'windows', 'gnu'] libdrm_dep = dependency('libdrm', version : '>=2.4.50', required : get_option('drm').enabled() or get_option('msdk').enabled(), )