diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-03 23:07:52 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 01:28:46 +0200 |
| commit | bdef565cd6437d54f245563241e4a8e3f57fd489 (patch) | |
| tree | b448ca9f0cf14c20d559b089e4042fc7b8c34bba /package/pango | |
| parent | b4d1d4f5e2564b3ca19ce09fe41c2305c9e44373 (diff) | |
| download | buildroot-bdef565cd6437d54f245563241e4a8e3f57fd489.tar.gz buildroot-bdef565cd6437d54f245563241e4a8e3f57fd489.zip | |
pango: use the new gettext logic
This commit switches to use the new gettext logic, which involves:
- using TARGET_NLS_DEPENDENCIES instead of hand-encoded dependencies
on gettext/host-gettext
- dropping BR2_PACKAGE_GETTEXT selection
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/pango')
| -rw-r--r-- | package/pango/Config.in | 1 | ||||
| -rw-r--r-- | package/pango/pango.mk | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/package/pango/Config.in b/package/pango/Config.in index 7813c4ebaf..dd2117aa4a 100644 --- a/package/pango/Config.in +++ b/package/pango/Config.in @@ -11,7 +11,6 @@ config BR2_PACKAGE_PANGO select BR2_PACKAGE_FONTCONFIG select BR2_PACKAGE_FREETYPE select BR2_PACKAGE_HARFBUZZ - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7 help Pango is a library for laying out and rendering of text, with an diff --git a/package/pango/pango.mk b/package/pango/pango.mk index 2f2d580959..7556f0ba85 100644 --- a/package/pango/pango.mk +++ b/package/pango/pango.mk @@ -17,7 +17,7 @@ PANGO_CONF_OPTS = --enable-explicit-deps=no HOST_PANGO_CONF_OPTS = --enable-explicit-deps=no PANGO_DEPENDENCIES = \ - $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) \ + $(TARGET_NLS_DEPENDENCIES) \ host-pkgconf \ libglib2 \ cairo \ |

