diff options
author | 2014-02-23 23:58:09 +0100 | |
---|---|---|
committer | 2014-02-24 09:02:24 +0100 | |
commit | ec7c940a3b5c0fed964789b2c7c6cf92681471e0 (patch) | |
tree | 098f8a1d9de428a36f78272306294c154175fe3f | |
parent | da02c35278206bf3aa9d1a47d28d0e4a5e5ba95f (diff) | |
download | buildroot-ec7c940a3b5c0fed964789b2c7c6cf92681471e0.tar.gz buildroot-ec7c940a3b5c0fed964789b2c7c6cf92681471e0.tar.bz2 |
packages: missing propagation of !mmu from pango
A number of packages that select Pango (which depends on BR2_USE_MMU)
forget to also depends on BR2_USE_MMU. This commit fixes that.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/gstreamer/gst-plugins-base/Config.in | 1 | ||||
-rw-r--r-- | package/gstreamer1/gst1-plugins-base/Config.in | 1 | ||||
-rw-r--r-- | package/libgail/Config.in | 1 | ||||
-rw-r--r-- | package/webkit/Config.in | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/package/gstreamer/gst-plugins-base/Config.in b/package/gstreamer/gst-plugins-base/Config.in index 95f84d385e..ccc88f7cd8 100644 --- a/package/gstreamer/gst-plugins-base/Config.in +++ b/package/gstreamer/gst-plugins-base/Config.in @@ -87,6 +87,7 @@ config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PANGO depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR # pango -> libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # pango -> libglib2 + depends on BR2_USE_MMU # pango -> glib2 select BR2_PACKAGE_PANGO comment "pango plugin needs a toolchain w/ C++, wchar, threads" diff --git a/package/gstreamer1/gst1-plugins-base/Config.in b/package/gstreamer1/gst1-plugins-base/Config.in index 55960ea9a6..3b487c5f6a 100644 --- a/package/gstreamer1/gst1-plugins-base/Config.in +++ b/package/gstreamer1/gst1-plugins-base/Config.in @@ -131,6 +131,7 @@ config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_PANGO depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR # pango -> libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # pango -> libglib2 + depends on BR2_USE_MMU # pango -> libglib2 select BR2_PACKAGE_PANGO help Pango-based text rendering and overlay diff --git a/package/libgail/Config.in b/package/libgail/Config.in index 4335bef347..e9975329b1 100644 --- a/package/libgail/Config.in +++ b/package/libgail/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_LIBGAIL bool "libgail" depends on BR2_USE_WCHAR # pango -> libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # pango -> libglib2 + depends on BR2_USE_MMU # pango -> libglib2 depends on BR2_PACKAGE_LIBGTK2 select BR2_PACKAGE_PANGO help diff --git a/package/webkit/Config.in b/package/webkit/Config.in index 0486490a26..2b0addcf5a 100644 --- a/package/webkit/Config.in +++ b/package/webkit/Config.in @@ -13,6 +13,7 @@ config BR2_PACKAGE_WEBKIT depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR # enchant -> libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # enchant -> libglib2 + depends on BR2_USE_MMU # libgail -> pango -> libglib2 depends on BR2_PACKAGE_LIBGTK2 depends on BR2_PACKAGE_WEBKIT_ARCH_SUPPORTS depends on !BR2_BINFMT_FLAT # icu |