diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Config.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/editors/Config.in b/editors/Config.in index e4fdd0f38..ca04de2d6 100644 --- a/editors/Config.in +++ b/editors/Config.in | |||
@@ -8,6 +8,7 @@ menu "Editors" | |||
8 | config AWK | 8 | config AWK |
9 | bool "awk" | 9 | bool "awk" |
10 | default n | 10 | default n |
11 | depends on PLATFORM_POSIX | ||
11 | help | 12 | help |
12 | Awk is used as a pattern scanning and processing language. This is | 13 | Awk is used as a pattern scanning and processing language. This is |
13 | the BusyBox implementation of that programming language. | 14 | the BusyBox implementation of that programming language. |
@@ -23,6 +24,7 @@ config FEATURE_AWK_LIBM | |||
23 | config CMP | 24 | config CMP |
24 | bool "cmp" | 25 | bool "cmp" |
25 | default n | 26 | default n |
27 | depends on PLATFORM_POSIX | ||
26 | help | 28 | help |
27 | cmp is used to compare two files and returns the result | 29 | cmp is used to compare two files and returns the result |
28 | to standard output. | 30 | to standard output. |
@@ -30,6 +32,7 @@ config CMP | |||
30 | config DIFF | 32 | config DIFF |
31 | bool "diff" | 33 | bool "diff" |
32 | default n | 34 | default n |
35 | depends on PLATFORM_POSIX | ||
33 | help | 36 | help |
34 | diff compares two files or directories and outputs the | 37 | diff compares two files or directories and outputs the |
35 | differences between them in a form that can be given to | 38 | differences between them in a form that can be given to |
@@ -53,6 +56,7 @@ config FEATURE_DIFF_DIR | |||
53 | config ED | 56 | config ED |
54 | bool "ed" | 57 | bool "ed" |
55 | default n | 58 | default n |
59 | depends on PLATFORM_POSIX | ||
56 | help | 60 | help |
57 | The original 1970's Unix text editor, from the days of teletypes. | 61 | The original 1970's Unix text editor, from the days of teletypes. |
58 | Small, simple, evil. Part of SUSv3. If you're not already using | 62 | Small, simple, evil. Part of SUSv3. If you're not already using |
@@ -61,12 +65,14 @@ config ED | |||
61 | config PATCH | 65 | config PATCH |
62 | bool "patch" | 66 | bool "patch" |
63 | default n | 67 | default n |
68 | depends on PLATFORM_POSIX | ||
64 | help | 69 | help |
65 | Apply a unified diff formatted patch. | 70 | Apply a unified diff formatted patch. |
66 | 71 | ||
67 | config SED | 72 | config SED |
68 | bool "sed" | 73 | bool "sed" |
69 | default n | 74 | default n |
75 | depends on PLATFORM_POSIX | ||
70 | help | 76 | help |
71 | sed is used to perform text transformations on a file | 77 | sed is used to perform text transformations on a file |
72 | or input from a pipeline. | 78 | or input from a pipeline. |
@@ -74,6 +80,7 @@ config SED | |||
74 | config VI | 80 | config VI |
75 | bool "vi" | 81 | bool "vi" |
76 | default n | 82 | default n |
83 | depends on PLATFORM_POSIX | ||
77 | help | 84 | help |
78 | 'vi' is a text editor. More specifically, it is the One True | 85 | 'vi' is a text editor. More specifically, it is the One True |
79 | text editor <grin>. It does, however, have a rather steep | 86 | text editor <grin>. It does, however, have a rather steep |