s/#ifdef CONFIG_/#if ENABLE_/g

This commit is contained in:
Denis Vlasenko
2007-08-13 10:36:25 +00:00
parent 5f1b149d54
commit e324184c05
22 changed files with 60 additions and 56 deletions

View File

@ -14,7 +14,7 @@
#include "libbb.h"
#ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE
#if !ENABLE_FEATURE_CHECK_TAINTED_MODULE
static void check_tainted(void) { puts(""); }
#else
#define TAINT_FILENAME "/proc/sys/kernel/tainted"
@ -44,7 +44,7 @@ static void check_tainted(void)
}
#endif
#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
#if ENABLE_FEATURE_QUERY_MODULE_INTERFACE
struct module_info
{
@ -131,7 +131,7 @@ int lsmod_main(int argc, char **argv)
puts("");
}
#ifdef CONFIG_FEATURE_CLEAN_UP
#if ENABLE_FEATURE_CLEAN_UP
free(module_names);
#endif