From 0790de59cdc36fa0efe36df05fe7cbdae3f46dad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Pouiller?= Date: Fri, 19 Sep 2014 16:52:58 +0200 Subject: [PATCH] whois: Fix unmet dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix : BR2_PACKAGE_WHOIS selects BR2_PACKAGE_GETTEXT which has unmet direct dependencies (BR2_USE_WCHAR) Signed-off-by: Jérôme Pouiller Reviewed-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- package/whois/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/whois/Config.in b/package/whois/Config.in index 40b6590140..95e3dc6101 100644 --- a/package/whois/Config.in +++ b/package/whois/Config.in @@ -1,7 +1,11 @@ config BR2_PACKAGE_WHOIS bool "whois" + depends on BR2_USE_WCHAR # gettext select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT help Improved whois client. http://www.linux.it/~md/software/ + +comment "whois needs a toolchain w/ wchar" + depends on !BR2_USE_WCHAR