diff options
-rw-r--r-- | meta/recipes-graphics/drm/libdrm/fix_O_CLOEXEC_undeclared.patch | 24 | ||||
-rw-r--r-- | meta/recipes-graphics/drm/libdrm_2.4.66.bb | 1 |
2 files changed, 25 insertions, 0 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 new file mode 100644 index 0000000000..286e548bc9 --- /dev/null +++ b/meta/recipes-graphics/drm/libdrm/fix_O_CLOEXEC_undeclared.patch | |||
@@ -0,0 +1,24 @@ | |||
1 | drmdevice.c: define _GNU_SOURCE | ||
2 | |||
3 | Include config.h to fix this build error with uclibc: | ||
4 | |||
5 | libdrm-2.4.66/tests/drmdevice.c: In function 'main': | ||
6 | libdrm-2.4.66/tests/drmdevice.c:96:60: error: | ||
7 | 'O_CLOEXEC' undeclared (first use in this function) | ||
8 | fd = open(devices[i]->nodes[j],O_RDONLY | O_CLOEXEC, 0); | ||
9 | |||
10 | Upstream-Status: Pending | ||
11 | |||
12 | Signed-off-by: Maxin B. John <maxin.john@intel.com> | ||
13 | --- | ||
14 | diff -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 <stdio.h> | ||
23 | #include <stdlib.h> | ||
24 | #include <sys/stat.h> | ||
diff --git a/meta/recipes-graphics/drm/libdrm_2.4.66.bb b/meta/recipes-graphics/drm/libdrm_2.4.66.bb index 3280920de1..79cd94af8c 100644 --- a/meta/recipes-graphics/drm/libdrm_2.4.66.bb +++ b/meta/recipes-graphics/drm/libdrm_2.4.66.bb | |||
@@ -14,6 +14,7 @@ SRC_URI = "http://dri.freedesktop.org/libdrm/${BP}.tar.bz2 \ | |||
14 | file://installtests.patch \ | 14 | file://installtests.patch \ |
15 | file://0001-tests-kms-steal-crtc-Include-sys-select.h.patch \ | 15 | file://0001-tests-kms-steal-crtc-Include-sys-select.h.patch \ |
16 | file://detect.patch \ | 16 | file://detect.patch \ |
17 | file://fix_O_CLOEXEC_undeclared.patch \ | ||
17 | " | 18 | " |
18 | 19 | ||
19 | SRC_URI[md5sum] = "c6809c48538d6e5999588832045ff014" | 20 | SRC_URI[md5sum] = "c6809c48538d6e5999588832045ff014" |