diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-09-08 22:12:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-12 22:47:19 +0100 |
commit | 8a577fa7cf54db646f4e61f383390054e5f04ca3 (patch) | |
tree | fd43ce8fff8b1f922e4a5a36b28d986f1a1d53cb /meta/recipes-graphics/directfb/directfb.inc | |
parent | 3738dbf4d204e1c4f1dd2fad6a76291ffbbc414e (diff) | |
download | openembedded-core-8a577fa7cf54db646f4e61f383390054e5f04ca3.tar.gz openembedded-core-8a577fa7cf54db646f4e61f383390054e5f04ca3.tar.bz2 openembedded-core-8a577fa7cf54db646f4e61f383390054e5f04ca3.zip |
directfb: Avoid using VLAs and printf formats
These are not portable features and are flagged by clang
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-graphics/directfb/directfb.inc')
-rw-r--r-- | meta/recipes-graphics/directfb/directfb.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-graphics/directfb/directfb.inc b/meta/recipes-graphics/directfb/directfb.inc index 4fbca878ef..446aaeadb4 100644 --- a/meta/recipes-graphics/directfb/directfb.inc +++ b/meta/recipes-graphics/directfb/directfb.inc @@ -14,7 +14,9 @@ DEPENDS = "jpeg libpng freetype zlib tslib sysfsutils" SRC_URI = "http://www.directfb.org/downloads/Core/DirectFB-1.7/DirectFB-${PV}.tar.gz \ file://configurefix.patch \ file://fusion.patch \ - file://bashism.patch" + file://bashism.patch \ + file://0001-gfx-direct-Aboid-usng-VLAs-and-printf-formats.patch \ + " S = "${WORKDIR}/DirectFB-${PV}" |