aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/mk/src.opts.mk1
-rw-r--r--tools/build/options/WITHOUT_HTTPD2
-rw-r--r--tools/build/options/WITH_HTTPD2
-rw-r--r--usr.sbin/Makefile1
-rw-r--r--usr.sbin/httpd/Makefile (renamed from release/picobsd/tinyware/simple_httpd/Makefile)4
-rw-r--r--usr.sbin/httpd/README (renamed from release/picobsd/tinyware/simple_httpd/README)0
-rw-r--r--usr.sbin/httpd/simple_httpd.c (renamed from release/picobsd/tinyware/simple_httpd/simple_httpd.c)0
7 files changed, 8 insertions, 2 deletions
diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk
index fac7f8d019db..fcba0a0f184a 100644
--- a/share/mk/src.opts.mk
+++ b/share/mk/src.opts.mk
@@ -198,6 +198,7 @@ __DEFAULT_NO_OPTIONS = \
EXPERIMENTAL \
GNU_GREP_COMPAT \
HESIOD \
+ HTTPD \
LIBSOFT \
LOADER_FIREWIRE \
LOADER_FORCE_LE \
diff --git a/tools/build/options/WITHOUT_HTTPD b/tools/build/options/WITHOUT_HTTPD
new file mode 100644
index 000000000000..c2b8143070ea
--- /dev/null
+++ b/tools/build/options/WITHOUT_HTTPD
@@ -0,0 +1,2 @@
+.\" $FreeBSD$
+Set to neither build nor install httpd
diff --git a/tools/build/options/WITH_HTTPD b/tools/build/options/WITH_HTTPD
new file mode 100644
index 000000000000..c175d20fb8c0
--- /dev/null
+++ b/tools/build/options/WITH_HTTPD
@@ -0,0 +1,2 @@
+.\" $FreeBSD$
+Set to build and install httpd
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile
index 7c028c5a1358..9bee390e9cd8 100644
--- a/usr.sbin/Makefile
+++ b/usr.sbin/Makefile
@@ -138,6 +138,7 @@ SUBDIR.${MK_FMTREE}+= fmtree
SUBDIR.${MK_FREEBSD_UPDATE}+= freebsd-update
SUBDIR.${MK_GSSAPI}+= gssd
SUBDIR.${MK_GPIO}+= gpioctl
+SUBDIR.${MK_HTTPD}+= httpd
SUBDIR.${MK_INET6}+= ip6addrctl
SUBDIR.${MK_INET6}+= mld6query
SUBDIR.${MK_INET6}+= ndp
diff --git a/release/picobsd/tinyware/simple_httpd/Makefile b/usr.sbin/httpd/Makefile
index 7b797acfe04d..080a1afb0b2d 100644
--- a/release/picobsd/tinyware/simple_httpd/Makefile
+++ b/usr.sbin/httpd/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
#
-PROG=simple_httpd
-SRCS= simple_httpd.c
+PROG= httpd
+SRCS= simple_httpd.c
MAN=
WARNS?=6
diff --git a/release/picobsd/tinyware/simple_httpd/README b/usr.sbin/httpd/README
index ade3be149a62..ade3be149a62 100644
--- a/release/picobsd/tinyware/simple_httpd/README
+++ b/usr.sbin/httpd/README
diff --git a/release/picobsd/tinyware/simple_httpd/simple_httpd.c b/usr.sbin/httpd/simple_httpd.c
index 768b1ce4c838..768b1ce4c838 100644
--- a/release/picobsd/tinyware/simple_httpd/simple_httpd.c
+++ b/usr.sbin/httpd/simple_httpd.c