diff options
author | Ron Yorston <rmy@pobox.com> | 2018-03-01 11:18:33 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2018-03-01 11:18:33 +0000 |
commit | 5f8dac68690e92f0be220f8f8d9f797a2aedc806 (patch) | |
tree | 28c1d611ace374f615cac23415b35b2ab54059f4 /libbb | |
parent | 701a8d6783f09597e1c9b386b1e6ba890807854c (diff) | |
download | busybox-w32-5f8dac68690e92f0be220f8f8d9f797a2aedc806.tar.gz busybox-w32-5f8dac68690e92f0be220f8f8d9f797a2aedc806.tar.bz2 busybox-w32-5f8dac68690e92f0be220f8f8d9f797a2aedc806.zip |
Remove fake signal-handling code
Microsoft Windows has only limited support for signals. busybox-w32
initially papered over this fact by adding definitions for unsupported
signals and signal-handling functions.
Remove this fake code and deal with the consequences by excluding
anything that fails to compile as a result.
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Kbuild.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/Kbuild.src b/libbb/Kbuild.src index c0cc2baf5..4b838ab7a 100644 --- a/libbb/Kbuild.src +++ b/libbb/Kbuild.src | |||
@@ -12,7 +12,6 @@ INSERT | |||
12 | 12 | ||
13 | lib-y += appletlib.o | 13 | lib-y += appletlib.o |
14 | lib-y += ask_confirmation.o | 14 | lib-y += ask_confirmation.o |
15 | lib-y += bb_askpass.o | ||
16 | lib-y += bb_bswap_64.o | 15 | lib-y += bb_bswap_64.o |
17 | lib-y += bb_do_delay.o | 16 | lib-y += bb_do_delay.o |
18 | lib-y += bb_pwd.o | 17 | lib-y += bb_pwd.o |
@@ -105,6 +104,7 @@ lib-y += xgetcwd.o | |||
105 | lib-y += xreadlink.o | 104 | lib-y += xreadlink.o |
106 | lib-y += xrealloc_vector.o | 105 | lib-y += xrealloc_vector.o |
107 | 106 | ||
107 | lib-$(CONFIG_PLATFORM_POSIX) += bb_askpass.o | ||
108 | lib-$(CONFIG_PLATFORM_POSIX) += get_console.o | 108 | lib-$(CONFIG_PLATFORM_POSIX) += get_console.o |
109 | lib-$(CONFIG_PLATFORM_POSIX) += getpty.o | 109 | lib-$(CONFIG_PLATFORM_POSIX) += getpty.o |
110 | lib-$(CONFIG_PLATFORM_POSIX) += inet_common.o | 110 | lib-$(CONFIG_PLATFORM_POSIX) += inet_common.o |