diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-26 14:31:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-26 23:01:32 +0000 |
commit | bbbd6fc1d1342936b583289c6dcaf7b4ea60eb5c (patch) | |
tree | 539a863c65bf653934ddf2c6174ff0a0340b5d4a /meta/recipes-graphics/harfbuzz | |
parent | 5048f59b5cb071b2ca893f24ee2aeb8d24a7e397 (diff) | |
download | poky-bbbd6fc1d1342936b583289c6dcaf7b4ea60eb5c.tar.gz |
harfbuzz: Add PACKAGECONFIG for icu
harfbuzz can be built without icu. We don't need harfbuzz-icu for any
default OE-Core configuration so default to icu being disabled for
performance improvements.
(From OE-Core rev: d61230ac70158dd9a33fcfac4eea768d21ccc61d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/harfbuzz')
-rw-r--r-- | meta/recipes-graphics/harfbuzz/harfbuzz_0.9.22.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_0.9.22.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_0.9.22.bb index e315f7803d..26f3f388ce 100644 --- a/meta/recipes-graphics/harfbuzz/harfbuzz_0.9.22.bb +++ b/meta/recipes-graphics/harfbuzz/harfbuzz_0.9.22.bb | |||
@@ -18,11 +18,14 @@ SRC_URI[sha256sum] = "989680807e76197418338e44f226e02f155f33031efd9aff14dbc4dc14 | |||
18 | 18 | ||
19 | inherit autotools pkgconfig | 19 | inherit autotools pkgconfig |
20 | 20 | ||
21 | DEPENDS = "icu glib-2.0 cairo freetype" | 21 | DEPENDS = "glib-2.0 cairo freetype" |
22 | 22 | ||
23 | BBCLASSEXTEND = "native" | 23 | BBCLASSEXTEND = "native" |
24 | 24 | ||
25 | EXTRA_OECONF = "--with-glib --with-freetype --with-cairo --with-icu --without-graphite2" | 25 | EXTRA_OECONF = "--with-glib --with-freetype --with-cairo --without-graphite2" |
26 | |||
27 | PACKAGECONFIG = "" | ||
28 | PACKAGECONFIG[icu] = "--with-icu,--without-icu,icu" | ||
26 | 29 | ||
27 | PACKAGES =+ "${PN}-icu ${PN}-icu-dbg ${PN}-icu-dev" | 30 | PACKAGES =+ "${PN}-icu ${PN}-icu-dbg ${PN}-icu-dev" |
28 | 31 | ||