diff options
author | Ross Burton <ross.burton@intel.com> | 2014-05-14 11:13:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-15 23:24:04 +0100 |
commit | 17131d42c02b591e1b6d547852cb09b004b8d609 (patch) | |
tree | 8c9125fbd07d22121ac6a5f3f2abf66ab840fe78 /meta | |
parent | 596470547451084944082cbed50351ad0d912255 (diff) | |
download | openembedded-core-17131d42c02b591e1b6d547852cb09b004b8d609.tar.gz openembedded-core-17131d42c02b591e1b6d547852cb09b004b8d609.tar.bz2 openembedded-core-17131d42c02b591e1b6d547852cb09b004b8d609.zip |
freetype: disable harfbuzz
Freetype has an automatically detected dependency on Harfbuzz, which has a
dependency on Freetype.
To produce deterministic builds and avoid link failures when rebuilding freetype
with harfbuzz present add a PACKAGECONFIG for Harfbuzz and disable it by
default.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/freetype/freetype_2.5.3.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-graphics/freetype/freetype_2.5.3.bb b/meta/recipes-graphics/freetype/freetype_2.5.3.bb index 7182c21943..5d239e85fa 100644 --- a/meta/recipes-graphics/freetype/freetype_2.5.3.bb +++ b/meta/recipes-graphics/freetype/freetype_2.5.3.bb @@ -26,6 +26,8 @@ EXTRA_OECONF = "--without-zlib --without-bzip2 CC_BUILD='${BUILD_CC}'" PACKAGECONFIG ??= "" PACKAGECONFIG[pixmap] = "--with-png,--without-png,libpng" +# This results in a circular dependency so enabling is non-trivial +PACKAGECONFIG[harfbuzz] = "--with-harfbuzz,--without-harfbuzz,harfbuzz" do_configure() { cd builds/unix |