aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-17 22:27:07 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-19 18:42:39 +0200
commit3908eb0368ad1a3f94e10f91027041fe54d70856 (patch)
tree26e369045aa122f07d50a9743cb24b5560bd7ac5
parent174e55daa96746dcd7e4a2b2afef7e7e26031dab (diff)
downloadbusybox-w32-3908eb0368ad1a3f94e10f91027041fe54d70856.tar.gz
busybox-w32-3908eb0368ad1a3f94e10f91027041fe54d70856.tar.bz2
busybox-w32-3908eb0368ad1a3f94e10f91027041fe54d70856.zip
Exclude files that will not compile on Windows
-rw-r--r--libbb/Kbuild27
1 files changed, 14 insertions, 13 deletions
diff --git a/libbb/Kbuild b/libbb/Kbuild
index 1b11d5d39..eb3cd5039 100644
--- a/libbb/Kbuild
+++ b/libbb/Kbuild
@@ -37,27 +37,20 @@ lib-y += fgets_str.o
37lib-y += find_pid_by_name.o 37lib-y += find_pid_by_name.o
38lib-y += find_root_device.o 38lib-y += find_root_device.o
39lib-y += full_write.o 39lib-y += full_write.o
40lib-y += get_console.o
41lib-y += get_last_path_component.o 40lib-y += get_last_path_component.o
42lib-y += get_line_from_file.o 41lib-y += get_line_from_file.o
43lib-y += getopt32.o 42lib-y += getopt32.o
44lib-y += getpty.o
45lib-y += get_volsize.o 43lib-y += get_volsize.o
46lib-y += herror_msg.o 44lib-y += herror_msg.o
47lib-y += herror_msg_and_die.o 45lib-y += herror_msg_and_die.o
48lib-y += human_readable.o 46lib-y += human_readable.o
49lib-y += inet_common.o
50lib-y += info_msg.o 47lib-y += info_msg.o
51lib-y += inode_hash.o 48lib-y += inode_hash.o
52lib-y += isdirectory.o 49lib-y += isdirectory.o
53lib-y += kernel_version.o
54lib-y += last_char_is.o 50lib-y += last_char_is.o
55lib-y += lineedit.o lineedit_ptr_hack.o 51lib-y += lineedit.o lineedit_ptr_hack.o
56lib-y += llist.o 52lib-y += llist.o
57lib-y += login.o
58lib-y += make_directory.o 53lib-y += make_directory.o
59lib-y += makedev.o
60lib-y += match_fstype.o
61lib-y += md5.o 54lib-y += md5.o
62# Alternative (disabled) implementation 55# Alternative (disabled) implementation
63#lib-y += md5prime.o 56#lib-y += md5prime.o
@@ -85,13 +78,11 @@ lib-y += read_key.o
85lib-y += recursive_action.o 78lib-y += recursive_action.o
86lib-y += remove_file.o 79lib-y += remove_file.o
87lib-y += run_shell.o 80lib-y += run_shell.o
88lib-y += safe_gethostname.o
89lib-y += safe_poll.o 81lib-y += safe_poll.o
90lib-y += safe_strncpy.o 82lib-y += safe_strncpy.o
91lib-y += safe_write.o 83lib-y += safe_write.o
92lib-y += setup_environment.o 84lib-y += setup_environment.o
93lib-y += sha1.o 85lib-y += sha1.o
94lib-y += signals.o
95lib-y += simplify_path.o 86lib-y += simplify_path.o
96lib-y += single_argv.o 87lib-y += single_argv.o
97lib-y += skip_whitespace.o 88lib-y += skip_whitespace.o
@@ -101,7 +92,6 @@ lib-y += strrstr.o
101lib-y += time.o 92lib-y += time.o
102lib-y += trim.o 93lib-y += trim.o
103lib-y += u_signal_names.o 94lib-y += u_signal_names.o
104lib-y += udp_io.o
105lib-y += uuencode.o 95lib-y += uuencode.o
106lib-y += vdprintf.o 96lib-y += vdprintf.o
107lib-y += verror_msg.o 97lib-y += verror_msg.o
@@ -111,15 +101,26 @@ lib-y += wfopen.o
111lib-y += wfopen_input.o 101lib-y += wfopen_input.o
112lib-y += write.o 102lib-y += write.o
113lib-y += xatonum.o 103lib-y += xatonum.o
114lib-y += xconnect.o 104lib-y += xfunc_die.o
115lib-y += xfuncs.o 105lib-y += xfuncs.o
116lib-y += xfuncs_printf.o 106lib-y += xfuncs_printf.o
117lib-y += xfunc_die.o
118lib-y += xgetcwd.o 107lib-y += xgetcwd.o
119lib-y += xgethostbyname.o
120lib-y += xreadlink.o 108lib-y += xreadlink.o
121lib-y += xrealloc_vector.o 109lib-y += xrealloc_vector.o
122 110
111lib-$(CONFIG_PLATFORM_POSIX) += get_console.o
112lib-$(CONFIG_PLATFORM_POSIX) += getpty.o
113lib-$(CONFIG_PLATFORM_POSIX) += inet_common.o
114lib-$(CONFIG_PLATFORM_POSIX) += kernel_version.o
115lib-$(CONFIG_PLATFORM_POSIX) += login.o
116lib-$(CONFIG_PLATFORM_POSIX) += makedev.o
117lib-$(CONFIG_PLATFORM_POSIX) += match_fstype.o
118lib-$(CONFIG_PLATFORM_POSIX) += safe_gethostname.o
119lib-$(CONFIG_PLATFORM_POSIX) += signals.o
120lib-$(CONFIG_PLATFORM_POSIX) += udp_io.o
121lib-$(CONFIG_PLATFORM_POSIX) += xconnect.o
122lib-$(CONFIG_PLATFORM_POSIX) += xgethostbyname.o
123
123lib-$(CONFIG_FEATURE_UTMP) += utmp.o 124lib-$(CONFIG_FEATURE_UTMP) += utmp.o
124 125
125# A mix of optimizations (why build stuff we know won't be used) 126# A mix of optimizations (why build stuff we know won't be used)