* [Buildroot] [PATCH 1/5] gawk: show it in config menu when toolchain lacks wchar
@ 2011-10-11 14:02 Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 2/5] sed: " Gustavo Zacarias
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2011-10-11 14:02 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/gawk/Config.in | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/package/gawk/Config.in b/package/gawk/Config.in
index 62ca860..82c970f 100644
--- a/package/gawk/Config.in
+++ b/package/gawk/Config.in
@@ -7,3 +7,6 @@ config BR2_PACKAGE_GAWK
with just a few lines of code.
http://www.gnu.org/software/gawk/
+
+comment "gawk requires a toolchain with WCHAR support"
+ depends on !BR2_USE_WCHAR
--
1.7.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 2/5] sed: show it in config menu when toolchain lacks wchar
2011-10-11 14:02 [Buildroot] [PATCH 1/5] gawk: show it in config menu when toolchain lacks wchar Gustavo Zacarias
@ 2011-10-11 14:02 ` Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 3/5] portmap: use common syntax for RPC support needed comment Gustavo Zacarias
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2011-10-11 14:02 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/sed/Config.in | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/package/sed/Config.in b/package/sed/Config.in
index 950701c..1430915 100644
--- a/package/sed/Config.in
+++ b/package/sed/Config.in
@@ -6,4 +6,5 @@ config BR2_PACKAGE_SED
http://sed.sourceforge.net/
- Most people will answer Y.
+comment "sed requires a toolchain with WCHAR support"
+ depends on !BR2_USE_WCHAR
--
1.7.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 3/5] portmap: use common syntax for RPC support needed comment
2011-10-11 14:02 [Buildroot] [PATCH 1/5] gawk: show it in config menu when toolchain lacks wchar Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 2/5] sed: " Gustavo Zacarias
@ 2011-10-11 14:02 ` Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 4/5] radvd: show it in config menu when toolchain lacks ipv6 Gustavo Zacarias
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2011-10-11 14:02 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/portmap/Config.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/portmap/Config.in b/package/portmap/Config.in
index 1f22ab6..5914357 100644
--- a/package/portmap/Config.in
+++ b/package/portmap/Config.in
@@ -6,5 +6,5 @@ config BR2_PACKAGE_PORTMAP
http://neil.brown.name/portmap/
-comment "portmap requires a toolchain with 'Enable RPC' selected"
+comment "portmap requires a toolchain with RPC support"
depends on !BR2_INET_RPC
--
1.7.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 4/5] radvd: show it in config menu when toolchain lacks ipv6
2011-10-11 14:02 [Buildroot] [PATCH 1/5] gawk: show it in config menu when toolchain lacks wchar Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 2/5] sed: " Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 3/5] portmap: use common syntax for RPC support needed comment Gustavo Zacarias
@ 2011-10-11 14:02 ` Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 5/5] cvs: show it in config menu when toolchain lacks wchar Gustavo Zacarias
2011-10-11 14:11 ` [Buildroot] [PATCH 1/5] gawk: " Peter Korsgaard
4 siblings, 0 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2011-10-11 14:02 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/radvd/Config.in | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/package/radvd/Config.in b/package/radvd/Config.in
index c7753f0..20e7e55 100644
--- a/package/radvd/Config.in
+++ b/package/radvd/Config.in
@@ -7,3 +7,6 @@ config BR2_PACKAGE_RADVD
IPv6 Router Advertisement Daemon.
http://www.litech.org/radvd/
+
+comment "radvd requires a toolchain with IPV6 support"
+ depends on !BR2_INET_IPV6
--
1.7.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 5/5] cvs: show it in config menu when toolchain lacks wchar
2011-10-11 14:02 [Buildroot] [PATCH 1/5] gawk: show it in config menu when toolchain lacks wchar Gustavo Zacarias
` (2 preceding siblings ...)
2011-10-11 14:02 ` [Buildroot] [PATCH 4/5] radvd: show it in config menu when toolchain lacks ipv6 Gustavo Zacarias
@ 2011-10-11 14:02 ` Gustavo Zacarias
2011-10-11 14:11 ` [Buildroot] [PATCH 1/5] gawk: " Peter Korsgaard
4 siblings, 0 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2011-10-11 14:02 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/cvs/Config.in | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/package/cvs/Config.in b/package/cvs/Config.in
index 2e61834..f9d5955 100644
--- a/package/cvs/Config.in
+++ b/package/cvs/Config.in
@@ -12,3 +12,6 @@ config BR2_PACKAGE_CVS_SERVER
depends on BR2_PACKAGE_CVS
help
Enable cvs server code
+
+comment "cvs requires a toolchain with WCHAR support"
+ depends on !BR2_USE_WCHAR
--
1.7.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 1/5] gawk: show it in config menu when toolchain lacks wchar
2011-10-11 14:02 [Buildroot] [PATCH 1/5] gawk: show it in config menu when toolchain lacks wchar Gustavo Zacarias
` (3 preceding siblings ...)
2011-10-11 14:02 ` [Buildroot] [PATCH 5/5] cvs: show it in config menu when toolchain lacks wchar Gustavo Zacarias
@ 2011-10-11 14:11 ` Peter Korsgaard
4 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2011-10-11 14:11 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Committed all 5, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-10-11 14:11 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-11 14:02 [Buildroot] [PATCH 1/5] gawk: show it in config menu when toolchain lacks wchar Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 2/5] sed: " Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 3/5] portmap: use common syntax for RPC support needed comment Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 4/5] radvd: show it in config menu when toolchain lacks ipv6 Gustavo Zacarias
2011-10-11 14:02 ` [Buildroot] [PATCH 5/5] cvs: show it in config menu when toolchain lacks wchar Gustavo Zacarias
2011-10-11 14:11 ` [Buildroot] [PATCH 1/5] gawk: " Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox