Date: Tue, 1 Oct 2019 18:14:38 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r352935 - in head/usr.sbin: . httpd simple_httpd Message-ID: <201910011814.x91IEcMB060045@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910011814.x91IEcMB060045>