diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 10:36:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 10:36:25 +0000 |
commit | e324184c0509cc0db168ce29546e1b52800a79c6 (patch) | |
tree | 9d4f18b3cc1ab715b6ff91cc9e3e942d11dfc51f /include | |
parent | 5f1b149d541ebba7cab841cb647f113248f9fb8f (diff) | |
download | busybox-e324184c0509cc0db168ce29546e1b52800a79c6.tar.gz |
s/#ifdef CONFIG_/#if ENABLE_/g
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 | ||||
-rw-r--r-- | include/usage.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/libbb.h b/include/libbb.h index a14d6be44..0ea88a623 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -1026,7 +1026,7 @@ extern char bb_common_bufsiz1[COMMON_BUFSIZE]; /* See docs/keep_data_small.txt */ struct globals; /* '*const' ptr makes gcc optimize code much better. - * Magic prevents ptr_to_globals from going into rodata + * Magic prevents ptr_to_globals from going into rodata. * If you want to assign a value, use PTR_TO_GLOBALS = xxx */ extern struct globals *const ptr_to_globals; #define PTR_TO_GLOBALS (*(struct globals**)&ptr_to_globals) diff --git a/include/usage.h b/include/usage.h index 3f2916006..a1b39368b 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1946,7 +1946,7 @@ #define lsmod_full_usage \ "List the currently loaded kernel modules" -#ifdef CONFIG_FEATURE_MAKEDEVS_LEAF +#if ENABLE_FEATURE_MAKEDEVS_LEAF #define makedevs_trivial_usage \ "NAME TYPE MAJOR MINOR FIRST LAST [s]" #define makedevs_full_usage \ @@ -1969,7 +1969,7 @@ "[creates hda,hda1-hda8]\n" #endif -#ifdef CONFIG_FEATURE_MAKEDEVS_TABLE +#if ENABLE_FEATURE_MAKEDEVS_TABLE #define makedevs_trivial_usage \ "[-d device_table] rootdir" #define makedevs_full_usage \ @@ -2565,7 +2565,7 @@ USE_FEATURE_PIDOF_OMIT( \ "$ pidof /bin/sh -o %PPID\n20351 5950") -#ifndef CONFIG_FEATURE_FANCY_PING +#if !ENABLE_FEATURE_FANCY_PING #define ping_trivial_usage \ "host" #define ping_full_usage \ @@ -3430,7 +3430,7 @@ USE_FEATURE_RUN_PARTS_FANCY("\n -l Prints names of all matching files even when "$ cat /tmp/foo\n" \ "Hello\n" -#ifdef CONFIG_FEATURE_TELNET_AUTOLOGIN +#if ENABLE_FEATURE_TELNET_AUTOLOGIN #define telnet_trivial_usage \ "[-a] [-l USER] HOST [PORT]" #define telnet_full_usage \ |