package/pango: add dependency on libfribidi
Since commit5cce413eb1
("package/pango: bump to version 1.44.6"), pango needs libfribidi. Through the Meson subprojects mechanism, it tries to download it by itself if not available. But in Buildroot, we definitely want to use the separate libfribidi package, so let's add it as a dependency of pango. Fixes: http://autobuild.buildroot.net/results/f16fda910da23dfe5f8ac1cb51f9dbcec444b516 subprocess.CalledProcessError: Command '['git', 'clone', 'https://github.com/fribidi/fribidi.git', 'fribidi']' returned non-zero exit status 128. Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit861b74b1c5
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
a6a2420a95
commit
fb4f870cc7
@ -7,6 +7,7 @@ config BR2_PACKAGE_PANGO
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # harfbuzz
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # harfbuzz
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBFRIBIDI
|
||||
select BR2_PACKAGE_EXPAT
|
||||
select BR2_PACKAGE_CAIRO
|
||||
select BR2_PACKAGE_FONTCONFIG
|
||||
|
@ -19,6 +19,7 @@ PANGO_DEPENDENCIES = \
|
||||
$(TARGET_NLS_DEPENDENCIES) \
|
||||
host-pkgconf \
|
||||
libglib2 \
|
||||
libfribidi \
|
||||
cairo \
|
||||
harfbuzz \
|
||||
fontconfig \
|
||||
@ -26,6 +27,7 @@ PANGO_DEPENDENCIES = \
|
||||
HOST_PANGO_DEPENDENCIES = \
|
||||
host-pkgconf \
|
||||
host-libglib2 \
|
||||
host-libfribidi \
|
||||
host-cairo \
|
||||
host-harfbuzz \
|
||||
host-fontconfig \
|
||||
|
Loading…
Reference in New Issue
Block a user