mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 23:39:40 +01:00
libdrm: fix build with uclibc
Fix 'O_CLOEXEC' undeclared error with uclibc (From OE-Core rev: 6e779962f3846cbe5a5cb205f66b9bd9404f6d57) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4e5a871718
commit
4553bb1b88
@@ -0,0 +1,24 @@
|
||||
drmdevice.c: define _GNU_SOURCE
|
||||
|
||||
Include config.h to fix this build error with uclibc:
|
||||
|
||||
libdrm-2.4.66/tests/drmdevice.c: In function 'main':
|
||||
libdrm-2.4.66/tests/drmdevice.c:96:60: error:
|
||||
'O_CLOEXEC' undeclared (first use in this function)
|
||||
fd = open(devices[i]->nodes[j],O_RDONLY | O_CLOEXEC, 0);
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Maxin B. John <maxin.john@intel.com>
|
||||
---
|
||||
diff -Naur libdrm-2.4.66-orig/tests/drmdevice.c libdrm-2.4.66/tests/drmdevice.c
|
||||
--- libdrm-2.4.66-orig/tests/drmdevice.c 2016-02-23 11:34:02.054904502 +0200
|
||||
+++ libdrm-2.4.66/tests/drmdevice.c 2016-02-23 11:35:34.371750383 +0200
|
||||
@@ -21,6 +21,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
+#include <config.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/stat.h>
|
||||
@@ -14,6 +14,7 @@ SRC_URI = "http://dri.freedesktop.org/libdrm/${BP}.tar.bz2 \
|
||||
file://installtests.patch \
|
||||
file://0001-tests-kms-steal-crtc-Include-sys-select.h.patch \
|
||||
file://detect.patch \
|
||||
file://fix_O_CLOEXEC_undeclared.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "c6809c48538d6e5999588832045ff014"
|
||||
|
||||
Reference in New Issue
Block a user