mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
package/freetype: unconditionally disable harfbuzz
Commit 939e714393
added an optional
harfbuzz dependency to freetype but this creates a circular dependency
so unconditionally disable it
Fixes:
- http://autobuild.buildroot.org/results/3cc4ce3207a253186a9c4f8f5151ea0fc0854a28
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
0d9ea09bc9
commit
a98b79e2e6
@ -14,6 +14,10 @@ FREETYPE_LICENSE_FILES = docs/LICENSE.TXT docs/FTL.TXT docs/GPLv2.TXT
|
|||||||
FREETYPE_DEPENDENCIES = host-pkgconf
|
FREETYPE_DEPENDENCIES = host-pkgconf
|
||||||
FREETYPE_CONFIG_SCRIPTS = freetype-config
|
FREETYPE_CONFIG_SCRIPTS = freetype-config
|
||||||
|
|
||||||
|
# harfbuzz already depends on freetype so disable harfbuzz in freetype to avoid
|
||||||
|
# a circular dependency
|
||||||
|
FREETYPE_CONF_OPTS = --without-harfbuzz
|
||||||
|
|
||||||
HOST_FREETYPE_DEPENDENCIES = host-pkgconf
|
HOST_FREETYPE_DEPENDENCIES = host-pkgconf
|
||||||
HOST_FREETYPE_CONF_OPTS = \
|
HOST_FREETYPE_CONF_OPTS = \
|
||||||
--without-brotli \
|
--without-brotli \
|
||||||
@ -47,13 +51,6 @@ else
|
|||||||
FREETYPE_CONF_OPTS += --without-bzip2
|
FREETYPE_CONF_OPTS += --without-bzip2
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_HARFBUZZ),y)
|
|
||||||
FREETYPE_DEPENDENCIES += harfbuzz
|
|
||||||
FREETYPE_CONF_OPTS += --with-harbuzz
|
|
||||||
else
|
|
||||||
FREETYPE_CONF_OPTS += --without-harfbuzz
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
||||||
FREETYPE_DEPENDENCIES += libpng
|
FREETYPE_DEPENDENCIES += libpng
|
||||||
FREETYPE_CONF_OPTS += --with-png
|
FREETYPE_CONF_OPTS += --with-png
|
||||||
|
Loading…
Reference in New Issue
Block a user