diff options
Diffstat (limited to 'meta/recipes-graphics/libepoxy')
-rw-r--r-- | meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch | 30 | ||||
-rw-r--r-- | meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch b/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch new file mode 100644 index 0000000000..ebe5754a7a --- /dev/null +++ b/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From 62e178ddae24c7633d2a03b129dc52261e0a15bf Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 7 Feb 2018 00:48:03 -0800 | ||
4 | Subject: [PATCH] Define MESA_EGL_NO_X11_HEADERS before including eglplatform.h | ||
5 | when X11 is disabled | ||
6 | |||
7 | This helps in compiling when GL implementations e.g. mesa use | ||
8 | this define to exclude X11 headers | ||
9 | |||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | Upstream-Status: Submitted [https://github.com/anholt/libepoxy/pull/153] | ||
13 | |||
14 | src/dispatch_common.h | 3 +++ | ||
15 | 1 file changed, 3 insertions(+) | ||
16 | |||
17 | Index: libepoxy-1.4.3/src/dispatch_common.h | ||
18 | =================================================================== | ||
19 | --- libepoxy-1.4.3.orig/src/dispatch_common.h | ||
20 | +++ libepoxy-1.4.3/src/dispatch_common.h | ||
21 | @@ -46,6 +46,9 @@ | ||
22 | #include "epoxy/glx.h" | ||
23 | #endif | ||
24 | #if PLATFORM_HAS_EGL | ||
25 | +#if !PLATFORM_HAS_GLX | ||
26 | +#define MESA_EGL_NO_X11_HEADERS 1 | ||
27 | +#endif | ||
28 | #include "epoxy/egl.h" | ||
29 | #endif | ||
30 | #if PLATFORM_HAS_WGL | ||
diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb b/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb index 72167a2fb8..8a5cb8f49f 100644 --- a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb +++ b/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb | |||
@@ -8,6 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf464b" | |||
8 | SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/${BP}.tar.xz \ | 8 | SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/${BP}.tar.xz \ |
9 | file://Add-fallback-definition-for-EGL-CAST.patch \ | 9 | file://Add-fallback-definition-for-EGL-CAST.patch \ |
10 | file://0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch \ | 10 | file://0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch \ |
11 | file://0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch \ | ||
11 | " | 12 | " |
12 | SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed" | 13 | SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed" |
13 | SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8bc7fb2fda074478e329b063c1f872b826f6" | 14 | SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8bc7fb2fda074478e329b063c1f872b826f6" |