diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-04-19 06:48:18 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-19 14:40:14 +0200 |
commit | a14f3d2e2ed76472a4f1ec32bf64220ee001bb5d (patch) | |
tree | fe047dc58bd197818da90f9dde177bd734225fe3 | |
parent | d0b812533c99638b8dd57902395856cf074b7fea (diff) | |
download | buildroot-a14f3d2e2ed76472a4f1ec32bf64220ee001bb5d.tar.gz buildroot-a14f3d2e2ed76472a4f1ec32bf64220ee001bb5d.zip |
harfbuzz: add host variant
Required for host-pango, which in turn is required for host-librsvg and
at last midori.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/harfbuzz/harfbuzz.mk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/harfbuzz/harfbuzz.mk b/package/harfbuzz/harfbuzz.mk index 0a69b09086..9cfd6130e7 100644 --- a/package/harfbuzz/harfbuzz.mk +++ b/package/harfbuzz/harfbuzz.mk @@ -11,6 +11,20 @@ HARFBUZZ_LICENSE = MIT, ISC (ucdn library) HARFBUZZ_LICENSE_FILES = COPYING src/hb-ucdn/COPYING HARFBUZZ_INSTALL_STAGING = YES HARFBUZZ_CONF_OPTS = --without-coretext --without-uniscribe --without-graphite2 + +# freetype & glib2 support required by host-pango +HOST_HARFBUZZ_DEPENDENCIES = \ + host-freetype \ + host-libglib2 +HOST_HARFBUZZ_CONF_OPTS = \ + --without-corext \ + --without-uniscribe \ + --without-graphite2 \ + --with-cairo=no \ + --with-icu=no \ + --with-freetype=yes \ + --with-glib=yes + # beta libtool version HARFBUZZ_AUTORECONF = YES @@ -48,3 +62,4 @@ HARFBUZZ_CONF_OPTS += --with-icu=no endif $(eval $(autotools-package)) +$(eval $(host-autotools-package)) |