diff options
| author | Peter Korsgaard <peter@korsgaard.com> | 2017-07-03 23:18:59 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2017-07-04 14:22:58 +0200 |
| commit | 7af50fddfd94468bb54b6d0ecf7edd1b016f9058 (patch) | |
| tree | bdfcfc730dacefe0e94147bb06eb072af0cbbba6 /package/webkitgtk | |
| parent | 478f342877fcbb7434748ff826317281a81ee7b4 (diff) | |
| download | buildroot-7af50fddfd94468bb54b6d0ecf7edd1b016f9058.tar.gz buildroot-7af50fddfd94468bb54b6d0ecf7edd1b016f9058.zip | |
icu: propagate host gcc dependency to reverse dependencies
Fixes:
http://autobuild.buildroot.net/results/821/821eae7add252e3711ed069a2d292a04427fa43b/
Commit 87f43c3403 (package/icu: needs host gcc >= 4.8) added a new toolchain
dependency to icu, but didn't propagate it to the reverse dependencies of
icu.
Some of these have been fixed in later commits, but not all.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/webkitgtk')
| -rw-r--r-- | package/webkitgtk/Config.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/webkitgtk/Config.in b/package/webkitgtk/Config.in index 0e53d06379..0754fe5123 100644 --- a/package/webkitgtk/Config.in +++ b/package/webkitgtk/Config.in @@ -10,16 +10,18 @@ config BR2_PACKAGE_WEBKITGTK_ARCH_SUPPORTS depends on BR2_USE_MMU # libglib2 depends on BR2_TOOLCHAIN_HAS_SYNC_4 -comment "webkitgtk needs libgtk3 and a glibc toolchain w/ C++, gcc >= 4.9" +comment "webkitgtk needs libgtk3 and a glibc toolchain w/ C++, gcc >= 4.9, host gcc >= 4.8" depends on BR2_PACKAGE_WEBKITGTK_ARCH_SUPPORTS depends on !BR2_PACKAGE_LIBGTK3 || !BR2_INSTALL_LIBSTDCPP || \ !BR2_TOOLCHAIN_USES_GLIBC || \ + !BR2_HOST_GCC_AT_LEAST_4_8 || \ !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 depends on BR2_USE_MMU config BR2_PACKAGE_WEBKITGTK bool "webkitgtk" depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_HOST_GCC_AT_LEAST_4_8 # icu depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 depends on BR2_TOOLCHAIN_USES_GLIBC depends on BR2_PACKAGE_LIBGTK3 |

