svn commit: r352935 - in head/usr.sbin: . httpd simple_httpd

Kyle Evans kevans at FreeBSD.org
Tue Oct 1 18:14:38 UTC 2019


Author: kevans
Date: Tue Oct  1 18:14:37 2019
New Revision: 352935
URL: https://svnweb.freebsd.org/changeset/base/352935

Log:
  Move httpd to simple_httpd...
  
  This avoids PATH conflicts with a real httpd, as a user will likely almost
  always prefer the more fully-featured httpd. This also lines up with the
  historical name of the program.

Added:
  head/usr.sbin/simple_httpd/
     - copied from r352934, head/usr.sbin/httpd/
Deleted:
  head/usr.sbin/httpd/
Modified:
  head/usr.sbin/Makefile
  head/usr.sbin/simple_httpd/Makefile

Modified: head/usr.sbin/Makefile
==============================================================================
--- head/usr.sbin/Makefile	Tue Oct  1 18:13:45 2019	(r352934)
+++ head/usr.sbin/Makefile	Tue Oct  1 18:14:37 2019	(r352935)
@@ -138,7 +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_HTTPD}+=	simple_httpd
 SUBDIR.${MK_INET6}+=	ip6addrctl
 SUBDIR.${MK_INET6}+=	mld6query
 SUBDIR.${MK_INET6}+=	ndp

Modified: head/usr.sbin/simple_httpd/Makefile
==============================================================================
--- head/usr.sbin/httpd/Makefile	Tue Oct  1 18:13:45 2019	(r352934)
+++ head/usr.sbin/simple_httpd/Makefile	Tue Oct  1 18:14:37 2019	(r352935)
@@ -1,7 +1,6 @@
 # $FreeBSD$
 #
-PROG=	httpd
-SRCS=	simple_httpd.c
+PROG=	simple_httpd
 MAN=
 WARNS?=6
 


More information about the svn-src-all mailing list