Date: Sun, 28 Sep 2003 04:10:18 -0700 (PDT) From: Nicolas Jombart <ecu@ipv42.net> To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/55864: [PATCH] www/bozohttpd: basic http authentication support Message-ID: <200309281110.h8SBAILl016071@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/55864; it has been noted by GNATS. From: Nicolas Jombart <ecu@ipv42.net> To: FreeBSD-gnats-submit@FreeBSD.org Cc: Janos.Mohacsi@bsd.hu Subject: Re: ports/55864: [PATCH] www/bozohttpd: basic http authentication support Date: Sun, 28 Sep 2003 13:06:29 +0200 On Fri, Aug 22, 2003 at 02:37:34PM +0200, Nicolas Jombart wrote: > >Description: > Bozohttpd has a basic authentication support (.htpasswd), > disabled by default. Add an compilation option to enable this. > > Port maintainer (Janos.Mohacsi@bsd.hu) is cc'd. (thanks Janos) Same thing with update to 20030728 : Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/bozohttpd/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 11 Jul 2003 04:52:11 -0000 1.5 +++ Makefile 12 Sep 2003 17:46:51 -0000 @@ -6,7 +6,7 @@ # PORTNAME= bozohttpd -PORTVERSION= 20030622 +PORTVERSION= 20030728 CATEGORIES= www ipv6 MASTER_SITES= http://www.eterna.com.au/bozohttpd/ @@ -14,6 +14,11 @@ COMMENT= The bozotic HTTP server USE_BZIP2= YES + +.if defined(WITH_HTPASSWD_SUPPORT) +CFLAGS+= -DDO_HTPASSWD +MAKE_ARGS+= 'LDFLAGS+= -lcrypt' +.endif MAN8= bozohttpd.8 MANCOMPRESSED= maybe Index: distinfo =================================================================== RCS file: /home/ncvs/ports/www/bozohttpd/distinfo,v retrieving revision 1.4 diff -u -r1.4 distinfo --- distinfo 11 Jul 2003 04:52:11 -0000 1.4 +++ distinfo 12 Sep 2003 17:46:51 -0000 @@ -1 +1 @@ -MD5 (bozohttpd-20030622.tar.bz2) = 7b00a2184a5fdf79ea35f63d119e5800 +MD5 (bozohttpd-20030728.tar.bz2) = f1c78a1c76be1834336f2f0b9e4038e7
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200309281110.h8SBAILl016071>