Skip site navigation (1)Skip section navigation (2)
Date:      Thu,  3 Mar 2005 11:19:52 +0100 (CET)
From:      Hendrik Scholz <hendrik@scholz.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        Hendrik Scholz <hendrik@scholz.net>
Subject:   ports/78351: maintainer-update: www/lighttpd (1.3.11 to 1.3.12)
Message-ID:  <20050303101952.04D894BCC7@mail.wormulon.net>
Resent-Message-ID: <200503031020.j23AK52M055765@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         78351
>Category:       ports
>Synopsis:       maintainer-update: www/lighttpd (1.3.11 to 1.3.12)
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Mar 03 10:20:05 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Hendrik Scholz
>Release:        FreeBSD 5.2.1-RELEASE-p9 i386
>Organization:
>Environment:
System: FreeBSD plant.wormulon.net 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #0: Fri Aug 13 11:32:22 CEST 2004 hscholz@h2012.ka.strato.de:/usr/src/sys/i386/compile/PLANT i386


	
>Description:

Update lighttpd from 1.3.11 to 1.3.12

Changes:
	- remove files/patch-src::mod_cgi.c (incorporated into main distribution)
	- add spawn-fcgi manpage
	- s/SIGCLD/SIGCHLD/ in server.c using files/patch-src::server.c

>How-To-Repeat:
	
>Fix:

	

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/www/lighttpd/Makefile,v
retrieving revision 1.14
diff -u -u -r1.14 Makefile
--- Makefile	22 Feb 2005 18:42:58 -0000	1.14
+++ Makefile	3 Mar 2005 10:16:16 -0000
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	lighttpd
-PORTVERSION=	1.3.11
+PORTVERSION=	1.3.12
 CATEGORIES=	www
 MASTER_SITES=	http://www.lighttpd.net/download/ \
 				http://dl.fkb.wormulon.net/lighttpd/ \
@@ -33,7 +33,7 @@
 CONFIGURE_ARGS+=	--with-openssl
 .endif
 
-MAN1=		lighttpd.1
+MAN1=		lighttpd.1 spawn-fcgi.1
 
 pre-everything::
 .if !defined(WITHOUT_OPENSSL)
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/www/lighttpd/distinfo,v
retrieving revision 1.11
diff -u -u -r1.11 distinfo
--- distinfo	22 Feb 2005 18:42:58 -0000	1.11
+++ distinfo	3 Mar 2005 10:16:16 -0000
@@ -1,2 +1,2 @@
-MD5 (lighttpd-1.3.11.tar.gz) = 730c9b9d743360d23e523968ab4fe7c5
-SIZE (lighttpd-1.3.11.tar.gz) = 670438
+MD5 (lighttpd-1.3.12.tar.gz) = ffd0bc5802646948e2724060031c05b5
+SIZE (lighttpd-1.3.12.tar.gz) = 677919


files/patch-src::server.c


--- src/server.c.orig	Thu Mar  3 10:59:28 2005
+++ src/server.c	Thu Mar  3 10:59:48 2005
@@ -71,7 +71,7 @@
 	case SIGTERM: srv_shutdown = 1; break;
 	case SIGALRM: handle_sig_alarm = 1; break;
 	case SIGHUP:  handle_sig_hup = 1; break;
-	case SIGCLD: break;
+	case SIGCHLD: break;
 	}
 }
 #elif defined(HAVE_SIGNAL) || defined(HAVE_SIGACTION)
@@ -80,7 +80,7 @@
 	case SIGTERM: srv_shutdown = 1; break;
 	case SIGALRM: handle_sig_alarm = 1; break;
 	case SIGHUP:  handle_sig_hup = 1; break;
-	case SIGCLD:  break;
+	case SIGCHLD:  break;
 	}
 }
 #endif
@@ -686,7 +686,7 @@
 	sigaction(SIGTERM, &act, NULL);
 	sigaction(SIGHUP,  &act, NULL);
 	sigaction(SIGALRM, &act, NULL);
-	sigaction(SIGCLD, &act, NULL);
+	sigaction(SIGCHLD, &act, NULL);
 	
 #elif defined(HAVE_SIGNAL)
 	/* ignore the SIGPIPE from sendfile() */
@@ -695,7 +695,7 @@
 	signal(SIGALRM, signal_handler);
 	signal(SIGTERM, signal_handler);
 	signal(SIGHUP,  signal_handler);
-	signal(SIGCLD,  signal_handler);
+	signal(SIGCHLD,  signal_handler);
 #endif
 	
 #ifdef USE_ALARM


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050303101952.04D894BCC7>