freebsd-ports/www/mod_fastcgi/Makefile
Olli Hauer 7d5bf1875e - update to SNAP-0910052141 (unofficial ver. 2.4.7)
- adopt some small useful changes (errno report) from
  debian bugtracker [1] requested on the apache@ list

Changelog:
2.4.7
 *) *nix: On graceful restart, send SIGTERM, then wait 2sec before
    removing any unix domain sockets.  Based on a patch by Bernd Wurst.

 *) Fix uid_t/gid_t compiler warnings.  [Artur Zaprzala <arturz ownmail.net>]

 *) A few more EINTR fixes. [Artur Zaprzala <arturz ownmail.net>]

 *) Don't let the Content-Length header propagate on errors or across
    redirects.  [Artur Zaprzala <arturz ownmail.net>]

 *) Fix pass-header handling (prefix with HTTP_).  Based on a patch by
    [Christian Seiler <chris_se gmx.net>]

 *) Add an EOS bucket to the output filter chain.  Based on a patch by
    [Philipp Dunkel <p.dunkel i5invest.com>]

 *) Handle EINTR and EAGAIN in places AIX stress testing revealed
    issues.  Based on a patch by [Rainer Jung <rainer.jung kippdata.de>]

 *) Allow duplicate Status, Location and ContentType headers
    (consistent with mod_cgi).  Based on a patch by
    [Christian Seiler <chris_se gmx.net>]

 *) Fix a spurious idle timeout error that occurred under unique
    application timing and response size conditions.  Based on a
    report and patch by [Joe Strout <joe strout.net>]

[1]  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504132
[2]  http://lists.freebsd.org/pipermail/freebsd-apache/2013-March/003069.html

Submitted by:	Lilian RIGARD <lilian@devclic.fr> (apache@ list)
2013-03-27 18:17:22 +00:00

34 lines
697 B
Makefile

# Created by: JunSeon Oh <hollywar@mail.holywar.net>
# $FreeBSD$
PORTNAME= mod_fastcgi
PORTVERSION= 2.4.7
CATEGORIES= www
MASTER_SITES= http://www.fastcgi.com/dist/ \
LOCAL/ohauer
DISTNAME= mod_fastcgi-SNAP-0910052141
DIST_SUBDIR= apache2
MAINTAINER= apache@FreeBSD.org
COMMENT= A fast-cgi module for Apache
MAKE_JOBS_SAFE= yes
USE_APACHE= 22
AP_FAST_BUILD= yes
AP_GENPLIST= yes
SRC_FILE= *.c
PORTDOCS= LICENSE.TERMS mod_fastcgi.html
do-install:
@${APXS} -i -a -n ${SHORTMODNAME} ${WRKSRC}/${MODULENAME}.${AP_BUILDEXT}
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>