diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-02-03 14:42:29 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-08 00:50:28 +0000 |
commit | a4021674edbb47cead999a10fa85210e397456ba (patch) | |
tree | fe6acdacab7bf4eb31540a8e57291517083d005e /meta/recipes-graphics/drm | |
parent | fadd55460381679483a5786fe27fb34e31113d32 (diff) | |
download | poky-a4021674edbb47cead999a10fa85210e397456ba.tar.gz |
libdrm: Fix build failure unearthed by uclibc
uclibc wants to know value of __USE_GNU for certain
header prototypes to be enabled. So we move the config.h
header up in search list.
(From OE-Core rev: 086679cfbc30dba4af2f650984084195e5171b8f)
Signed-off-by: Khem Raj <raj.khem@gmail.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/GNU_SOURCE_definition.patch | 30 | ||||
-rw-r--r-- | meta/recipes-graphics/drm/libdrm_2.4.30.bb | 6 |
2 files changed, 34 insertions, 2 deletions
diff --git a/meta/recipes-graphics/drm/libdrm/GNU_SOURCE_definition.patch b/meta/recipes-graphics/drm/libdrm/GNU_SOURCE_definition.patch new file mode 100644 index 0000000000..8eb1d5e1ea --- /dev/null +++ b/meta/recipes-graphics/drm/libdrm/GNU_SOURCE_definition.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | uclibc headers need to know if _GNU_SOURCE is defined or not and its defined | ||
2 | in config.h so include it first to get the definition if its there fixed build | ||
3 | problems on uclibc | ||
4 | |||
5 | test_decode.c:107:2: error: implicit declaration of function 'open_memstream' [-Werror=implicit-function-declaration] | ||
6 | |||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | Upstream-Status: Pending | ||
9 | |||
10 | Index: libdrm-2.4.30/intel/test_decode.c | ||
11 | =================================================================== | ||
12 | --- libdrm-2.4.30.orig/intel/test_decode.c 2012-02-03 14:28:46.409355918 -0800 | ||
13 | +++ libdrm-2.4.30/intel/test_decode.c 2012-02-03 14:29:02.357356689 -0800 | ||
14 | @@ -21,6 +21,8 @@ | ||
15 | * IN THE SOFTWARE. | ||
16 | */ | ||
17 | |||
18 | +#include "config.h" | ||
19 | + | ||
20 | #include <string.h> | ||
21 | #include <stdlib.h> | ||
22 | #include <stdio.h> | ||
23 | @@ -31,7 +33,6 @@ | ||
24 | #include <sys/mman.h> | ||
25 | #include <err.h> | ||
26 | |||
27 | -#include "config.h" | ||
28 | #include "intel_bufmgr.h" | ||
29 | #include "intel_chipset.h" | ||
30 | |||
diff --git a/meta/recipes-graphics/drm/libdrm_2.4.30.bb b/meta/recipes-graphics/drm/libdrm_2.4.30.bb index 4a6052d211..5d999165e8 100644 --- a/meta/recipes-graphics/drm/libdrm_2.4.30.bb +++ b/meta/recipes-graphics/drm/libdrm_2.4.30.bb | |||
@@ -2,9 +2,11 @@ require libdrm.inc | |||
2 | 2 | ||
3 | LIC_FILES_CHKSUM = "file://xf86drm.c;beginline=9;endline=32;md5=c8a3b961af7667c530816761e949dc71" | 3 | LIC_FILES_CHKSUM = "file://xf86drm.c;beginline=9;endline=32;md5=c8a3b961af7667c530816761e949dc71" |
4 | 4 | ||
5 | PR = "r0" | 5 | PR = "r1" |
6 | 6 | ||
7 | SRC_URI += "file://installtests.patch" | 7 | SRC_URI += "file://installtests.patch \ |
8 | file://GNU_SOURCE_definition.patch \ | ||
9 | " | ||
8 | 10 | ||
9 | SRC_URI[md5sum] = "9f57a68b2c0836b55ebcbc241f6ca175" | 11 | SRC_URI[md5sum] = "9f57a68b2c0836b55ebcbc241f6ca175" |
10 | SRC_URI[sha256sum] = "cacea9c157ec824ad278a06f4910659b2f3ae69686518ece8d6967843cddcd56" | 12 | SRC_URI[sha256sum] = "cacea9c157ec824ad278a06f4910659b2f3ae69686518ece8d6967843cddcd56" |