diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-06 00:19:50 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-20 19:14:30 +0200 |
commit | 4e87a91f0cb6a350fc4c5ad5fad41dff58b8ce31 (patch) | |
tree | 23d187e9b3b346ac7fe2bd4752182416ff2700e2 | |
parent | ce96f7bd3ec832083d9a6460c707e2ab2669cbef (diff) | |
download | busybox-w32-4e87a91f0cb6a350fc4c5ad5fad41dff58b8ce31.tar.gz busybox-w32-4e87a91f0cb6a350fc4c5ad5fad41dff58b8ce31.tar.bz2 busybox-w32-4e87a91f0cb6a350fc4c5ad5fad41dff58b8ce31.zip |
win32: Config.in (open editors)
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
-rw-r--r-- | editors/Config.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editors/Config.in b/editors/Config.in index ca04de2d6..ba5ebb756 100644 --- a/editors/Config.in +++ b/editors/Config.in | |||
@@ -8,7 +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 | depends on PLATFORM_POSIX || PLATFORM_MINGW32 |
12 | help | 12 | help |
13 | 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 |
14 | the BusyBox implementation of that programming language. | 14 | the BusyBox implementation of that programming language. |
@@ -24,7 +24,7 @@ config FEATURE_AWK_LIBM | |||
24 | config CMP | 24 | config CMP |
25 | bool "cmp" | 25 | bool "cmp" |
26 | default n | 26 | default n |
27 | depends on PLATFORM_POSIX | 27 | depends on PLATFORM_POSIX || PLATFORM_MINGW32 |
28 | help | 28 | help |
29 | cmp is used to compare two files and returns the result | 29 | cmp is used to compare two files and returns the result |
30 | to standard output. | 30 | to standard output. |
@@ -32,7 +32,7 @@ config CMP | |||
32 | config DIFF | 32 | config DIFF |
33 | bool "diff" | 33 | bool "diff" |
34 | default n | 34 | default n |
35 | depends on PLATFORM_POSIX | 35 | depends on PLATFORM_POSIX || PLATFORM_MINGW32 |
36 | help | 36 | help |
37 | diff compares two files or directories and outputs the | 37 | diff compares two files or directories and outputs the |
38 | differences between them in a form that can be given to | 38 | differences between them in a form that can be given to |
@@ -56,7 +56,7 @@ config FEATURE_DIFF_DIR | |||
56 | config ED | 56 | config ED |
57 | bool "ed" | 57 | bool "ed" |
58 | default n | 58 | default n |
59 | depends on PLATFORM_POSIX | 59 | depends on PLATFORM_POSIX || PLATFORM_MINGW32 |
60 | help | 60 | help |
61 | 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. |
62 | 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 |
@@ -65,14 +65,14 @@ config ED | |||
65 | config PATCH | 65 | config PATCH |
66 | bool "patch" | 66 | bool "patch" |
67 | default n | 67 | default n |
68 | depends on PLATFORM_POSIX | 68 | depends on PLATFORM_POSIX || PLATFORM_MINGW32 |
69 | help | 69 | help |
70 | Apply a unified diff formatted patch. | 70 | Apply a unified diff formatted patch. |
71 | 71 | ||
72 | config SED | 72 | config SED |
73 | bool "sed" | 73 | bool "sed" |
74 | default n | 74 | default n |
75 | depends on PLATFORM_POSIX | 75 | depends on PLATFORM_POSIX || PLATFORM_MINGW32 |
76 | help | 76 | help |
77 | sed is used to perform text transformations on a file | 77 | sed is used to perform text transformations on a file |
78 | or input from a pipeline. | 78 | or input from a pipeline. |