|
@@ -258,6 +258,7 @@ config BR2_PACKAGE_QT5BASE_DBUS
|
|
|
|
|
|
config BR2_PACKAGE_QT5BASE_ICU
|
|
|
bool "Enable ICU support"
|
|
|
+ depends on BR2_HOST_GCC_AT_LEAST_4_8 # icu
|
|
|
depends on !BR2_BINFMT_FLAT # icu
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # icu
|
|
|
select BR2_PACKAGE_ICU
|
|
@@ -265,9 +266,10 @@ config BR2_PACKAGE_QT5BASE_ICU
|
|
|
This option enables ICU support in Qt5. This is for example
|
|
|
needed for Qt5Webkit.
|
|
|
|
|
|
-comment "icu support needs a toolchain w/ gcc >= 4.8"
|
|
|
+comment "icu support needs a toolchain w/ gcc >= 4.8, host gcc >= 4.8"
|
|
|
depends on !BR2_BINFMT_FLAT
|
|
|
- depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|
|
|
+ depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
|
|
|
+ !BR2_HOST_GCC_AT_LEAST_4_8
|
|
|
|
|
|
config BR2_PACKAGE_QT5BASE_TSLIB
|
|
|
bool "Enable Tslib support"
|