All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release
@ 2018-02-28 22:08 Francesco Giancane
  2018-02-28 22:10 ` Francesco Giancane
  2018-02-28 22:57 ` Peter Kjellerstedt
  0 siblings, 2 replies; 6+ messages in thread
From: Francesco Giancane @ 2018-02-28 22:08 UTC (permalink / raw)
  To: openembedded-core

libepoxy 1.4.3 did not compile successfully because of
implicit symbol definitions and link-time errors.
A new recipe with latest libepoxy release (1.5.0) which
successfully compiles is provided.

Patch to disable 'dlvsym' has also been forward-ported
to be applicable to version 1.5.0.
The patch 'Add-fallback-definition-for-EGL-CAST.patch' is
mainline now; thus it can be safely removed.
Also, the patch
0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
is no longer required since mainline fixed this too.

Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
---
 ..._EGL_NO_X11_HEADERS-before-including-eglp.patch | 30 --------------------
 ...sible-to-disable-the-use-of-dlvsym-needed.patch | 26 +++++++++--------
 .../Add-fallback-definition-for-EGL-CAST.patch     | 33 ----------------------
 .../{libepoxy_1.4.3.bb => libepoxy_1.5.0.bb}       | 10 +++----
 4 files changed, 18 insertions(+), 81 deletions(-)
 delete mode 100644 meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
 delete mode 100644 meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
 rename meta/recipes-graphics/libepoxy/{libepoxy_1.4.3.bb => libepoxy_1.5.0.bb} (61%)

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
deleted file mode 100644
index ebe5754a7a..0000000000
--- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 62e178ddae24c7633d2a03b129dc52261e0a15bf Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Wed, 7 Feb 2018 00:48:03 -0800
-Subject: [PATCH] Define MESA_EGL_NO_X11_HEADERS before including eglplatform.h
- when X11 is disabled
-
-This helps in compiling when GL implementations e.g. mesa use
-this define to exclude X11 headers
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-Upstream-Status: Submitted [https://github.com/anholt/libepoxy/pull/153]
-
- src/dispatch_common.h | 3 +++
- 1 file changed, 3 insertions(+)
-
-Index: libepoxy-1.4.3/src/dispatch_common.h
-===================================================================
---- libepoxy-1.4.3.orig/src/dispatch_common.h
-+++ libepoxy-1.4.3/src/dispatch_common.h
-@@ -46,6 +46,9 @@
- #include "epoxy/glx.h"
- #endif
- #if PLATFORM_HAS_EGL
-+#if !PLATFORM_HAS_GLX
-+#define MESA_EGL_NO_X11_HEADERS 1
-+#endif
- #include "epoxy/egl.h"
- #endif
- #if PLATFORM_HAS_WGL
diff --git a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
index c2a2fa3453..5bddc12033 100644
--- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
+++ b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
@@ -1,36 +1,38 @@
-From 7bcefd311cd696955376fe2c5298ec85e8f954ce Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin <alex.kanavin@gmail.com>
-Date: Wed, 15 Nov 2017 12:48:27 +0200
+From 9c964427656ef71210e2c5b48b279857806574e9 Mon Sep 17 00:00:00 2001
+From: Francesco Giancane <francescogiancane8@gmail.com>
+Date: Wed, 28 Feb 2018 21:32:24 +0100
 Subject: [PATCH] Make it possible to disable the use of dlvsym() (needed for
  musl)
 
-Upstream-Status: Pending
-Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
+Add a patch to work around absence of dlvsym() on musl
+(wasn't previously a problem as autotools weren't building tests by default)
 
+Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
+Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
 ---
  meson_options.txt | 3 +++
  test/meson.build  | 6 +++---
  2 files changed, 6 insertions(+), 3 deletions(-)
 
 diff --git a/meson_options.txt b/meson_options.txt
-index 244476a..071f0b6 100644
+index b5d7c98..aa849c2 100644
 --- a/meson_options.txt
 +++ b/meson_options.txt
 @@ -1,6 +1,9 @@
- option('enable-docs',
+ option('docs',
         type: 'boolean', value: false,
         description: 'Enable generating the Epoxy API reference (depends on Doxygen)')
 +option('has-dlvsym',
 +       type: 'boolean', value: true,
 +       description: 'Whether dlvsym() is available (it is not when using musl C library)')
- option('enable-glx',
+ option('glx',
         type: 'combo',
         choices: [ 'auto', 'yes', 'no' ],
 diff --git a/test/meson.build b/test/meson.build
-index 2340fc6..bc4330b 100644
+index c5788b4..4c46ae6 100644
 --- a/test/meson.build
 +++ b/test/meson.build
-@@ -86,8 +86,8 @@ if build_glx
+@@ -92,8 +92,8 @@ if build_glx
      [ 'glx_has_extension_nocontext', [ 'glx_has_extension_nocontext.c' ], [], [], true ],
      [ 'glx_static', [ 'glx_static.c' ], [ '-DNEEDS_TO_BE_STATIC'], [ '-static' ], libtype == 'static' ],
      [ 'glx_shared_znow', [ 'glx_static.c', ], [], [ '-Wl,-z,now' ], has_znow ],
@@ -41,7 +43,7 @@ index 2340fc6..bc4330b 100644
    ]
  
    foreach test: glx_tests
-@@ -108,7 +108,7 @@ if build_glx
+@@ -114,7 +114,7 @@ if build_glx
      endif
    endforeach
  
@@ -51,5 +53,5 @@ index 2340fc6..bc4330b 100644
      if build_egl
        glx_egl_sources = [
 -- 
-2.15.0
+2.14.3
 
diff --git a/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch b/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
deleted file mode 100644
index b9297257dc..0000000000
--- a/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Add fallback definition for EGL_CAST
-
-The EGL API update from d11104f introduced a dependency on the
-EGL_CAST() macro, provided by an updated eglplatform.h. Given that we
-don't provide eglplatform.h, add a fallback definition for if we're
-building against Mesa 17.0.x or similar.
-
-https://bugs.gentoo.org/show_bug.cgi?id=623926
-
-Upstream-Status: Backport [https://github.com/anholt/libepoxy/commit/ebe3a53db1c0bb34e1ca963b95d1f222115f93f8]
-
-Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
-
-Index: libepoxy-1.4.3/src/gen_dispatch.py
-===================================================================
---- libepoxy-1.4.3.orig/src/gen_dispatch.py	2017-06-06 04:24:13.000000000 -0500
-+++ libepoxy-1.4.3/src/gen_dispatch.py	2017-11-06 12:45:43.594966473 -0600
-@@ -491,6 +491,15 @@
-             self.outln('#include "epoxy/gl.h"')
-             if self.target == "egl":
-                 self.outln('#include "EGL/eglplatform.h"')
-+                # Account for older eglplatform.h, which doesn't define
-+                # the EGL_CAST macro.
-+                self.outln('#ifndef EGL_CAST')
-+                self.outln('#if defined(__cplusplus)')
-+                self.outln('#define EGL_CAST(type, value) (static_cast<type>(value))')
-+                self.outln('#else')
-+                self.outln('#define EGL_CAST(type, value) ((type) (value))')
-+                self.outln('#endif')
-+                self.outln('#endif')
-         else:
-             # Add some ridiculous inttypes.h redefinitions that are
-             # from khrplatform.h and not included in the XML.  We
diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
similarity index 61%
rename from meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
rename to meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
index 8a5cb8f49f..dfdd19248d 100644
--- a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
+++ b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
@@ -6,12 +6,10 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf464b"
 
 SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/${BP}.tar.xz \
-           file://Add-fallback-definition-for-EGL-CAST.patch \
            file://0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch \
-           file://0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch \
            "
-SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed"
-SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8bc7fb2fda074478e329b063c1f872b826f6"
+SRC_URI[md5sum] = "63fe3847789258254dcd7e3fdb9e7f5e"
+SRC_URI[sha256sum] = "4c94995398a6ebf691600dda2e9685a0cac261414175c2adf4645cdfab42a5d5"
 UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases"
 
 inherit meson pkgconfig distro_features_check
@@ -20,8 +18,8 @@ REQUIRED_DISTRO_FEATURES = "opengl"
 
 DEPENDS = "util-macros"
 
-PACKAGECONFIG[egl] = "-Denable-egl=yes, -Denable-egl=no, virtual/egl"
-PACKAGECONFIG[x11] = "-Denable-glx=yes, -Denable-glx=no, virtual/libx11"
+PACKAGECONFIG[egl] = "-Degl=yes, -Degl=no, virtual/egl"
+PACKAGECONFIG[x11] = "-Dglx=yes, -Dglx=no, virtual/libx11 virtual/libgl"
 PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} egl"
 
 EXTRA_OEMESON_append_libc-musl = " -Dhas-dlvsym=false "
-- 
2.14.3



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

* Re: [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release
  2018-02-28 22:08 [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release Francesco Giancane
@ 2018-02-28 22:10 ` Francesco Giancane
  2018-02-28 22:57 ` Peter Kjellerstedt
  1 sibling, 0 replies; 6+ messages in thread
From: Francesco Giancane @ 2018-02-28 22:10 UTC (permalink / raw)
  To: OE-core

[-- Attachment #1: Type: text/plain, Size: 10154 bytes --]

Hi,

Sorry again. The patch was based on openembedded-core rather than poky, and
this is why the patchwork failed to apply it.
This should be the last one.

Thanks for the patience,

Francesco Giancane


2018-02-28 23:08 GMT+01:00 Francesco Giancane <francescogiancane8@gmail.com>
:

> libepoxy 1.4.3 did not compile successfully because of
> implicit symbol definitions and link-time errors.
> A new recipe with latest libepoxy release (1.5.0) which
> successfully compiles is provided.
>
> Patch to disable 'dlvsym' has also been forward-ported
> to be applicable to version 1.5.0.
> The patch 'Add-fallback-definition-for-EGL-CAST.patch' is
> mainline now; thus it can be safely removed.
> Also, the patch
> 0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
> is no longer required since mainline fixed this too.
>
> Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
> ---
>  ..._EGL_NO_X11_HEADERS-before-including-eglp.patch | 30
> --------------------
>  ...sible-to-disable-the-use-of-dlvsym-needed.patch | 26 +++++++++--------
>  .../Add-fallback-definition-for-EGL-CAST.patch     | 33
> ----------------------
>  .../{libepoxy_1.4.3.bb => libepoxy_1.5.0.bb}       | 10 +++----
>  4 files changed, 18 insertions(+), 81 deletions(-)
>  delete mode 100644 meta/recipes-graphics/libepoxy/libepoxy/0001-Define-
> MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
>  delete mode 100644 meta/recipes-graphics/libepoxy/libepoxy/Add-
> fallback-definition-for-EGL-CAST.patch
>  rename meta/recipes-graphics/libepoxy/{libepoxy_1.4.3.bb =>
> libepoxy_1.5.0.bb} (61%)
>
> 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
> deleted file mode 100644
> index ebe5754a7a..0000000000
> --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-
> MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
> +++ /dev/null
> @@ -1,30 +0,0 @@
> -From 62e178ddae24c7633d2a03b129dc52261e0a15bf Mon Sep 17 00:00:00 2001
> -From: Khem Raj <raj.khem@gmail.com>
> -Date: Wed, 7 Feb 2018 00:48:03 -0800
> -Subject: [PATCH] Define MESA_EGL_NO_X11_HEADERS before including
> eglplatform.h
> - when X11 is disabled
> -
> -This helps in compiling when GL implementations e.g. mesa use
> -this define to exclude X11 headers
> -
> -Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ----
> -Upstream-Status: Submitted [https://github.com/anholt/libepoxy/pull/153]
> -
> - src/dispatch_common.h | 3 +++
> - 1 file changed, 3 insertions(+)
> -
> -Index: libepoxy-1.4.3/src/dispatch_common.h
> -===================================================================
> ---- libepoxy-1.4.3.orig/src/dispatch_common.h
> -+++ libepoxy-1.4.3/src/dispatch_common.h
> -@@ -46,6 +46,9 @@
> - #include "epoxy/glx.h"
> - #endif
> - #if PLATFORM_HAS_EGL
> -+#if !PLATFORM_HAS_GLX
> -+#define MESA_EGL_NO_X11_HEADERS 1
> -+#endif
> - #include "epoxy/egl.h"
> - #endif
> - #if PLATFORM_HAS_WGL
> diff --git a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-
> it-possible-to-disable-the-use-of-dlvsym-needed.patch
> b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-
> it-possible-to-disable-the-use-of-dlvsym-needed.patch
> index c2a2fa3453..5bddc12033 100644
> --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-
> it-possible-to-disable-the-use-of-dlvsym-needed.patch
> +++ b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-
> it-possible-to-disable-the-use-of-dlvsym-needed.patch
> @@ -1,36 +1,38 @@
> -From 7bcefd311cd696955376fe2c5298ec85e8f954ce Mon Sep 17 00:00:00 2001
> -From: Alexander Kanavin <alex.kanavin@gmail.com>
> -Date: Wed, 15 Nov 2017 12:48:27 +0200
> +From 9c964427656ef71210e2c5b48b279857806574e9 Mon Sep 17 00:00:00 2001
> +From: Francesco Giancane <francescogiancane8@gmail.com>
> +Date: Wed, 28 Feb 2018 21:32:24 +0100
>  Subject: [PATCH] Make it possible to disable the use of dlvsym() (needed
> for
>   musl)
>
> -Upstream-Status: Pending
> -Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> +Add a patch to work around absence of dlvsym() on musl
> +(wasn't previously a problem as autotools weren't building tests by
> default)
>
> +Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
> +Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
>  ---
>   meson_options.txt | 3 +++
>   test/meson.build  | 6 +++---
>   2 files changed, 6 insertions(+), 3 deletions(-)
>
>  diff --git a/meson_options.txt b/meson_options.txt
> -index 244476a..071f0b6 100644
> +index b5d7c98..aa849c2 100644
>  --- a/meson_options.txt
>  +++ b/meson_options.txt
>  @@ -1,6 +1,9 @@
> - option('enable-docs',
> + option('docs',
>          type: 'boolean', value: false,
>          description: 'Enable generating the Epoxy API reference (depends
> on Doxygen)')
>  +option('has-dlvsym',
>  +       type: 'boolean', value: true,
>  +       description: 'Whether dlvsym() is available (it is not when using
> musl C library)')
> - option('enable-glx',
> + option('glx',
>          type: 'combo',
>          choices: [ 'auto', 'yes', 'no' ],
>  diff --git a/test/meson.build b/test/meson.build
> -index 2340fc6..bc4330b 100644
> +index c5788b4..4c46ae6 100644
>  --- a/test/meson.build
>  +++ b/test/meson.build
> -@@ -86,8 +86,8 @@ if build_glx
> +@@ -92,8 +92,8 @@ if build_glx
>       [ 'glx_has_extension_nocontext', [ 'glx_has_extension_nocontext.c'
> ], [], [], true ],
>       [ 'glx_static', [ 'glx_static.c' ], [ '-DNEEDS_TO_BE_STATIC'], [
> '-static' ], libtype == 'static' ],
>       [ 'glx_shared_znow', [ 'glx_static.c', ], [], [ '-Wl,-z,now' ],
> has_znow ],
> @@ -41,7 +43,7 @@ index 2340fc6..bc4330b 100644
>     ]
>
>     foreach test: glx_tests
> -@@ -108,7 +108,7 @@ if build_glx
> +@@ -114,7 +114,7 @@ if build_glx
>       endif
>     endforeach
>
> @@ -51,5 +53,5 @@ index 2340fc6..bc4330b 100644
>       if build_egl
>         glx_egl_sources = [
>  --
> -2.15.0
> +2.14.3
>
> diff --git a/meta/recipes-graphics/libepoxy/libepoxy/Add-
> fallback-definition-for-EGL-CAST.patch b/meta/recipes-graphics/
> libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
> deleted file mode 100644
> index b9297257dc..0000000000
> --- a/meta/recipes-graphics/libepoxy/libepoxy/Add-
> fallback-definition-for-EGL-CAST.patch
> +++ /dev/null
> @@ -1,33 +0,0 @@
> -Add fallback definition for EGL_CAST
> -
> -The EGL API update from d11104f introduced a dependency on the
> -EGL_CAST() macro, provided by an updated eglplatform.h. Given that we
> -don't provide eglplatform.h, add a fallback definition for if we're
> -building against Mesa 17.0.x or similar.
> -
> -https://bugs.gentoo.org/show_bug.cgi?id=623926
> -
> -Upstream-Status: Backport [https://github.com/anholt/libepoxy/commit/
> ebe3a53db1c0bb34e1ca963b95d1f222115f93f8]
> -
> -Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
> -
> -Index: libepoxy-1.4.3/src/gen_dispatch.py
> -===================================================================
> ---- libepoxy-1.4.3.orig/src/gen_dispatch.py    2017-06-06
> 04:24:13.000000000 -0500
> -+++ libepoxy-1.4.3/src/gen_dispatch.py 2017-11-06 12:45:43.594966473
> -0600
> -@@ -491,6 +491,15 @@
> -             self.outln('#include "epoxy/gl.h"')
> -             if self.target == "egl":
> -                 self.outln('#include "EGL/eglplatform.h"')
> -+                # Account for older eglplatform.h, which doesn't define
> -+                # the EGL_CAST macro.
> -+                self.outln('#ifndef EGL_CAST')
> -+                self.outln('#if defined(__cplusplus)')
> -+                self.outln('#define EGL_CAST(type, value)
> (static_cast<type>(value))')
> -+                self.outln('#else')
> -+                self.outln('#define EGL_CAST(type, value) ((type)
> (value))')
> -+                self.outln('#endif')
> -+                self.outln('#endif')
> -         else:
> -             # Add some ridiculous inttypes.h redefinitions that are
> -             # from khrplatform.h and not included in the XML.  We
> diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
> b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
> similarity index 61%
> rename from meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
> rename to meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
> index 8a5cb8f49f..dfdd19248d 100644
> --- a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
> +++ b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
> @@ -6,12 +6,10 @@ LICENSE = "MIT"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf464b"
>
>  SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/$
> {BP}.tar.xz \
> -           file://Add-fallback-definition-for-EGL-CAST.patch \
>             file://0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
> \
> -           file://0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
> \
>             "
> -SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed"
> -SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8b
> c7fb2fda074478e329b063c1f872b826f6"
> +SRC_URI[md5sum] = "63fe3847789258254dcd7e3fdb9e7f5e"
> +SRC_URI[sha256sum] = "4c94995398a6ebf691600dda2e9685
> a0cac261414175c2adf4645cdfab42a5d5"
>  UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases"
>
>  inherit meson pkgconfig distro_features_check
> @@ -20,8 +18,8 @@ REQUIRED_DISTRO_FEATURES = "opengl"
>
>  DEPENDS = "util-macros"
>
> -PACKAGECONFIG[egl] = "-Denable-egl=yes, -Denable-egl=no, virtual/egl"
> -PACKAGECONFIG[x11] = "-Denable-glx=yes, -Denable-glx=no, virtual/libx11"
> +PACKAGECONFIG[egl] = "-Degl=yes, -Degl=no, virtual/egl"
> +PACKAGECONFIG[x11] = "-Dglx=yes, -Dglx=no, virtual/libx11 virtual/libgl"
>  PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} egl"
>
>  EXTRA_OEMESON_append_libc-musl = " -Dhas-dlvsym=false "
> --
> 2.14.3
>
>

[-- Attachment #2: Type: text/html, Size: 14359 bytes --]

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

* Re: [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release
  2018-02-28 22:08 [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release Francesco Giancane
  2018-02-28 22:10 ` Francesco Giancane
@ 2018-02-28 22:57 ` Peter Kjellerstedt
  2018-03-01 16:20   ` Francesco Giancane
  1 sibling, 1 reply; 6+ messages in thread
From: Peter Kjellerstedt @ 2018-02-28 22:57 UTC (permalink / raw)
  To: Francesco Giancane; +Cc: openembedded-core

> -----Original Message-----
> From: openembedded-core-bounces@lists.openembedded.org
> [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
> Francesco Giancane
> Sent: den 28 februari 2018 23:09
> To: openembedded-core@lists.openembedded.org
> Subject: [OE-core] [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release

This isn't in meta-oe, it's in meta. ;)

I suggest changing the subject to:

libepoxy: Update to 1.5.0

since it's not a new recipe, and "latest release" carries a lot 
less information than the actual version.

> libepoxy 1.4.3 did not compile successfully because of
> implicit symbol definitions and link-time errors.
> A new recipe with latest libepoxy release (1.5.0) which
> successfully compiles is provided.

I'd remove the second sentence. All that information is 
conveyed by the updated subject anyway.

> Patch to disable 'dlvsym' has also been forward-ported
> to be applicable to version 1.5.0.
> The patch 'Add-fallback-definition-for-EGL-CAST.patch' is
> mainline now; thus it can be safely removed.
> Also, the patch
> 0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
> is no longer required since mainline fixed this too.
> 
> Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
> ---
>  ..._EGL_NO_X11_HEADERS-before-including-eglp.patch | 30 --------------------
>  ...sible-to-disable-the-use-of-dlvsym-needed.patch | 26 +++++++++--------
>  .../Add-fallback-definition-for-EGL-CAST.patch     | 33 ----------------------
>  .../{libepoxy_1.4.3.bb => libepoxy_1.5.0.bb}       | 10 +++----
>  4 files changed, 18 insertions(+), 81 deletions(-)
>  delete mode 100644 meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
>  delete mode 100644 meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
>  rename meta/recipes-graphics/libepoxy/{libepoxy_1.4.3.bb => libepoxy_1.5.0.bb} (61%)
> 
> 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
> deleted file mode 100644
> index ebe5754a7a..0000000000
> --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
> +++ /dev/null
> @@ -1,30 +0,0 @@
> -From 62e178ddae24c7633d2a03b129dc52261e0a15bf Mon Sep 17 00:00:00 2001
> -From: Khem Raj <raj.khem@gmail.com>
> -Date: Wed, 7 Feb 2018 00:48:03 -0800
> -Subject: [PATCH] Define MESA_EGL_NO_X11_HEADERS before including eglplatform.h
> - when X11 is disabled
> -
> -This helps in compiling when GL implementations e.g. mesa use
> -this define to exclude X11 headers
> -
> -Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ----
> -Upstream-Status: Submitted
> [https://github.com/anholt/libepoxy/pull/153]
> -
> - src/dispatch_common.h | 3 +++
> - 1 file changed, 3 insertions(+)
> -
> -Index: libepoxy-1.4.3/src/dispatch_common.h
> -===================================================================
> ---- libepoxy-1.4.3.orig/src/dispatch_common.h
> -+++ libepoxy-1.4.3/src/dispatch_common.h
> -@@ -46,6 +46,9 @@
> - #include "epoxy/glx.h"
> - #endif
> - #if PLATFORM_HAS_EGL
> -+#if !PLATFORM_HAS_GLX
> -+#define MESA_EGL_NO_X11_HEADERS 1
> -+#endif
> - #include "epoxy/egl.h"
> - #endif
> - #if PLATFORM_HAS_WGL
> diff --git a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
> index c2a2fa3453..5bddc12033 100644
> --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
> +++ b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
> @@ -1,36 +1,38 @@
> -From 7bcefd311cd696955376fe2c5298ec85e8f954ce Mon Sep 17 00:00:00 2001
> -From: Alexander Kanavin <alex.kanavin@gmail.com>
> -Date: Wed, 15 Nov 2017 12:48:27 +0200
> +From 9c964427656ef71210e2c5b48b279857806574e9 Mon Sep 17 00:00:00 2001
> +From: Francesco Giancane <francescogiancane8@gmail.com>
> +Date: Wed, 28 Feb 2018 21:32:24 +0100
>  Subject: [PATCH] Make it possible to disable the use of dlvsym() (needed for
>   musl)
> 
> -Upstream-Status: Pending

Don't remove the Upstream-Status.

> -Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> +Add a patch to work around absence of dlvsym() on musl
> +(wasn't previously a problem as autotools weren't building tests by default)
> 
> +Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
> +Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
>  ---
>   meson_options.txt | 3 +++
>   test/meson.build  | 6 +++---
>   2 files changed, 6 insertions(+), 3 deletions(-)
> 
>  diff --git a/meson_options.txt b/meson_options.txt
> -index 244476a..071f0b6 100644
> +index b5d7c98..aa849c2 100644
>  --- a/meson_options.txt
>  +++ b/meson_options.txt
>  @@ -1,6 +1,9 @@
> - option('enable-docs',
> + option('docs',
>          type: 'boolean', value: false,
>          description: 'Enable generating the Epoxy API reference (depends on Doxygen)')
>  +option('has-dlvsym',
>  +       type: 'boolean', value: true,
>  +       description: 'Whether dlvsym() is available (it is not when using musl C library)')
> - option('enable-glx',
> + option('glx',
>          type: 'combo',
>          choices: [ 'auto', 'yes', 'no' ],
>  diff --git a/test/meson.build b/test/meson.build
> -index 2340fc6..bc4330b 100644
> +index c5788b4..4c46ae6 100644
>  --- a/test/meson.build
>  +++ b/test/meson.build
> -@@ -86,8 +86,8 @@ if build_glx
> +@@ -92,8 +92,8 @@ if build_glx
>       [ 'glx_has_extension_nocontext', [ 'glx_has_extension_nocontext.c' ], [], [], true ],
>       [ 'glx_static', [ 'glx_static.c' ], [ '-DNEEDS_TO_BE_STATIC'], [ '-static' ], libtype == 'static' ],
>       [ 'glx_shared_znow', [ 'glx_static.c', ], [], [ '-Wl,-z,now' ], has_znow ],
> @@ -41,7 +43,7 @@ index 2340fc6..bc4330b 100644
>     ]
> 
>     foreach test: glx_tests
> -@@ -108,7 +108,7 @@ if build_glx
> +@@ -114,7 +114,7 @@ if build_glx
>       endif
>     endforeach
> 
> @@ -51,5 +53,5 @@ index 2340fc6..bc4330b 100644
>       if build_egl
>         glx_egl_sources = [
>  --
> -2.15.0
> +2.14.3
> 
> diff --git a/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch b/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
> deleted file mode 100644
> index b9297257dc..0000000000
> --- a/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
> +++ /dev/null
> @@ -1,33 +0,0 @@
> -Add fallback definition for EGL_CAST
> -
> -The EGL API update from d11104f introduced a dependency on the
> -EGL_CAST() macro, provided by an updated eglplatform.h. Given that we
> -don't provide eglplatform.h, add a fallback definition for if we're
> -building against Mesa 17.0.x or similar.
> -
> -https://bugs.gentoo.org/show_bug.cgi?id=623926
> -
> -Upstream-Status: Backport [https://github.com/anholt/libepoxy/commit/ebe3a53db1c0bb34e1ca963b95d1f222115f93f8]
> -
> -Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
> -
> -Index: libepoxy-1.4.3/src/gen_dispatch.py
> -===================================================================
> ---- libepoxy-1.4.3.orig/src/gen_dispatch.py	2017-06-06
> 04:24:13.000000000 -0500
> -+++ libepoxy-1.4.3/src/gen_dispatch.py	2017-11-06
> 12:45:43.594966473 -0600
> -@@ -491,6 +491,15 @@
> -             self.outln('#include "epoxy/gl.h"')
> -             if self.target == "egl":
> -                 self.outln('#include "EGL/eglplatform.h"')
> -+                # Account for older eglplatform.h, which doesn't define
> -+                # the EGL_CAST macro.
> -+                self.outln('#ifndef EGL_CAST')
> -+                self.outln('#if defined(__cplusplus)')
> -+                self.outln('#define EGL_CAST(type, value) (static_cast<type>(value))')
> -+                self.outln('#else')
> -+                self.outln('#define EGL_CAST(type, value) ((type) (value))')
> -+                self.outln('#endif')
> -+                self.outln('#endif')
> -         else:
> -             # Add some ridiculous inttypes.h redefinitions that are
> -             # from khrplatform.h and not included in the XML.  We
> diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
> similarity index 61%
> rename from meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
> rename to meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
> index 8a5cb8f49f..dfdd19248d 100644
> --- a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
> +++ b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
> @@ -6,12 +6,10 @@ LICENSE = "MIT"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf464b"
> 
>  SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/${BP}.tar.xz \
> -           file://Add-fallback-definition-for-EGL-CAST.patch \
>             file://0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch \
> -           file://0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch \
>             "
> -SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed"
> -SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8bc7fb2fda074478e329b063c1f872b826f6"
> +SRC_URI[md5sum] = "63fe3847789258254dcd7e3fdb9e7f5e"
> +SRC_URI[sha256sum] = "4c94995398a6ebf691600dda2e9685a0cac261414175c2adf4645cdfab42a5d5"
>  UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases"
> 
>  inherit meson pkgconfig distro_features_check
> @@ -20,8 +18,8 @@ REQUIRED_DISTRO_FEATURES = "opengl"
> 
>  DEPENDS = "util-macros"
> 
> -PACKAGECONFIG[egl] = "-Denable-egl=yes, -Denable-egl=no, virtual/egl"
> -PACKAGECONFIG[x11] = "-Denable-glx=yes, -Denable-glx=no, virtual/libx11"
> +PACKAGECONFIG[egl] = "-Degl=yes, -Degl=no, virtual/egl"
> +PACKAGECONFIG[x11] = "-Dglx=yes, -Dglx=no, virtual/libx11 virtual/libgl"
>  PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} egl"
> 
>  EXTRA_OEMESON_append_libc-musl = " -Dhas-dlvsym=false "
> --
> 2.14.3

//Peter



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

* Re: [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release
  2018-02-28 22:57 ` Peter Kjellerstedt
@ 2018-03-01 16:20   ` Francesco Giancane
  2018-03-07 10:49     ` Francesco Giancane
  0 siblings, 1 reply; 6+ messages in thread
From: Francesco Giancane @ 2018-03-01 16:20 UTC (permalink / raw)
  To: Peter Kjellerstedt; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 11250 bytes --]

v4 is being sent with updated commit description and Upstream-Status
included.
Thanks!

Francesco Giancane

2018-02-28 23:57 GMT+01:00 Peter Kjellerstedt <peter.kjellerstedt@axis.com>:

> > -----Original Message-----
> > From: openembedded-core-bounces@lists.openembedded.org
> > [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
> > Francesco Giancane
> > Sent: den 28 februari 2018 23:09
> > To: openembedded-core@lists.openembedded.org
> > Subject: [OE-core] [meta-oe][PATCH v3] libepoxy: New recipe updated to
> latest release
>
> This isn't in meta-oe, it's in meta. ;)
>
> I suggest changing the subject to:
>
> libepoxy: Update to 1.5.0
>
> since it's not a new recipe, and "latest release" carries a lot
> less information than the actual version.
>
> > libepoxy 1.4.3 did not compile successfully because of
> > implicit symbol definitions and link-time errors.
> > A new recipe with latest libepoxy release (1.5.0) which
> > successfully compiles is provided.
>
> I'd remove the second sentence. All that information is
> conveyed by the updated subject anyway.
>
> > Patch to disable 'dlvsym' has also been forward-ported
> > to be applicable to version 1.5.0.
> > The patch 'Add-fallback-definition-for-EGL-CAST.patch' is
> > mainline now; thus it can be safely removed.
> > Also, the patch
> > 0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
> > is no longer required since mainline fixed this too.
> >
> > Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
> > ---
> >  ..._EGL_NO_X11_HEADERS-before-including-eglp.patch | 30
> --------------------
> >  ...sible-to-disable-the-use-of-dlvsym-needed.patch | 26
> +++++++++--------
> >  .../Add-fallback-definition-for-EGL-CAST.patch     | 33
> ----------------------
> >  .../{libepoxy_1.4.3.bb => libepoxy_1.5.0.bb}       | 10 +++----
> >  4 files changed, 18 insertions(+), 81 deletions(-)
> >  delete mode 100644 meta/recipes-graphics/libepoxy/libepoxy/0001-Define-
> MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
> >  delete mode 100644 meta/recipes-graphics/libepoxy/libepoxy/Add-
> fallback-definition-for-EGL-CAST.patch
> >  rename meta/recipes-graphics/libepoxy/{libepoxy_1.4.3.bb =>
> libepoxy_1.5.0.bb} (61%)
> >
> > 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
> > deleted file mode 100644
> > index ebe5754a7a..0000000000
> > --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-
> MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
> > +++ /dev/null
> > @@ -1,30 +0,0 @@
> > -From 62e178ddae24c7633d2a03b129dc52261e0a15bf Mon Sep 17 00:00:00 2001
> > -From: Khem Raj <raj.khem@gmail.com>
> > -Date: Wed, 7 Feb 2018 00:48:03 -0800
> > -Subject: [PATCH] Define MESA_EGL_NO_X11_HEADERS before including
> eglplatform.h
> > - when X11 is disabled
> > -
> > -This helps in compiling when GL implementations e.g. mesa use
> > -this define to exclude X11 headers
> > -
> > -Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > ----
> > -Upstream-Status: Submitted
> > [https://github.com/anholt/libepoxy/pull/153]
> > -
> > - src/dispatch_common.h | 3 +++
> > - 1 file changed, 3 insertions(+)
> > -
> > -Index: libepoxy-1.4.3/src/dispatch_common.h
> > -===================================================================
> > ---- libepoxy-1.4.3.orig/src/dispatch_common.h
> > -+++ libepoxy-1.4.3/src/dispatch_common.h
> > -@@ -46,6 +46,9 @@
> > - #include "epoxy/glx.h"
> > - #endif
> > - #if PLATFORM_HAS_EGL
> > -+#if !PLATFORM_HAS_GLX
> > -+#define MESA_EGL_NO_X11_HEADERS 1
> > -+#endif
> > - #include "epoxy/egl.h"
> > - #endif
> > - #if PLATFORM_HAS_WGL
> > diff --git a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-
> it-possible-to-disable-the-use-of-dlvsym-needed.patch
> b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-
> it-possible-to-disable-the-use-of-dlvsym-needed.patch
> > index c2a2fa3453..5bddc12033 100644
> > --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-
> it-possible-to-disable-the-use-of-dlvsym-needed.patch
> > +++ b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-
> it-possible-to-disable-the-use-of-dlvsym-needed.patch
> > @@ -1,36 +1,38 @@
> > -From 7bcefd311cd696955376fe2c5298ec85e8f954ce Mon Sep 17 00:00:00 2001
> > -From: Alexander Kanavin <alex.kanavin@gmail.com>
> > -Date: Wed, 15 Nov 2017 12:48:27 +0200
> > +From 9c964427656ef71210e2c5b48b279857806574e9 Mon Sep 17 00:00:00 2001
> > +From: Francesco Giancane <francescogiancane8@gmail.com>
> > +Date: Wed, 28 Feb 2018 21:32:24 +0100
> >  Subject: [PATCH] Make it possible to disable the use of dlvsym()
> (needed for
> >   musl)
> >
> > -Upstream-Status: Pending
>
> Don't remove the Upstream-Status.
>
> > -Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> > +Add a patch to work around absence of dlvsym() on musl
> > +(wasn't previously a problem as autotools weren't building tests by
> default)
> >
> > +Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
> > +Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
> >  ---
> >   meson_options.txt | 3 +++
> >   test/meson.build  | 6 +++---
> >   2 files changed, 6 insertions(+), 3 deletions(-)
> >
> >  diff --git a/meson_options.txt b/meson_options.txt
> > -index 244476a..071f0b6 100644
> > +index b5d7c98..aa849c2 100644
> >  --- a/meson_options.txt
> >  +++ b/meson_options.txt
> >  @@ -1,6 +1,9 @@
> > - option('enable-docs',
> > + option('docs',
> >          type: 'boolean', value: false,
> >          description: 'Enable generating the Epoxy API reference
> (depends on Doxygen)')
> >  +option('has-dlvsym',
> >  +       type: 'boolean', value: true,
> >  +       description: 'Whether dlvsym() is available (it is not when
> using musl C library)')
> > - option('enable-glx',
> > + option('glx',
> >          type: 'combo',
> >          choices: [ 'auto', 'yes', 'no' ],
> >  diff --git a/test/meson.build b/test/meson.build
> > -index 2340fc6..bc4330b 100644
> > +index c5788b4..4c46ae6 100644
> >  --- a/test/meson.build
> >  +++ b/test/meson.build
> > -@@ -86,8 +86,8 @@ if build_glx
> > +@@ -92,8 +92,8 @@ if build_glx
> >       [ 'glx_has_extension_nocontext', [ 'glx_has_extension_nocontext.c'
> ], [], [], true ],
> >       [ 'glx_static', [ 'glx_static.c' ], [ '-DNEEDS_TO_BE_STATIC'], [
> '-static' ], libtype == 'static' ],
> >       [ 'glx_shared_znow', [ 'glx_static.c', ], [], [ '-Wl,-z,now' ],
> has_znow ],
> > @@ -41,7 +43,7 @@ index 2340fc6..bc4330b 100644
> >     ]
> >
> >     foreach test: glx_tests
> > -@@ -108,7 +108,7 @@ if build_glx
> > +@@ -114,7 +114,7 @@ if build_glx
> >       endif
> >     endforeach
> >
> > @@ -51,5 +53,5 @@ index 2340fc6..bc4330b 100644
> >       if build_egl
> >         glx_egl_sources = [
> >  --
> > -2.15.0
> > +2.14.3
> >
> > diff --git a/meta/recipes-graphics/libepoxy/libepoxy/Add-
> fallback-definition-for-EGL-CAST.patch b/meta/recipes-graphics/
> libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
> > deleted file mode 100644
> > index b9297257dc..0000000000
> > --- a/meta/recipes-graphics/libepoxy/libepoxy/Add-
> fallback-definition-for-EGL-CAST.patch
> > +++ /dev/null
> > @@ -1,33 +0,0 @@
> > -Add fallback definition for EGL_CAST
> > -
> > -The EGL API update from d11104f introduced a dependency on the
> > -EGL_CAST() macro, provided by an updated eglplatform.h. Given that we
> > -don't provide eglplatform.h, add a fallback definition for if we're
> > -building against Mesa 17.0.x or similar.
> > -
> > -https://bugs.gentoo.org/show_bug.cgi?id=623926
> > -
> > -Upstream-Status: Backport [https://github.com/anholt/libepoxy/commit/
> ebe3a53db1c0bb34e1ca963b95d1f222115f93f8]
> > -
> > -Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
> > -
> > -Index: libepoxy-1.4.3/src/gen_dispatch.py
> > -===================================================================
> > ---- libepoxy-1.4.3.orig/src/gen_dispatch.py  2017-06-06
> > 04:24:13.000000000 -0500
> > -+++ libepoxy-1.4.3/src/gen_dispatch.py       2017-11-06
> > 12:45:43.594966473 -0600
> > -@@ -491,6 +491,15 @@
> > -             self.outln('#include "epoxy/gl.h"')
> > -             if self.target == "egl":
> > -                 self.outln('#include "EGL/eglplatform.h"')
> > -+                # Account for older eglplatform.h, which doesn't define
> > -+                # the EGL_CAST macro.
> > -+                self.outln('#ifndef EGL_CAST')
> > -+                self.outln('#if defined(__cplusplus)')
> > -+                self.outln('#define EGL_CAST(type, value)
> (static_cast<type>(value))')
> > -+                self.outln('#else')
> > -+                self.outln('#define EGL_CAST(type, value) ((type)
> (value))')
> > -+                self.outln('#endif')
> > -+                self.outln('#endif')
> > -         else:
> > -             # Add some ridiculous inttypes.h redefinitions that are
> > -             # from khrplatform.h and not included in the XML.  We
> > diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
> b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
> > similarity index 61%
> > rename from meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
> > rename to meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
> > index 8a5cb8f49f..dfdd19248d 100644
> > --- a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
> > +++ b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
> > @@ -6,12 +6,10 @@ LICENSE = "MIT"
> >  LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf46
> 4b"
> >
> >  SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/$
> {BP}.tar.xz \
> > -           file://Add-fallback-definition-for-EGL-CAST.patch \
> >             file://0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
> \
> > -           file://0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
> \
> >             "
> > -SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed"
> > -SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8b
> c7fb2fda074478e329b063c1f872b826f6"
> > +SRC_URI[md5sum] = "63fe3847789258254dcd7e3fdb9e7f5e"
> > +SRC_URI[sha256sum] = "4c94995398a6ebf691600dda2e9685
> a0cac261414175c2adf4645cdfab42a5d5"
> >  UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases"
> >
> >  inherit meson pkgconfig distro_features_check
> > @@ -20,8 +18,8 @@ REQUIRED_DISTRO_FEATURES = "opengl"
> >
> >  DEPENDS = "util-macros"
> >
> > -PACKAGECONFIG[egl] = "-Denable-egl=yes, -Denable-egl=no, virtual/egl"
> > -PACKAGECONFIG[x11] = "-Denable-glx=yes, -Denable-glx=no, virtual/libx11"
> > +PACKAGECONFIG[egl] = "-Degl=yes, -Degl=no, virtual/egl"
> > +PACKAGECONFIG[x11] = "-Dglx=yes, -Dglx=no, virtual/libx11 virtual/libgl"
> >  PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}
> egl"
> >
> >  EXTRA_OEMESON_append_libc-musl = " -Dhas-dlvsym=false "
> > --
> > 2.14.3
>
> //Peter
>
>

[-- Attachment #2: Type: text/html, Size: 16115 bytes --]

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

* Re: [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release
  2018-03-01 16:20   ` Francesco Giancane
@ 2018-03-07 10:49     ` Francesco Giancane
  2018-03-07 11:24       ` Burton, Ross
  0 siblings, 1 reply; 6+ messages in thread
From: Francesco Giancane @ 2018-03-07 10:49 UTC (permalink / raw)
  To: Peter Kjellerstedt; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 11822 bytes --]

Hi,

This email just to point that a revised patch has been submitted.

Please find attached at https://patchwork.openembedded.org/patch/148586/

Thanks,

Francesco Giancane


2018-03-01 17:20 GMT+01:00 Francesco Giancane <francescogiancane8@gmail.com>
:

> v4 is being sent with updated commit description and Upstream-Status
> included.
> Thanks!
>
> Francesco Giancane
>
> 2018-02-28 23:57 GMT+01:00 Peter Kjellerstedt <peter.kjellerstedt@axis.com
> >:
>
>> > -----Original Message-----
>> > From: openembedded-core-bounces@lists.openembedded.org
>> > [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
>> > Francesco Giancane
>> > Sent: den 28 februari 2018 23:09
>> > To: openembedded-core@lists.openembedded.org
>> > Subject: [OE-core] [meta-oe][PATCH v3] libepoxy: New recipe updated to
>> latest release
>>
>> This isn't in meta-oe, it's in meta. ;)
>>
>> I suggest changing the subject to:
>>
>> libepoxy: Update to 1.5.0
>>
>> since it's not a new recipe, and "latest release" carries a lot
>> less information than the actual version.
>>
>> > libepoxy 1.4.3 did not compile successfully because of
>> > implicit symbol definitions and link-time errors.
>> > A new recipe with latest libepoxy release (1.5.0) which
>> > successfully compiles is provided.
>>
>> I'd remove the second sentence. All that information is
>> conveyed by the updated subject anyway.
>>
>> > Patch to disable 'dlvsym' has also been forward-ported
>> > to be applicable to version 1.5.0.
>> > The patch 'Add-fallback-definition-for-EGL-CAST.patch' is
>> > mainline now; thus it can be safely removed.
>> > Also, the patch
>> > 0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
>> > is no longer required since mainline fixed this too.
>> >
>> > Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
>> > ---
>> >  ..._EGL_NO_X11_HEADERS-before-including-eglp.patch | 30
>> --------------------
>> >  ...sible-to-disable-the-use-of-dlvsym-needed.patch | 26
>> +++++++++--------
>> >  .../Add-fallback-definition-for-EGL-CAST.patch     | 33
>> ----------------------
>> >  .../{libepoxy_1.4.3.bb => libepoxy_1.5.0.bb}       | 10 +++----
>> >  4 files changed, 18 insertions(+), 81 deletions(-)
>> >  delete mode 100644 meta/recipes-graphics/libepoxy
>> /libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
>> >  delete mode 100644 meta/recipes-graphics/libepoxy
>> /libepoxy/Add-fallback-definition-for-EGL-CAST.patch
>> >  rename meta/recipes-graphics/libepoxy/{libepoxy_1.4.3.bb =>
>> libepoxy_1.5.0.bb} (61%)
>> >
>> > 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
>> > deleted file mode 100644
>> > index ebe5754a7a..0000000000
>> > --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_
>> EGL_NO_X11_HEADERS-before-including-eglp.patch
>> > +++ /dev/null
>> > @@ -1,30 +0,0 @@
>> > -From 62e178ddae24c7633d2a03b129dc52261e0a15bf Mon Sep 17 00:00:00 2001
>> > -From: Khem Raj <raj.khem@gmail.com>
>> > -Date: Wed, 7 Feb 2018 00:48:03 -0800
>> > -Subject: [PATCH] Define MESA_EGL_NO_X11_HEADERS before including
>> eglplatform.h
>> > - when X11 is disabled
>> > -
>> > -This helps in compiling when GL implementations e.g. mesa use
>> > -this define to exclude X11 headers
>> > -
>> > -Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> > ----
>> > -Upstream-Status: Submitted
>> > [https://github.com/anholt/libepoxy/pull/153]
>> > -
>> > - src/dispatch_common.h | 3 +++
>> > - 1 file changed, 3 insertions(+)
>> > -
>> > -Index: libepoxy-1.4.3/src/dispatch_common.h
>> > -===================================================================
>> > ---- libepoxy-1.4.3.orig/src/dispatch_common.h
>> > -+++ libepoxy-1.4.3/src/dispatch_common.h
>> > -@@ -46,6 +46,9 @@
>> > - #include "epoxy/glx.h"
>> > - #endif
>> > - #if PLATFORM_HAS_EGL
>> > -+#if !PLATFORM_HAS_GLX
>> > -+#define MESA_EGL_NO_X11_HEADERS 1
>> > -+#endif
>> > - #include "epoxy/egl.h"
>> > - #endif
>> > - #if PLATFORM_HAS_WGL
>> > diff --git a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-
>> possible-to-disable-the-use-of-dlvsym-needed.patch
>> b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-
>> possible-to-disable-the-use-of-dlvsym-needed.patch
>> > index c2a2fa3453..5bddc12033 100644
>> > --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-
>> possible-to-disable-the-use-of-dlvsym-needed.patch
>> > +++ b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-
>> possible-to-disable-the-use-of-dlvsym-needed.patch
>> > @@ -1,36 +1,38 @@
>> > -From 7bcefd311cd696955376fe2c5298ec85e8f954ce Mon Sep 17 00:00:00 2001
>> > -From: Alexander Kanavin <alex.kanavin@gmail.com>
>> > -Date: Wed, 15 Nov 2017 12:48:27 +0200
>> > +From 9c964427656ef71210e2c5b48b279857806574e9 Mon Sep 17 00:00:00 2001
>> > +From: Francesco Giancane <francescogiancane8@gmail.com>
>> > +Date: Wed, 28 Feb 2018 21:32:24 +0100
>> >  Subject: [PATCH] Make it possible to disable the use of dlvsym()
>> (needed for
>> >   musl)
>> >
>> > -Upstream-Status: Pending
>>
>> Don't remove the Upstream-Status.
>>
>> > -Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
>> > +Add a patch to work around absence of dlvsym() on musl
>> > +(wasn't previously a problem as autotools weren't building tests by
>> default)
>> >
>> > +Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
>> > +Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
>> >  ---
>> >   meson_options.txt | 3 +++
>> >   test/meson.build  | 6 +++---
>> >   2 files changed, 6 insertions(+), 3 deletions(-)
>> >
>> >  diff --git a/meson_options.txt b/meson_options.txt
>> > -index 244476a..071f0b6 100644
>> > +index b5d7c98..aa849c2 100644
>> >  --- a/meson_options.txt
>> >  +++ b/meson_options.txt
>> >  @@ -1,6 +1,9 @@
>> > - option('enable-docs',
>> > + option('docs',
>> >          type: 'boolean', value: false,
>> >          description: 'Enable generating the Epoxy API reference
>> (depends on Doxygen)')
>> >  +option('has-dlvsym',
>> >  +       type: 'boolean', value: true,
>> >  +       description: 'Whether dlvsym() is available (it is not when
>> using musl C library)')
>> > - option('enable-glx',
>> > + option('glx',
>> >          type: 'combo',
>> >          choices: [ 'auto', 'yes', 'no' ],
>> >  diff --git a/test/meson.build b/test/meson.build
>> > -index 2340fc6..bc4330b 100644
>> > +index c5788b4..4c46ae6 100644
>> >  --- a/test/meson.build
>> >  +++ b/test/meson.build
>> > -@@ -86,8 +86,8 @@ if build_glx
>> > +@@ -92,8 +92,8 @@ if build_glx
>> >       [ 'glx_has_extension_nocontext', [ 'glx_has_extension_nocontext.c'
>> ], [], [], true ],
>> >       [ 'glx_static', [ 'glx_static.c' ], [ '-DNEEDS_TO_BE_STATIC'], [
>> '-static' ], libtype == 'static' ],
>> >       [ 'glx_shared_znow', [ 'glx_static.c', ], [], [ '-Wl,-z,now' ],
>> has_znow ],
>> > @@ -41,7 +43,7 @@ index 2340fc6..bc4330b 100644
>> >     ]
>> >
>> >     foreach test: glx_tests
>> > -@@ -108,7 +108,7 @@ if build_glx
>> > +@@ -114,7 +114,7 @@ if build_glx
>> >       endif
>> >     endforeach
>> >
>> > @@ -51,5 +53,5 @@ index 2340fc6..bc4330b 100644
>> >       if build_egl
>> >         glx_egl_sources = [
>> >  --
>> > -2.15.0
>> > +2.14.3
>> >
>> > diff --git a/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
>> b/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-
>> definition-for-EGL-CAST.patch
>> > deleted file mode 100644
>> > index b9297257dc..0000000000
>> > --- a/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-
>> definition-for-EGL-CAST.patch
>> > +++ /dev/null
>> > @@ -1,33 +0,0 @@
>> > -Add fallback definition for EGL_CAST
>> > -
>> > -The EGL API update from d11104f introduced a dependency on the
>> > -EGL_CAST() macro, provided by an updated eglplatform.h. Given that we
>> > -don't provide eglplatform.h, add a fallback definition for if we're
>> > -building against Mesa 17.0.x or similar.
>> > -
>> > -https://bugs.gentoo.org/show_bug.cgi?id=623926
>> > -
>> > -Upstream-Status: Backport [https://github.com/anholt/lib
>> epoxy/commit/ebe3a53db1c0bb34e1ca963b95d1f222115f93f8]
>> > -
>> > -Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
>> > -
>> > -Index: libepoxy-1.4.3/src/gen_dispatch.py
>> > -===================================================================
>> > ---- libepoxy-1.4.3.orig/src/gen_dispatch.py  2017-06-06
>> > 04:24:13.000000000 -0500
>> > -+++ libepoxy-1.4.3/src/gen_dispatch.py       2017-11-06
>> > 12:45:43.594966473 -0600
>> > -@@ -491,6 +491,15 @@
>> > -             self.outln('#include "epoxy/gl.h"')
>> > -             if self.target == "egl":
>> > -                 self.outln('#include "EGL/eglplatform.h"')
>> > -+                # Account for older eglplatform.h, which doesn't
>> define
>> > -+                # the EGL_CAST macro.
>> > -+                self.outln('#ifndef EGL_CAST')
>> > -+                self.outln('#if defined(__cplusplus)')
>> > -+                self.outln('#define EGL_CAST(type, value)
>> (static_cast<type>(value))')
>> > -+                self.outln('#else')
>> > -+                self.outln('#define EGL_CAST(type, value) ((type)
>> (value))')
>> > -+                self.outln('#endif')
>> > -+                self.outln('#endif')
>> > -         else:
>> > -             # Add some ridiculous inttypes.h redefinitions that are
>> > -             # from khrplatform.h and not included in the XML.  We
>> > diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
>> b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
>> > similarity index 61%
>> > rename from meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
>> > rename to meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
>> > index 8a5cb8f49f..dfdd19248d 100644
>> > --- a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
>> > +++ b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
>> > @@ -6,12 +6,10 @@ LICENSE = "MIT"
>> >  LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d4
>> 01e07bd9ee8b6b58cf464b"
>> >
>> >  SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/${
>> BP}.tar.xz \
>> > -           file://Add-fallback-definition-for-EGL-CAST.patch \
>> >             file://0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
>> \
>> > -           file://0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
>> \
>> >             "
>> > -SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed"
>> > -SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8
>> bc7fb2fda074478e329b063c1f872b826f6"
>> > +SRC_URI[md5sum] = "63fe3847789258254dcd7e3fdb9e7f5e"
>> > +SRC_URI[sha256sum] = "4c94995398a6ebf691600dda2e968
>> 5a0cac261414175c2adf4645cdfab42a5d5"
>> >  UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases"
>> >
>> >  inherit meson pkgconfig distro_features_check
>> > @@ -20,8 +18,8 @@ REQUIRED_DISTRO_FEATURES = "opengl"
>> >
>> >  DEPENDS = "util-macros"
>> >
>> > -PACKAGECONFIG[egl] = "-Denable-egl=yes, -Denable-egl=no, virtual/egl"
>> > -PACKAGECONFIG[x11] = "-Denable-glx=yes, -Denable-glx=no,
>> virtual/libx11"
>> > +PACKAGECONFIG[egl] = "-Degl=yes, -Degl=no, virtual/egl"
>> > +PACKAGECONFIG[x11] = "-Dglx=yes, -Dglx=no, virtual/libx11
>> virtual/libgl"
>> >  PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}
>> egl"
>> >
>> >  EXTRA_OEMESON_append_libc-musl = " -Dhas-dlvsym=false "
>> > --
>> > 2.14.3
>>
>> //Peter
>>
>>
>

[-- Attachment #2: Type: text/html, Size: 17650 bytes --]

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

* Re: [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release
  2018-03-07 10:49     ` Francesco Giancane
@ 2018-03-07 11:24       ` Burton, Ross
  0 siblings, 0 replies; 6+ messages in thread
From: Burton, Ross @ 2018-03-07 11:24 UTC (permalink / raw)
  To: Francesco Giancane; +Cc: Peter Kjellerstedt, openembedded-core

[-- Attachment #1: Type: text/plain, Size: 12491 bytes --]

Yes, it's been merged :)

Ross

On 7 March 2018 at 10:49, Francesco Giancane <francescogiancane8@gmail.com>
wrote:

> Hi,
>
> This email just to point that a revised patch has been submitted.
>
> Please find attached at https://patchwork.openembedded.org/patch/148586/
>
> Thanks,
>
> Francesco Giancane
>
>
> 2018-03-01 17:20 GMT+01:00 Francesco Giancane <
> francescogiancane8@gmail.com>:
>
>> v4 is being sent with updated commit description and Upstream-Status
>> included.
>> Thanks!
>>
>> Francesco Giancane
>>
>> 2018-02-28 23:57 GMT+01:00 Peter Kjellerstedt <
>> peter.kjellerstedt@axis.com>:
>>
>>> > -----Original Message-----
>>> > From: openembedded-core-bounces@lists.openembedded.org
>>> > [mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf Of
>>> > Francesco Giancane
>>> > Sent: den 28 februari 2018 23:09
>>> > To: openembedded-core@lists.openembedded.org
>>> > Subject: [OE-core] [meta-oe][PATCH v3] libepoxy: New recipe updated to
>>> latest release
>>>
>>> This isn't in meta-oe, it's in meta. ;)
>>>
>>> I suggest changing the subject to:
>>>
>>> libepoxy: Update to 1.5.0
>>>
>>> since it's not a new recipe, and "latest release" carries a lot
>>> less information than the actual version.
>>>
>>> > libepoxy 1.4.3 did not compile successfully because of
>>> > implicit symbol definitions and link-time errors.
>>> > A new recipe with latest libepoxy release (1.5.0) which
>>> > successfully compiles is provided.
>>>
>>> I'd remove the second sentence. All that information is
>>> conveyed by the updated subject anyway.
>>>
>>> > Patch to disable 'dlvsym' has also been forward-ported
>>> > to be applicable to version 1.5.0.
>>> > The patch 'Add-fallback-definition-for-EGL-CAST.patch' is
>>> > mainline now; thus it can be safely removed.
>>> > Also, the patch
>>> > 0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
>>> > is no longer required since mainline fixed this too.
>>> >
>>> > Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
>>> > ---
>>> >  ..._EGL_NO_X11_HEADERS-before-including-eglp.patch | 30
>>> --------------------
>>> >  ...sible-to-disable-the-use-of-dlvsym-needed.patch | 26
>>> +++++++++--------
>>> >  .../Add-fallback-definition-for-EGL-CAST.patch     | 33
>>> ----------------------
>>> >  .../{libepoxy_1.4.3.bb => libepoxy_1.5.0.bb}       | 10 +++----
>>> >  4 files changed, 18 insertions(+), 81 deletions(-)
>>> >  delete mode 100644 meta/recipes-graphics/libepoxy
>>> /libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-includi
>>> ng-eglp.patch
>>> >  delete mode 100644 meta/recipes-graphics/libepoxy
>>> /libepoxy/Add-fallback-definition-for-EGL-CAST.patch
>>> >  rename meta/recipes-graphics/libepoxy/{libepoxy_1.4.3.bb =>
>>> libepoxy_1.5.0.bb} (61%)
>>> >
>>> > diff --git a/meta/recipes-graphics/libepo
>>> xy/libepoxy/0001-Define-MESA_EGL_NO_X11_HEADERS-before-including-eglp.patch
>>> b/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_E
>>> GL_NO_X11_HEADERS-before-including-eglp.patch
>>> > deleted file mode 100644
>>> > index ebe5754a7a..0000000000
>>> > --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Define-MESA_E
>>> GL_NO_X11_HEADERS-before-including-eglp.patch
>>> > +++ /dev/null
>>> > @@ -1,30 +0,0 @@
>>> > -From 62e178ddae24c7633d2a03b129dc52261e0a15bf Mon Sep 17 00:00:00
>>> 2001
>>> > -From: Khem Raj <raj.khem@gmail.com>
>>> > -Date: Wed, 7 Feb 2018 00:48:03 -0800
>>> > -Subject: [PATCH] Define MESA_EGL_NO_X11_HEADERS before including
>>> eglplatform.h
>>> > - when X11 is disabled
>>> > -
>>> > -This helps in compiling when GL implementations e.g. mesa use
>>> > -this define to exclude X11 headers
>>> > -
>>> > -Signed-off-by: Khem Raj <raj.khem@gmail.com>
>>> > ----
>>> > -Upstream-Status: Submitted
>>> > [https://github.com/anholt/libepoxy/pull/153]
>>> > -
>>> > - src/dispatch_common.h | 3 +++
>>> > - 1 file changed, 3 insertions(+)
>>> > -
>>> > -Index: libepoxy-1.4.3/src/dispatch_common.h
>>> > -===================================================================
>>> > ---- libepoxy-1.4.3.orig/src/dispatch_common.h
>>> > -+++ libepoxy-1.4.3/src/dispatch_common.h
>>> > -@@ -46,6 +46,9 @@
>>> > - #include "epoxy/glx.h"
>>> > - #endif
>>> > - #if PLATFORM_HAS_EGL
>>> > -+#if !PLATFORM_HAS_GLX
>>> > -+#define MESA_EGL_NO_X11_HEADERS 1
>>> > -+#endif
>>> > - #include "epoxy/egl.h"
>>> > - #endif
>>> > - #if PLATFORM_HAS_WGL
>>> > diff --git a/meta/recipes-graphics/libepo
>>> xy/libepoxy/0001-Make-it-possible-to-disable-the-use-of-dlvsym-needed.patch
>>> b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possi
>>> ble-to-disable-the-use-of-dlvsym-needed.patch
>>> > index c2a2fa3453..5bddc12033 100644
>>> > --- a/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possi
>>> ble-to-disable-the-use-of-dlvsym-needed.patch
>>> > +++ b/meta/recipes-graphics/libepoxy/libepoxy/0001-Make-it-possi
>>> ble-to-disable-the-use-of-dlvsym-needed.patch
>>> > @@ -1,36 +1,38 @@
>>> > -From 7bcefd311cd696955376fe2c5298ec85e8f954ce Mon Sep 17 00:00:00
>>> 2001
>>> > -From: Alexander Kanavin <alex.kanavin@gmail.com>
>>> > -Date: Wed, 15 Nov 2017 12:48:27 +0200
>>> > +From 9c964427656ef71210e2c5b48b279857806574e9 Mon Sep 17 00:00:00
>>> 2001
>>> > +From: Francesco Giancane <francescogiancane8@gmail.com>
>>> > +Date: Wed, 28 Feb 2018 21:32:24 +0100
>>> >  Subject: [PATCH] Make it possible to disable the use of dlvsym()
>>> (needed for
>>> >   musl)
>>> >
>>> > -Upstream-Status: Pending
>>>
>>> Don't remove the Upstream-Status.
>>>
>>> > -Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
>>> > +Add a patch to work around absence of dlvsym() on musl
>>> > +(wasn't previously a problem as autotools weren't building tests by
>>> default)
>>> >
>>> > +Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
>>> > +Signed-off-by: Francesco Giancane <francescogiancane8@gmail.com>
>>> >  ---
>>> >   meson_options.txt | 3 +++
>>> >   test/meson.build  | 6 +++---
>>> >   2 files changed, 6 insertions(+), 3 deletions(-)
>>> >
>>> >  diff --git a/meson_options.txt b/meson_options.txt
>>> > -index 244476a..071f0b6 100644
>>> > +index b5d7c98..aa849c2 100644
>>> >  --- a/meson_options.txt
>>> >  +++ b/meson_options.txt
>>> >  @@ -1,6 +1,9 @@
>>> > - option('enable-docs',
>>> > + option('docs',
>>> >          type: 'boolean', value: false,
>>> >          description: 'Enable generating the Epoxy API reference
>>> (depends on Doxygen)')
>>> >  +option('has-dlvsym',
>>> >  +       type: 'boolean', value: true,
>>> >  +       description: 'Whether dlvsym() is available (it is not when
>>> using musl C library)')
>>> > - option('enable-glx',
>>> > + option('glx',
>>> >          type: 'combo',
>>> >          choices: [ 'auto', 'yes', 'no' ],
>>> >  diff --git a/test/meson.build b/test/meson.build
>>> > -index 2340fc6..bc4330b 100644
>>> > +index c5788b4..4c46ae6 100644
>>> >  --- a/test/meson.build
>>> >  +++ b/test/meson.build
>>> > -@@ -86,8 +86,8 @@ if build_glx
>>> > +@@ -92,8 +92,8 @@ if build_glx
>>> >       [ 'glx_has_extension_nocontext', [ 'glx_has_extension_nocontext.c'
>>> ], [], [], true ],
>>> >       [ 'glx_static', [ 'glx_static.c' ], [ '-DNEEDS_TO_BE_STATIC'], [
>>> '-static' ], libtype == 'static' ],
>>> >       [ 'glx_shared_znow', [ 'glx_static.c', ], [], [ '-Wl,-z,now' ],
>>> has_znow ],
>>> > @@ -41,7 +43,7 @@ index 2340fc6..bc4330b 100644
>>> >     ]
>>> >
>>> >     foreach test: glx_tests
>>> > -@@ -108,7 +108,7 @@ if build_glx
>>> > +@@ -114,7 +114,7 @@ if build_glx
>>> >       endif
>>> >     endforeach
>>> >
>>> > @@ -51,5 +53,5 @@ index 2340fc6..bc4330b 100644
>>> >       if build_egl
>>> >         glx_egl_sources = [
>>> >  --
>>> > -2.15.0
>>> > +2.14.3
>>> >
>>> > diff --git a/meta/recipes-graphics/libepo
>>> xy/libepoxy/Add-fallback-definition-for-EGL-CAST.patch
>>> b/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-defin
>>> ition-for-EGL-CAST.patch
>>> > deleted file mode 100644
>>> > index b9297257dc..0000000000
>>> > --- a/meta/recipes-graphics/libepoxy/libepoxy/Add-fallback-defin
>>> ition-for-EGL-CAST.patch
>>> > +++ /dev/null
>>> > @@ -1,33 +0,0 @@
>>> > -Add fallback definition for EGL_CAST
>>> > -
>>> > -The EGL API update from d11104f introduced a dependency on the
>>> > -EGL_CAST() macro, provided by an updated eglplatform.h. Given that we
>>> > -don't provide eglplatform.h, add a fallback definition for if we're
>>> > -building against Mesa 17.0.x or similar.
>>> > -
>>> > -https://bugs.gentoo.org/show_bug.cgi?id=623926
>>> > -
>>> > -Upstream-Status: Backport [https://github.com/anholt/lib
>>> epoxy/commit/ebe3a53db1c0bb34e1ca963b95d1f222115f93f8]
>>> > -
>>> > -Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
>>> > -
>>> > -Index: libepoxy-1.4.3/src/gen_dispatch.py
>>> > -===================================================================
>>> > ---- libepoxy-1.4.3.orig/src/gen_dispatch.py  2017-06-06
>>> > 04:24:13.000000000 -0500
>>> > -+++ libepoxy-1.4.3/src/gen_dispatch.py       2017-11-06
>>> > 12:45:43.594966473 -0600
>>> > -@@ -491,6 +491,15 @@
>>> > -             self.outln('#include "epoxy/gl.h"')
>>> > -             if self.target == "egl":
>>> > -                 self.outln('#include "EGL/eglplatform.h"')
>>> > -+                # Account for older eglplatform.h, which doesn't
>>> define
>>> > -+                # the EGL_CAST macro.
>>> > -+                self.outln('#ifndef EGL_CAST')
>>> > -+                self.outln('#if defined(__cplusplus)')
>>> > -+                self.outln('#define EGL_CAST(type, value)
>>> (static_cast<type>(value))')
>>> > -+                self.outln('#else')
>>> > -+                self.outln('#define EGL_CAST(type, value) ((type)
>>> (value))')
>>> > -+                self.outln('#endif')
>>> > -+                self.outln('#endif')
>>> > -         else:
>>> > -             # Add some ridiculous inttypes.h redefinitions that are
>>> > -             # from khrplatform.h and not included in the XML.  We
>>> > diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
>>> b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
>>> > similarity index 61%
>>> > rename from meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
>>> > rename to meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
>>> > index 8a5cb8f49f..dfdd19248d 100644
>>> > --- a/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb
>>> > +++ b/meta/recipes-graphics/libepoxy/libepoxy_1.5.0.bb
>>> > @@ -6,12 +6,10 @@ LICENSE = "MIT"
>>> >  LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d4
>>> 01e07bd9ee8b6b58cf464b"
>>> >
>>> >  SRC_URI = "https://github.com/anholt/${B
>>> PN}/releases/download/${PV}/${BP}.tar.xz \
>>> > -           file://Add-fallback-definition-for-EGL-CAST.patch \
>>> >             file://0001-Make-it-possible-
>>> to-disable-the-use-of-dlvsym-needed.patch \
>>> > -           file://0001-Define-MESA_EGL_N
>>> O_X11_HEADERS-before-including-eglp.patch \
>>> >             "
>>> > -SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed"
>>> > -SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8
>>> bc7fb2fda074478e329b063c1f872b826f6"
>>> > +SRC_URI[md5sum] = "63fe3847789258254dcd7e3fdb9e7f5e"
>>> > +SRC_URI[sha256sum] = "4c94995398a6ebf691600dda2e968
>>> 5a0cac261414175c2adf4645cdfab42a5d5"
>>> >  UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases"
>>> >
>>> >  inherit meson pkgconfig distro_features_check
>>> > @@ -20,8 +18,8 @@ REQUIRED_DISTRO_FEATURES = "opengl"
>>> >
>>> >  DEPENDS = "util-macros"
>>> >
>>> > -PACKAGECONFIG[egl] = "-Denable-egl=yes, -Denable-egl=no, virtual/egl"
>>> > -PACKAGECONFIG[x11] = "-Denable-glx=yes, -Denable-glx=no,
>>> virtual/libx11"
>>> > +PACKAGECONFIG[egl] = "-Degl=yes, -Degl=no, virtual/egl"
>>> > +PACKAGECONFIG[x11] = "-Dglx=yes, -Dglx=no, virtual/libx11
>>> virtual/libgl"
>>> >  PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}
>>> egl"
>>> >
>>> >  EXTRA_OEMESON_append_libc-musl = " -Dhas-dlvsym=false "
>>> > --
>>> > 2.14.3
>>>
>>> //Peter
>>>
>>>
>>
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
>

[-- Attachment #2: Type: text/html, Size: 18739 bytes --]

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

end of thread, other threads:[~2018-03-07 11:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-28 22:08 [meta-oe][PATCH v3] libepoxy: New recipe updated to latest release Francesco Giancane
2018-02-28 22:10 ` Francesco Giancane
2018-02-28 22:57 ` Peter Kjellerstedt
2018-03-01 16:20   ` Francesco Giancane
2018-03-07 10:49     ` Francesco Giancane
2018-03-07 11:24       ` Burton, Ross

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.