randomconfig fixes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
1_15_stable
Denys Vlasenko 2009-07-15 18:27:47 +02:00
parent 0ad438b12a
commit 7dd0ce4953
2 changed files with 18 additions and 9 deletions

View File

@ -116,30 +116,36 @@ lib-y += xgethostbyname.o
lib-y += xreadlink.o lib-y += xreadlink.o
lib-y += xrealloc_vector.o lib-y += xrealloc_vector.o
# conditionally compiled objects: # A mix of optimizations (why build stuff we know won't be used)
lib-$(CONFIG_FEATURE_MOUNT_LOOP) += loop.o # and objects which may fail to build (SELinux on selinux-less system)
lib-$(CONFIG_LOSETUP) += loop.o lib-$(CONFIG_SELINUX) += selinux_common.o
lib-$(CONFIG_FEATURE_MTAB_SUPPORT) += mtab.o lib-$(CONFIG_FEATURE_MTAB_SUPPORT) += mtab.o
lib-$(CONFIG_FEATURE_ASSUME_UNICODE) += unicode.o
lib-$(CONFIG_FEATURE_CHECK_NAMES) += die_if_bad_username.o
lib-$(CONFIG_LOSETUP) += loop.o
lib-$(CONFIG_FEATURE_MOUNT_LOOP) += loop.o
lib-$(CONFIG_ADDGROUP) += update_passwd.o lib-$(CONFIG_ADDGROUP) += update_passwd.o
lib-$(CONFIG_ADDUSER) += update_passwd.o lib-$(CONFIG_ADDUSER) += update_passwd.o
lib-$(CONFIG_DELGROUP) += update_passwd.o lib-$(CONFIG_DELGROUP) += update_passwd.o
lib-$(CONFIG_DELUSER) += update_passwd.o lib-$(CONFIG_DELUSER) += update_passwd.o
lib-$(CONFIG_PASSWD) += pw_encrypt.o update_passwd.o lib-$(CONFIG_PASSWD) += pw_encrypt.o update_passwd.o
lib-$(CONFIG_CHPASSWD) += pw_encrypt.o update_passwd.o lib-$(CONFIG_CHPASSWD) += pw_encrypt.o update_passwd.o
lib-$(CONFIG_CRYPTPW) += pw_encrypt.o lib-$(CONFIG_CRYPTPW) += pw_encrypt.o
lib-$(CONFIG_SULOGIN) += pw_encrypt.o lib-$(CONFIG_SULOGIN) += pw_encrypt.o
lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o
lib-$(CONFIG_VLOCK) += pw_encrypt.o correct_password.o lib-$(CONFIG_VLOCK) += pw_encrypt.o correct_password.o
lib-$(CONFIG_SU) += pw_encrypt.o correct_password.o lib-$(CONFIG_SU) += pw_encrypt.o correct_password.o
lib-$(CONFIG_LOGIN) += pw_encrypt.o correct_password.o lib-$(CONFIG_LOGIN) += pw_encrypt.o correct_password.o
lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o
lib-$(CONFIG_DF) += find_mount_point.o lib-$(CONFIG_DF) += find_mount_point.o
lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o
lib-$(CONFIG_SELINUX) += selinux_common.o lib-$(CONFIG_FSCK_MINIX) += find_mount_point.o
lib-$(CONFIG_HWCLOCK) += rtc.o lib-$(CONFIG_HWCLOCK) += rtc.o
lib-$(CONFIG_RTCWAKE) += rtc.o lib-$(CONFIG_RTCWAKE) += rtc.o
lib-$(CONFIG_FEATURE_CHECK_NAMES) += die_if_bad_username.o
lib-$(CONFIG_FEATURE_ASSUME_UNICODE) += unicode.o
# We shouldn't build xregcomp.c if we don't need it - this ensures we don't # We shouldn't build xregcomp.c if we don't need it - this ensures we don't
# require regex.h to be in the include dir even if we don't need it thereby # require regex.h to be in the include dir even if we don't need it thereby

View File

@ -233,10 +233,12 @@ static size_t load_string(const char *src, int maxsize)
safe_strncpy(command_ps, src, maxsize); safe_strncpy(command_ps, src, maxsize);
return strlen(command_ps); return strlen(command_ps);
} }
# if ENABLE_FEATURE_TAB_COMPLETION
static void save_string(char *dst, int maxsize) static void save_string(char *dst, int maxsize)
{ {
safe_strncpy(dst, command_ps, maxsize); safe_strncpy(dst, command_ps, maxsize);
} }
# endif
# define BB_PUTCHAR(c) bb_putchar(c) # define BB_PUTCHAR(c) bb_putchar(c)
#endif #endif
@ -683,6 +685,7 @@ static void exe_n_cwd_tab_completion(char *command, int type)
#undef dirbuf #undef dirbuf
} }
//FIXME: HUH??? How about Unicode?
#define QUOT (UCHAR_MAX+1) #define QUOT (UCHAR_MAX+1)
#define collapse_pos(is, in) do { \ #define collapse_pos(is, in) do { \