aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2020-04-05 09:56:59 +0100
committerRon Yorston <rmy@pobox.com>2020-04-05 10:05:06 +0100
commit4ecfc9fc115221ec66769915bf02ac37c40ffcd5 (patch)
treeed9dfd2ea6bb0f2e5d98b3a511d1b3c6f9f7185b /libbb
parentfbfb02e8637409f1367cb0d8a3d02f6366261ab4 (diff)
downloadbusybox-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.src2
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
66lib-y += safe_strncpy.o 66lib-y += safe_strncpy.o
67lib-y += safe_write.o 67lib-y += safe_write.o
68lib-y += securetty.o 68lib-y += securetty.o
69lib-y += simplify_path.o
69lib-y += single_argv.o 70lib-y += single_argv.o
70lib-y += skip_whitespace.o 71lib-y += skip_whitespace.o
71lib-y += str_tolower.o 72lib-y += str_tolower.o
@@ -109,7 +110,6 @@ lib-$(CONFIG_PLATFORM_POSIX) += progress.o
109lib-$(CONFIG_PLATFORM_POSIX) += read_key.o 110lib-$(CONFIG_PLATFORM_POSIX) += read_key.o
110lib-$(CONFIG_PLATFORM_POSIX) += setup_environment.o 111lib-$(CONFIG_PLATFORM_POSIX) += setup_environment.o
111lib-$(CONFIG_PLATFORM_POSIX) += signals.o 112lib-$(CONFIG_PLATFORM_POSIX) += signals.o
112lib-$(CONFIG_PLATFORM_POSIX) += simplify_path.o
113lib-$(CONFIG_PLATFORM_POSIX) += speed_table.o 113lib-$(CONFIG_PLATFORM_POSIX) += speed_table.o
114lib-$(CONFIG_PLATFORM_POSIX) += udp_io.o 114lib-$(CONFIG_PLATFORM_POSIX) += udp_io.o
115lib-$(CONFIG_PLATFORM_POSIX) += warn_ignoring_args.o 115lib-$(CONFIG_PLATFORM_POSIX) += warn_ignoring_args.o