summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2019-12-06 14:32:55 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-09 10:23:32 +0000
commit126efdad243e1a3bead5b695df6656e94353dd46 (patch)
treebdb6e6cea2aae00273b5e3131438019c571decac
parent3a0e85adc11481e0bcf21d8f38f8af8e92f3adfc (diff)
wayland: Disable DTD validation on i686 MinGW3.1_M1
DTD validation can't be built for i686 MinGW because the assembly file used to encode the DTD string is incompatible (it works fine for x86_64 MinGW though). Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
-rw-r--r--recipes-graphics/wayland/wayland_%.bbappend4
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-graphics/wayland/wayland_%.bbappend b/recipes-graphics/wayland/wayland_%.bbappend
index 3713f2d..bbb1c52 100644
--- a/recipes-graphics/wayland/wayland_%.bbappend
+++ b/recipes-graphics/wayland/wayland_%.bbappend
@@ -1,2 +1,6 @@
+# The assembly file that encodes the DTD string into wayland-scanner is not
+# compatible with i686 MinGW
+PACKAGECONFIG_remove_mingw32_i686 = "dtd-validation"
+
EXTRA_OECONF_class-nativesdk_mingw32 = "--disable-documentation --disable-libraries"