1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# From abb91b315f407b7e180bc00eb96f1cd6bb0ab25d Mon Sep 17 00:00:00 2001
# From: Gilles Dartiguelongue <eva@gentoo.org>
# Date: Thu, 7 Jun 2018 23:47:48 +0200
# Subject: [PATCH] Make gst-inspect calls optional at build-time
#
# Crashes on Gentoo due to plugins trying to access dri nodes which are sandboxed
--- a/meson_options.txt 2024-10-22 13:04:07.000000000 -0300
+++ b/meson_options.txt 2024-10-24 12:18:11.291930982 -0300
@@ -6,4 +6,5 @@
option('enable-gtk-doc', type: 'boolean', value: false, description: 'use gtk-doc to build documentation')
option('profile', type: 'combo', choices: ['default', 'development'], value: 'default', description: 'Build profiles')
option('inspector-page', type:'boolean', value: false, description: 'Whether to build the optional GTK inspector page')
+option('gst-inspect', type: 'boolean', value: true, description: 'build-time test of available gstreamer plugins')
option('ui-tests', type:'boolean', value: true, description: 'Whether to run tests that require a display')
--- a/src/backend/meson.build 2024-10-22 13:04:07.000000000 -0300
+++ b/src/backend/meson.build 2024-10-24 12:25:43.591062855 -0300
@@ -1,5 +1,6 @@
backend_inc = include_directories('.')
+if get_option('gst-inspect')
gst_inspect = find_program(
'gst-inspect-1.0',
join_paths(gst_dep.get_pkgconfig_variable('toolsdir'), 'gst-inspect-1.0'),
@@ -32,6 +33,7 @@
assert(r.returncode() == 0,
'Cannot find required GStreamer-1.0 plugin "' + plugin + '". It should be part of gst-plugins-good. Please install it.')
endforeach
+endif
sources = files(
'bacon-time-label.c',
|