summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
Diffstat (limited to 'package')
-rw-r--r--package/portage/Config.in4
-rw-r--r--package/python/Config.in4
2 files changed, 8 insertions, 0 deletions
diff --git a/package/portage/Config.in b/package/portage/Config.in
index 27661cd92..83778ff3c 100644
--- a/package/portage/Config.in
+++ b/package/portage/Config.in
@@ -1,7 +1,11 @@
config BR2_PACKAGE_PORTAGE
bool "portage"
select BR2_PACKAGE_PYTHON
+ depends on BR2_USE_WCHAR
help
Portage, the Gentoo package management tool.
http://www.gentoo.org/
+
+comment "portage requires a toolchain with WCHAR support"
+ depends on !BR2_USE_WCHAR
diff --git a/package/python/Config.in b/package/python/Config.in
index 6931eb70f..e77d7aa40 100644
--- a/package/python/Config.in
+++ b/package/python/Config.in
@@ -1,10 +1,14 @@
config BR2_PACKAGE_PYTHON
bool "python"
+ depends on BR2_USE_WCHAR
help
The python language interpreter.
http://www.python.org/
+comment "python requires a toolchain with WCHAR support"
+ depends on !BR2_USE_WCHAR
+
config BR2_PACKAGE_PYTHON_DEV
depends on BR2_PACKAGE_PYTHON
bool "development files on target"