aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/directfb/directfb/union-sigval.patch
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2016-07-01 14:13:11 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-10 14:12:07 +0100
commita30f259537fa99e71d8d93662988233e36373611 (patch)
treee2d7bdda2b83b6d45c1d096e9bc421645b2507b4 /meta/recipes-graphics/directfb/directfb/union-sigval.patch
parent2d8fda36ecfa1945f22b7139a2febd12ec59272b (diff)
downloadopenembedded-core-contrib-a30f259537fa99e71d8d93662988233e36373611.tar.gz
move directfb from oe-core
Remove the directfb recipe as we are moving directfb out of oe-core [YOCTO #8489] Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-graphics/directfb/directfb/union-sigval.patch')
-rw-r--r--meta/recipes-graphics/directfb/directfb/union-sigval.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/meta/recipes-graphics/directfb/directfb/union-sigval.patch b/meta/recipes-graphics/directfb/directfb/union-sigval.patch
deleted file mode 100644
index 29f45c7977..0000000000
--- a/meta/recipes-graphics/directfb/directfb/union-sigval.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-This patch is taken from gentoo musl overlay
-sigval_t is glibc only construct, we use a union of sigval
-which pretty much is same effect as sigval_t
-
-Upstream-Status: Pending
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-diff -Naur DirectFB-1.7.6.orig/lib/direct/os/linux/glibc/system.c DirectFB-1.7.6/lib/direct/os/linux/glibc/system.c
---- DirectFB-1.7.6.orig/lib/direct/os/linux/glibc/system.c 2014-07-15 02:54:58.000000000 -0400
-+++ DirectFB-1.7.6/lib/direct/os/linux/glibc/system.c 2015-07-18 16:55:35.077989166 -0400
-@@ -111,7 +111,7 @@
- void
- direct_trap( const char *domain, int sig )
- {
-- sigval_t val;
-+ union sigval val;
-
- if (direct_config->delay_trap_ms) {
- D_LOG( Direct_Trap, VERBOSE, "NOT RAISING signal %d from %s, waiting for %dms... attach gdb --pid=%d\n", sig, domain, direct_config->delay_trap_ms, getpid() );