diff options
author | Ron Yorston <rmy@pobox.com> | 2020-04-05 09:56:59 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2020-04-05 10:05:06 +0100 |
commit | 4ecfc9fc115221ec66769915bf02ac37c40ffcd5 (patch) | |
tree | ed9dfd2ea6bb0f2e5d98b3a511d1b3c6f9f7185b /libbb | |
parent | fbfb02e8637409f1367cb0d8a3d02f6366261ab4 (diff) | |
download | busybox-w32-4ecfc9fc115221ec66769915bf02ac37c40ffcd5.tar.gz busybox-w32-4ecfc9fc115221ec66769915bf02ac37c40ffcd5.tar.bz2 busybox-w32-4ecfc9fc115221ec66769915bf02ac37c40ffcd5.zip |
httpd: enable in default configurations
Enable the httpd applet in WIN32 default configurations. Some
additional features have also been enabled:
'Ranges:' header
Basic HTTP authentication
Custom error pages
GZIP content encoding
Common Gateway Interface (CGI) and related features are not enabled.
Basic HTTP authentication requires bb_simplify_abs_path_inplace().
This function shouldn't be used for WIN32 paths. In this case it's
processing a URL which is OK.
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 799f6d01a..dab1e6dae 100644 --- a/libbb/Kbuild.src +++ b/libbb/Kbuild.src | |||
@@ -66,6 +66,7 @@ lib-y += safe_poll.o | |||
66 | lib-y += safe_strncpy.o | 66 | lib-y += safe_strncpy.o |
67 | lib-y += safe_write.o | 67 | lib-y += safe_write.o |
68 | lib-y += securetty.o | 68 | lib-y += securetty.o |
69 | lib-y += simplify_path.o | ||
69 | lib-y += single_argv.o | 70 | lib-y += single_argv.o |
70 | lib-y += skip_whitespace.o | 71 | lib-y += skip_whitespace.o |
71 | lib-y += str_tolower.o | 72 | lib-y += str_tolower.o |
@@ -109,7 +110,6 @@ lib-$(CONFIG_PLATFORM_POSIX) += progress.o | |||
109 | lib-$(CONFIG_PLATFORM_POSIX) += read_key.o | 110 | lib-$(CONFIG_PLATFORM_POSIX) += read_key.o |
110 | lib-$(CONFIG_PLATFORM_POSIX) += setup_environment.o | 111 | lib-$(CONFIG_PLATFORM_POSIX) += setup_environment.o |
111 | lib-$(CONFIG_PLATFORM_POSIX) += signals.o | 112 | lib-$(CONFIG_PLATFORM_POSIX) += signals.o |
112 | lib-$(CONFIG_PLATFORM_POSIX) += simplify_path.o | ||
113 | lib-$(CONFIG_PLATFORM_POSIX) += speed_table.o | 113 | lib-$(CONFIG_PLATFORM_POSIX) += speed_table.o |
114 | lib-$(CONFIG_PLATFORM_POSIX) += udp_io.o | 114 | lib-$(CONFIG_PLATFORM_POSIX) += udp_io.o |
115 | lib-$(CONFIG_PLATFORM_POSIX) += warn_ignoring_args.o | 115 | lib-$(CONFIG_PLATFORM_POSIX) += warn_ignoring_args.o |