summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/libepoxy/libepoxy/no-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/libepoxy/libepoxy/no-tests.patch')
-rw-r--r--meta/recipes-graphics/libepoxy/libepoxy/no-tests.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-graphics/libepoxy/libepoxy/no-tests.patch b/meta/recipes-graphics/libepoxy/libepoxy/no-tests.patch
new file mode 100644
index 0000000000..d2b6c1a254
--- /dev/null
+++ b/meta/recipes-graphics/libepoxy/libepoxy/no-tests.patch
@@ -0,0 +1,33 @@
1Add option to disable tests.
2
3Upstream-Status: Submitted (https://github.com/anholt/libepoxy/pull/158)
4Signed-off-by: Ross Burton <ross.burton@intel.com>
5
6diff --git a/meson.build b/meson.build
7index b2ebaef..9632c7a 100644
8--- a/meson.build
9+++ b/meson.build
10@@ -242,7 +242,10 @@ libepoxy_inc = [
11
12 subdir('include/epoxy')
13 subdir('src')
14-subdir('test')
15+
16+if get_option('tests')
17+ subdir('test')
18+endif
19
20 if get_option('docs')
21 doxygen = find_program('doxygen', required: false)
22diff --git a/meson_options.txt b/meson_options.txt
23index b5d7c98..dc30e68 100644
24--- a/meson_options.txt
25+++ b/meson_options.txt
26@@ -15,3 +15,7 @@ option('x11',
27 type: 'boolean',
28 value: true,
29 description: 'Enable X11 support (GLX or EGL-X11)')
30+option('tests',
31+ type: 'boolean',
32+ value: true,
33+ description: 'Build the test suite')