summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/files/0001-Makefile.vulkan.am-explictly-add-lib-expat-to-intel-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/mesa/files/0001-Makefile.vulkan.am-explictly-add-lib-expat-to-intel-.patch')
-rw-r--r--meta/recipes-graphics/mesa/files/0001-Makefile.vulkan.am-explictly-add-lib-expat-to-intel-.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/meta/recipes-graphics/mesa/files/0001-Makefile.vulkan.am-explictly-add-lib-expat-to-intel-.patch b/meta/recipes-graphics/mesa/files/0001-Makefile.vulkan.am-explictly-add-lib-expat-to-intel-.patch
deleted file mode 100644
index 3529f493e7..0000000000
--- a/meta/recipes-graphics/mesa/files/0001-Makefile.vulkan.am-explictly-add-lib-expat-to-intel-.patch
+++ /dev/null
@@ -1,46 +0,0 @@
1From b514366df767da9acf991567bbee3eaa0c4ddaa6 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Wed, 11 Oct 2017 15:40:42 +0800
4Subject: [PATCH 1/8] Makefile.vulkan.am: explictly add lib expat to intel
5 libvulkan's lib depends
6Organization: O.S. Systems Software LTDA.
7
8While built with "-fvisibility=default"
9...
10|i586-oe-linux-gcc ... -fvisibility=default ... -o common/.libs/common_libintel_common_la-gen_decoder.o
11...
12
13It triggered the failure
14...
15|i586-oe-linux-g++ ... common/.libs/libintel_common.a ... -o vulkan/.libs/libvulkan_intel.so
16|common/.libs/libintel_common.a(common_libintel_common_la-gen_decoder.o):
17|In function `start_element':
18|/usr/src/debug/mesa/2_17.1.7-r0/mesa-17.1.7/src/intel/common/gen_decoder.c:371:
19undefined reference to `XML_GetCurrentLineNumber'
20...
21
22explictly add EXPAT_LIBS to intel's VULKAN_LIB_DEPS
23
24Upstream-Status: Accepted
25https://cgit.freedesktop.org/mesa/mesa/commit/?id=05fc62d89f59ce19a18bfd4e63a09624910d6caf
26
27Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
28---
29 src/intel/Makefile.vulkan.am | 1 +
30 1 file changed, 1 insertion(+)
31
32diff --git a/src/intel/Makefile.vulkan.am b/src/intel/Makefile.vulkan.am
33index 4125cb205a..356c4f8452 100644
34--- a/src/intel/Makefile.vulkan.am
35+++ b/src/intel/Makefile.vulkan.am
36@@ -161,6 +161,7 @@ VULKAN_LIB_DEPS = \
37 $(LIBDRM_LIBS) \
38 $(PTHREAD_LIBS) \
39 $(DLOPEN_LIBS) \
40+ $(EXPAT_LIBS) \
41 -lm
42
43 if HAVE_PLATFORM_ANDROID
44--
452.18.0
46