summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 10:36:25 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-13 10:36:25 +0000
commite324184c0509cc0db168ce29546e1b52800a79c6 (patch)
tree9d4f18b3cc1ab715b6ff91cc9e3e942d11dfc51f /include
parent5f1b149d541ebba7cab841cb647f113248f9fb8f (diff)
downloadbusybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.tar.gz
busybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.tar.bz2
busybox-w32-e324184c0509cc0db168ce29546e1b52800a79c6.zip
s/#ifdef CONFIG_/#if ENABLE_/g
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
-rw-r--r--include/usage.h8
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];
1026/* See docs/keep_data_small.txt */ 1026/* See docs/keep_data_small.txt */
1027struct globals; 1027struct globals;
1028/* '*const' ptr makes gcc optimize code much better. 1028/* '*const' ptr makes gcc optimize code much better.
1029 * Magic prevents ptr_to_globals from going into rodata 1029 * Magic prevents ptr_to_globals from going into rodata.
1030 * If you want to assign a value, use PTR_TO_GLOBALS = xxx */ 1030 * If you want to assign a value, use PTR_TO_GLOBALS = xxx */
1031extern struct globals *const ptr_to_globals; 1031extern struct globals *const ptr_to_globals;
1032#define PTR_TO_GLOBALS (*(struct globals**)&ptr_to_globals) 1032#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 @@
1946#define lsmod_full_usage \ 1946#define lsmod_full_usage \
1947 "List the currently loaded kernel modules" 1947 "List the currently loaded kernel modules"
1948 1948
1949#ifdef CONFIG_FEATURE_MAKEDEVS_LEAF 1949#if ENABLE_FEATURE_MAKEDEVS_LEAF
1950#define makedevs_trivial_usage \ 1950#define makedevs_trivial_usage \
1951 "NAME TYPE MAJOR MINOR FIRST LAST [s]" 1951 "NAME TYPE MAJOR MINOR FIRST LAST [s]"
1952#define makedevs_full_usage \ 1952#define makedevs_full_usage \
@@ -1969,7 +1969,7 @@
1969 "[creates hda,hda1-hda8]\n" 1969 "[creates hda,hda1-hda8]\n"
1970#endif 1970#endif
1971 1971
1972#ifdef CONFIG_FEATURE_MAKEDEVS_TABLE 1972#if ENABLE_FEATURE_MAKEDEVS_TABLE
1973#define makedevs_trivial_usage \ 1973#define makedevs_trivial_usage \
1974 "[-d device_table] rootdir" 1974 "[-d device_table] rootdir"
1975#define makedevs_full_usage \ 1975#define makedevs_full_usage \
@@ -2565,7 +2565,7 @@
2565 USE_FEATURE_PIDOF_OMIT( \ 2565 USE_FEATURE_PIDOF_OMIT( \
2566 "$ pidof /bin/sh -o %PPID\n20351 5950") 2566 "$ pidof /bin/sh -o %PPID\n20351 5950")
2567 2567
2568#ifndef CONFIG_FEATURE_FANCY_PING 2568#if !ENABLE_FEATURE_FANCY_PING
2569#define ping_trivial_usage \ 2569#define ping_trivial_usage \
2570 "host" 2570 "host"
2571#define ping_full_usage \ 2571#define ping_full_usage \
@@ -3430,7 +3430,7 @@ USE_FEATURE_RUN_PARTS_FANCY("\n -l Prints names of all matching files even when
3430 "$ cat /tmp/foo\n" \ 3430 "$ cat /tmp/foo\n" \
3431 "Hello\n" 3431 "Hello\n"
3432 3432
3433#ifdef CONFIG_FEATURE_TELNET_AUTOLOGIN 3433#if ENABLE_FEATURE_TELNET_AUTOLOGIN
3434#define telnet_trivial_usage \ 3434#define telnet_trivial_usage \
3435 "[-a] [-l USER] HOST [PORT]" 3435 "[-a] [-l USER] HOST [PORT]"
3436#define telnet_full_usage \ 3436#define telnet_full_usage \