diff options
Diffstat (limited to 'busybox.def.h')
-rw-r--r-- | busybox.def.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/busybox.def.h b/busybox.def.h index d78a0efe8..cfafc29c8 100644 --- a/busybox.def.h +++ b/busybox.def.h | |||
@@ -40,6 +40,7 @@ | |||
40 | // Don't bother turning BB_INSMOD on. It doesn't work. | 40 | // Don't bother turning BB_INSMOD on. It doesn't work. |
41 | //#define BB_INSMOD | 41 | //#define BB_INSMOD |
42 | #define BB_KILL | 42 | #define BB_KILL |
43 | #define BB_KILLALL | ||
43 | #define BB_KLOGD | 44 | #define BB_KLOGD |
44 | //#define BB_LENGTH | 45 | //#define BB_LENGTH |
45 | #define BB_LN | 46 | #define BB_LN |
@@ -198,11 +199,23 @@ | |||
198 | #define BB_MTAB | 199 | #define BB_MTAB |
199 | #endif | 200 | #endif |
200 | // | 201 | // |
201 | #ifdef BB_FEATURE_FULL_REGULAR_EXPRESSIONS | 202 | #if defined BB_FEATURE_FULL_REGULAR_EXPRESSIONS && (defined BB_SED || defined BB_GREP ) |
202 | #define BB_REGEXP | 203 | #define BB_REGEXP |
203 | #endif | 204 | #endif |
204 | // | 205 | // |
205 | #ifdef BB_FEATURE_SH_COMMAND_EDITING | 206 | #if defined BB_FEATURE_SH_COMMAND_EDITING && defined BB_SH |
206 | #define BB_CMDEDIT | 207 | #define BB_CMDEDIT |
207 | #endif | 208 | #endif |
208 | // | 209 | // |
210 | #ifdef BB_KILLALL | ||
211 | #ifndef BB_KILL | ||
212 | #define BB_KILL | ||
213 | #endif | ||
214 | #endif | ||
215 | // | ||
216 | #ifdef BB_FEATURE_LINUXRC | ||
217 | #ifndef BB_INIT | ||
218 | #define BB_INIT | ||
219 | #endif | ||
220 | #endif | ||
221 | // | ||