diff options
author | Erik Andersen | 2000-03-17 01:12:41 +0000 |
---|---|---|
committer | Erik Andersen | 2000-03-17 01:12:41 +0000 |
commit | 6273f655c8e5a1b7233f94fd606ceaed95b9c7a7 (patch) | |
tree | ad754ea972e52bb21db4323d916bacfb4f1c3f07 /busybox.def.h | |
parent | 161220c4985b8c05a57f09b2693a6cad74d2e81d (diff) | |
download | busybox-6273f655c8e5a1b7233f94fd606ceaed95b9c7a7.zip busybox-6273f655c8e5a1b7233f94fd606ceaed95b9c7a7.tar.gz |
Several fixes.
-Erik
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 d78a0ef..cfafc29 100644 --- a/busybox.def.h +++ b/busybox.def.h @@ -40,6 +40,7 @@ // Don't bother turning BB_INSMOD on. It doesn't work. //#define BB_INSMOD #define BB_KILL +#define BB_KILLALL #define BB_KLOGD //#define BB_LENGTH #define BB_LN @@ -198,11 +199,23 @@ #define BB_MTAB #endif // -#ifdef BB_FEATURE_FULL_REGULAR_EXPRESSIONS +#if defined BB_FEATURE_FULL_REGULAR_EXPRESSIONS && (defined BB_SED || defined BB_GREP ) #define BB_REGEXP #endif // -#ifdef BB_FEATURE_SH_COMMAND_EDITING +#if defined BB_FEATURE_SH_COMMAND_EDITING && defined BB_SH #define BB_CMDEDIT #endif // +#ifdef BB_KILLALL +#ifndef BB_KILL +#define BB_KILL +#endif +#endif +// +#ifdef BB_FEATURE_LINUXRC +#ifndef BB_INIT +#define BB_INIT +#endif +#endif +// |