diff options
author | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-01-08 16:02:03 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.200> | 2016-01-13 15:24:12 +0000 |
commit | 503179018b074828878568140be57b83f8790e14 (patch) | |
tree | 5a16852e7c245545e3bb7b5443c276fcbc5e2c5a /common/recipes-graphics/drm/libdrm/GNU_SOURCE_definition.patch | |
parent | cedce9ae52ea9b7518bbe8b50e8a898ee68d720c (diff) |
libdrm: remove obsolete recipe
The libdrm_2.4.45 recipe is not relevant anymore.
Patches integrated in the forked version are now integrated
upstream (since release 2.4.47).
This recipe is not needed when the layer is used in poky >= 1.7
as it embed libdrm_2.5.54, and is already removed from upstream
repo. Please refer to ce65bca52 in:
http://git.yoctoproject.org/git/meta-renesas
Change-Id: I82c849a58d38be5fb00ebafcaf718834e688d085
Signed-off-by: Yannick Gicquel <yannick.gicquel@iot.bzh>
Diffstat (limited to 'common/recipes-graphics/drm/libdrm/GNU_SOURCE_definition.patch')
-rw-r--r-- | common/recipes-graphics/drm/libdrm/GNU_SOURCE_definition.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/common/recipes-graphics/drm/libdrm/GNU_SOURCE_definition.patch b/common/recipes-graphics/drm/libdrm/GNU_SOURCE_definition.patch deleted file mode 100644 index 8eb1d5e..0000000 --- a/common/recipes-graphics/drm/libdrm/GNU_SOURCE_definition.patch +++ /dev/null @@ -1,30 +0,0 @@ -uclibc headers need to know if _GNU_SOURCE is defined or not and its defined -in config.h so include it first to get the definition if its there fixed build -problems on uclibc - -test_decode.c:107:2: error: implicit declaration of function 'open_memstream' [-Werror=implicit-function-declaration] - -Signed-off-by: Khem Raj <raj.khem@gmail.com> -Upstream-Status: Pending - -Index: libdrm-2.4.30/intel/test_decode.c -=================================================================== ---- libdrm-2.4.30.orig/intel/test_decode.c 2012-02-03 14:28:46.409355918 -0800 -+++ libdrm-2.4.30/intel/test_decode.c 2012-02-03 14:29:02.357356689 -0800 -@@ -21,6 +21,8 @@ - * IN THE SOFTWARE. - */ - -+#include "config.h" -+ - #include <string.h> - #include <stdlib.h> - #include <stdio.h> -@@ -31,7 +33,6 @@ - #include <sys/mman.h> - #include <err.h> - --#include "config.h" - #include "intel_bufmgr.h" - #include "intel_chipset.h" - |