summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/drm
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-06-12 16:27:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-06-15 17:56:24 +0100
commit0b8d09b2df371859418a8d298ef2d68855d6a5bf (patch)
treefbf1e9c57292261b448a3c317bce8de46fc7b451 /meta/recipes-graphics/drm
parente4bacbf94a68a5ca8729b7cb2de90382c084fe7f (diff)
downloadpoky-0b8d09b2df371859418a8d298ef2d68855d6a5bf.tar.gz
libdrm: drop uclibc-specific patch
This patch isn't needed for musl or glibc, so drop it. (From OE-Core rev: 46275ed3de30e6095b0d7ef71aad842e5ea9fe30) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/drm')
-rw-r--r--meta/recipes-graphics/drm/libdrm/fix_O_CLOEXEC_undeclared.patch24
-rw-r--r--meta/recipes-graphics/drm/libdrm_2.4.92.bb1
2 files changed, 0 insertions, 25 deletions
diff --git a/meta/recipes-graphics/drm/libdrm/fix_O_CLOEXEC_undeclared.patch b/meta/recipes-graphics/drm/libdrm/fix_O_CLOEXEC_undeclared.patch
deleted file mode 100644
index 4708bf1ebb..0000000000
--- a/meta/recipes-graphics/drm/libdrm/fix_O_CLOEXEC_undeclared.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1drmdevice.c: define _GNU_SOURCE
2
3Include config.h to fix this build error with uclibc:
4
5libdrm-2.4.66/tests/drmdevice.c: In function 'main':
6libdrm-2.4.66/tests/drmdevice.c:96:60: error:
7'O_CLOEXEC' undeclared (first use in this function)
8fd = open(devices[i]->nodes[j],O_RDONLY | O_CLOEXEC, 0);
9
10Upstream-Status: Pending
11
12Signed-off-by: Maxin B. John <maxin.john@intel.com>
13---
14diff -Naur libdrm-2.4.66-orig/tests/drmdevice.c libdrm-2.4.66/tests/drmdevice.c
15--- libdrm-2.4.66-orig/tests/drmdevice.c 2016-02-23 11:34:02.054904502 +0200
16+++ libdrm-2.4.66/tests/drmdevice.c 2016-02-23 11:35:34.371750383 +0200
17@@ -21,6 +21,7 @@
18 *
19 */
20
21+#include <config.h>
22 #include <errno.h>
23 #include <stdio.h>
24 #include <stdlib.h>
diff --git a/meta/recipes-graphics/drm/libdrm_2.4.92.bb b/meta/recipes-graphics/drm/libdrm_2.4.92.bb
index 8f59452a49..2b3bf4f83d 100644
--- a/meta/recipes-graphics/drm/libdrm_2.4.92.bb
+++ b/meta/recipes-graphics/drm/libdrm_2.4.92.bb
@@ -12,7 +12,6 @@ DEPENDS = "libpthread-stubs libpciaccess"
12 12
13SRC_URI = "http://dri.freedesktop.org/libdrm/${BP}.tar.bz2 \ 13SRC_URI = "http://dri.freedesktop.org/libdrm/${BP}.tar.bz2 \
14 file://installtests.patch \ 14 file://installtests.patch \
15 file://fix_O_CLOEXEC_undeclared.patch \
16 file://0001-configure.ac-Allow-explicit-enabling-of-cunit-tests.patch \ 15 file://0001-configure.ac-Allow-explicit-enabling-of-cunit-tests.patch \
17 " 16 "
18 17