summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch')
-rw-r--r--meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch b/meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch
deleted file mode 100644
index 3f9ebff33e..0000000000
--- a/meta/recipes-graphics/pango/pango/0001-Skip-thai-break-tests-without-libthai.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1Upstream-Status: Backport
2Signed-off-by: Ross Burton <ross.burton@intel.com>
3
4From 12beb39925b5a4574a7cfd86073b59bceb49f791 Mon Sep 17 00:00:00 2001
5From: Matthias Clasen <mclasen@redhat.com>
6Date: Wed, 4 Sep 2019 15:51:06 -0400
7Subject: [PATCH] Skip thai break tests without libthai
8
9If we don't have libthai, these tests fail.
10
11Closes: https://gitlab.gnome.org/GNOME/pango/issues/420
12---
13 tests/meson.build | 5 ++++-
14 1 file changed, 4 insertions(+), 1 deletion(-)
15
16diff --git a/tests/meson.build b/tests/meson.build
17index 4c22c12c..c617331f 100644
18--- a/tests/meson.build
19+++ b/tests/meson.build
20@@ -89,9 +89,12 @@ test_breaks_data = [
21 'breaks/one',
22 'breaks/two',
23 'breaks/three',
24- 'breaks/four',
25 ]
26
27+if thai_dep.found()
28+ test_breaks_data += [ 'breaks/four', ]
29+endif
30+
31 test_items_data = [
32 'itemize/one',
33 ]
34--
352.20.1
36