diff options
author | André Draszik <andre.draszik@linaro.org> | 2013-07-19 09:39:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-24 11:35:34 +0100 |
commit | bbab6e78f437eedfbb7dcb09c2d5c57ee71210a3 (patch) | |
tree | e28bd37fd240e0f0bb1cb4a09b02cb9c2915fa95 /meta/recipes-graphics/directfb/directfb.inc | |
parent | de52f892dbbd330db2c05a9da691ca679a260070 (diff) | |
download | poky-bbab6e78f437eedfbb7dcb09c2d5c57ee71210a3.tar.gz |
directfb: don't patch pkg-config files
We are currently getting build failures of projects that rely on
being able to access DirectFB's internal include directories, as
returned via pkg-config, since the include paths returned by
pkg-config are incomplete.
The reason for that is the patch that is being removed with this
change. It modified the cflags returned by pkg-config in an
incorrect way, causing us to miss important include paths:
For reference, pkg-config output with incorrect patch applied:
ad@bril0118 #513 ~> pkg-config --cflags directfb-internal
-D_GNU_SOURCE -D_REENTRANT -I<builddir>/tmp/sysroots/<machine>/usr/include/directfb -I<builddir>/tmp/sysroots/<machine>/usr/include
Now, with the incorrect patch removed, the output is as expected:
ad@bril0118 #514 ~> pkg-config --cflags directfb-internal
-D_GNU_SOURCE -D_REENTRANT -I<builddir>/tmp/sysroots/<machine>/usr/include/directfb-internal -I<builddir>/tmp/sysroots/<machine>/usr/include/directfb
Overall, the removed patch is not needed - pkg-config does the right
thing these days and we can simply use the correctly working upstream
versions of all DirectFB .pc files.
(From OE-Core rev: 795db65706d28bc194244a2ebbe6624ded584a33)
Signed-off-by: André Draszik <andre.draszik@linaro.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/directfb/directfb.inc')
-rw-r--r-- | meta/recipes-graphics/directfb/directfb.inc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/recipes-graphics/directfb/directfb.inc b/meta/recipes-graphics/directfb/directfb.inc index cff8a7f312..97a4c550df 100644 --- a/meta/recipes-graphics/directfb/directfb.inc +++ b/meta/recipes-graphics/directfb/directfb.inc | |||
@@ -14,7 +14,6 @@ DEPENDS = "jpeg libpng freetype zlib tslib" | |||
14 | INC_PR = "r0" | 14 | INC_PR = "r0" |
15 | 15 | ||
16 | SRC_URI = "http://directfb.org/downloads/Core/DirectFB-1.6/DirectFB-${PV}.tar.gz \ | 16 | SRC_URI = "http://directfb.org/downloads/Core/DirectFB-1.6/DirectFB-${PV}.tar.gz \ |
17 | file://directfb-1.2.x-fix-pkgconfig-cflags.patch \ | ||
18 | file://configurefix.patch \ | 17 | file://configurefix.patch \ |
19 | file://mesa9.patch" | 18 | file://mesa9.patch" |
20 | 19 | ||