Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] mesa3d: fix khrplatform.h installation.
@ 2014-04-09 12:54 Eric Le Bihan
  2014-04-12 14:10 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Le Bihan @ 2014-04-09 12:54 UTC (permalink / raw)
  To: buildroot

Mesa3D only installs khrplatform.h if EGL support is enabled, whereas
this header file is needed by the headers of OpenGL|ES and OpenVG.

The supplied patch forces Mesa3D to install this header unconditionally.

Fixes http://autobuild.buildroot.net/results/e07/e079219d70830a123977c3ee09d3c11b863d0691

Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
---
 ...atform.h-not-installed-if-EGL-is-disabled.patch | 44 ++++++++++++++++++++++
 package/mesa3d/mesa3d.mk                           |  1 +
 2 files changed, 45 insertions(+)
 create mode 100644 package/mesa3d/mesa3d-0001-Fix-khrplatform.h-not-installed-if-EGL-is-disabled.patch

diff --git a/package/mesa3d/mesa3d-0001-Fix-khrplatform.h-not-installed-if-EGL-is-disabled.patch b/package/mesa3d/mesa3d-0001-Fix-khrplatform.h-not-installed-if-EGL-is-disabled.patch
new file mode 100644
index 0000000..79df1ce
--- /dev/null
+++ b/package/mesa3d/mesa3d-0001-Fix-khrplatform.h-not-installed-if-EGL-is-disabled.patch
@@ -0,0 +1,44 @@
+From 83a1afd73f2d0aff9aa11c1754d6d407983afa7d Mon Sep 17 00:00:00 2001
+From: Eric Le Bihan <eric.le.bihan.dev@free.fr>
+Date: Wed, 9 Apr 2014 12:48:36 +0200
+Subject: [PATCH] Fix khrplatform.h not installed if EGL is disabled.
+
+KHR/khrplatform.h is required by the EGL, GLES and VG headers, but is
+only installed if Mesa3d is compiled with EGL support.
+
+This patch installs this header file unconditionally.
+
+Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
+---
+ src/egl/main/Makefile.am | 3 ---
+ src/mapi/Makefile.am     | 3 +++
+ 2 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/src/egl/main/Makefile.am b/src/egl/main/Makefile.am
+index 60cb600..1cd5cd2 100644
+--- a/src/egl/main/Makefile.am
++++ b/src/egl/main/Makefile.am
+@@ -126,9 +126,6 @@ pkgconfigdir = $(libdir)/pkgconfig
+ 
+ pkgconfig_DATA = egl.pc
+ 
+-khrdir = $(includedir)/KHR
+-khr_HEADERS = $(top_srcdir)/include/KHR/khrplatform.h
+-
+ egldir = $(includedir)/EGL
+ egl_HEADERS = \
+ 	$(top_srcdir)/include/EGL/eglext.h \
+diff --git a/src/mapi/Makefile.am b/src/mapi/Makefile.am
+index ef53803..2a8c555 100644
+--- a/src/mapi/Makefile.am
++++ b/src/mapi/Makefile.am
+@@ -40,3 +40,6 @@ endif
+ if HAVE_OPENVG
+ SUBDIRS += vgapi
+ endif
++
++khrdir = $(includedir)/KHR
++khr_HEADERS = $(top_srcdir)/include/KHR/khrplatform.h
+-- 
+1.9.1
+
diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk
index f40b2ee..1e2cc53 100644
--- a/package/mesa3d/mesa3d.mk
+++ b/package/mesa3d/mesa3d.mk
@@ -9,6 +9,7 @@ MESA3D_SOURCE = MesaLib-$(MESA3D_VERSION).tar.bz2
 MESA3D_SITE = ftp://ftp.freedesktop.org/pub/mesa/$(MESA3D_VERSION)
 MESA3D_LICENSE = MIT, SGI, Khronos
 MESA3D_LICENSE_FILES = docs/license.html
+MESA3D_AUTORECONF = YES
 
 MESA3D_INSTALL_STAGING = YES
 
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] mesa3d: fix khrplatform.h installation.
  2014-04-09 12:54 [Buildroot] [PATCH] mesa3d: fix khrplatform.h installation Eric Le Bihan
@ 2014-04-12 14:10 ` Thomas Petazzoni
  2014-04-14  8:43   ` Eric Le Bihan
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2014-04-12 14:10 UTC (permalink / raw)
  To: buildroot

Dear Eric Le Bihan,

On Wed,  9 Apr 2014 14:54:21 +0200, Eric Le Bihan wrote:
> Mesa3D only installs khrplatform.h if EGL support is enabled, whereas
> this header file is needed by the headers of OpenGL|ES and OpenVG.
> 
> The supplied patch forces Mesa3D to install this header unconditionally.
> 
> Fixes http://autobuild.buildroot.net/results/e07/e079219d70830a123977c3ee09d3c11b863d0691
> 
> Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
> ---
>  ...atform.h-not-installed-if-EGL-is-disabled.patch | 44 ++++++++++++++++++++++
>  package/mesa3d/mesa3d.mk                           |  1 +
>  2 files changed, 45 insertions(+)
>  create mode 100644 package/mesa3d/mesa3d-0001-Fix-khrplatform.h-not-installed-if-EGL-is-disabled.patch

I've applied the patch. However, I really would like this one to be
submitted upstream, to also get a confirmation that this is the correct
fix for the problem.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] mesa3d: fix khrplatform.h installation.
  2014-04-12 14:10 ` Thomas Petazzoni
@ 2014-04-14  8:43   ` Eric Le Bihan
  0 siblings, 0 replies; 3+ messages in thread
From: Eric Le Bihan @ 2014-04-14  8:43 UTC (permalink / raw)
  To: buildroot

Hi!

On Sat, Apr 12, 2014 at 04:10:19PM +0200, Thomas Petazzoni wrote:
> Dear Eric Le Bihan,
>
> On Wed,  9 Apr 2014 14:54:21 +0200, Eric Le Bihan wrote:
> > Mesa3D only installs khrplatform.h if EGL support is enabled, whereas
> > this header file is needed by the headers of OpenGL|ES and OpenVG.
> >
> > The supplied patch forces Mesa3D to install this header unconditionally.
> >
> > Fixes http://autobuild.buildroot.net/results/e07/e079219d70830a123977c3ee09d3c11b863d0691
> >
> > Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
> > ---
> >  ...atform.h-not-installed-if-EGL-is-disabled.patch | 44 ++++++++++++++++++++++
> >  package/mesa3d/mesa3d.mk                           |  1 +
> >  2 files changed, 45 insertions(+)
> >  create mode 100644 package/mesa3d/mesa3d-0001-Fix-khrplatform.h-not-installed-if-EGL-is-disabled.patch
>
> I've applied the patch. However, I really would like this one to be
> submitted upstream, to also get a confirmation that this is the correct
> fix for the problem.
Me too! I submitted the patch here:
https://bugs.freedesktop.org/show_bug.cgi?id=77240.

Best regards,
ELB

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-04-14  8:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-09 12:54 [Buildroot] [PATCH] mesa3d: fix khrplatform.h installation Eric Le Bihan
2014-04-12 14:10 ` Thomas Petazzoni
2014-04-14  8:43   ` Eric Le Bihan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox