|
@@ -10,16 +10,16 @@ HARFBUZZ_SOURCE = harfbuzz-$(HARFBUZZ_VERSION).tar.bz2
|
|
HARFBUZZ_LICENSE = MIT, ISC (ucdn library)
|
|
HARFBUZZ_LICENSE = MIT, ISC (ucdn library)
|
|
HARFBUZZ_LICENSE_FILES = COPYING src/hb-ucdn/COPYING
|
|
HARFBUZZ_LICENSE_FILES = COPYING src/hb-ucdn/COPYING
|
|
HARFBUZZ_INSTALL_STAGING = YES
|
|
HARFBUZZ_INSTALL_STAGING = YES
|
|
-HARFBUZZ_CONF_OPTS = --without-coretext --without-uniscribe --without-graphite2
|
|
|
|
|
|
+HARFBUZZ_CONF_OPTS = --with-coretext=no --with-uniscribe=no
|
|
|
|
|
|
# freetype & glib2 support required by host-pango
|
|
# freetype & glib2 support required by host-pango
|
|
HOST_HARFBUZZ_DEPENDENCIES = \
|
|
HOST_HARFBUZZ_DEPENDENCIES = \
|
|
host-freetype \
|
|
host-freetype \
|
|
host-libglib2
|
|
host-libglib2
|
|
HOST_HARFBUZZ_CONF_OPTS = \
|
|
HOST_HARFBUZZ_CONF_OPTS = \
|
|
- --without-corext \
|
|
|
|
- --without-uniscribe \
|
|
|
|
- --without-graphite2 \
|
|
|
|
|
|
+ --with-coretext=no \
|
|
|
|
+ --with-uniscribe=no \
|
|
|
|
+ --with-graphite2=no \
|
|
--with-cairo=no \
|
|
--with-cairo=no \
|
|
--with-icu=no \
|
|
--with-icu=no \
|
|
--with-freetype=yes \
|
|
--with-freetype=yes \
|
|
@@ -44,6 +44,13 @@ else
|
|
HARFBUZZ_CONF_OPTS += --with-freetype=no
|
|
HARFBUZZ_CONF_OPTS += --with-freetype=no
|
|
endif
|
|
endif
|
|
|
|
|
|
|
|
+ifeq ($(BR2_PACKAGE_GRAPHITE2),y)
|
|
|
|
+HARFBUZZ_DEPENDENCIES += graphite2
|
|
|
|
+HARFBUZZ_CONF_OPTS += --with-graphite2=yes
|
|
|
|
+else
|
|
|
|
+HARFBUZZ_CONF_OPTS += --with-graphite2=no
|
|
|
|
+endif
|
|
|
|
+
|
|
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
|
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
|
HARFBUZZ_DEPENDENCIES += libglib2
|
|
HARFBUZZ_DEPENDENCIES += libglib2
|
|
HARFBUZZ_CONF_OPTS += --with-glib=yes
|
|
HARFBUZZ_CONF_OPTS += --with-glib=yes
|