package/pango: add dependency on libfribidi

Since commit 5cce413eb1 ("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>
This commit is contained in:
Peter Seiderer 2019-12-09 21:52:24 +01:00 committed by Thomas Petazzoni
parent 4bfa49d195
commit 861b74b1c5
2 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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 \