View | Details | Raw Unified | Return to bug 215536
Collapse All | Expand All

(-)Makefile (-2 / +1 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME?=	lighttpd
4
PORTNAME?=	lighttpd
5
PORTVERSION=	1.4.43
5
PORTVERSION=	1.4.44
6
PORTREVISION=	2
7
CATEGORIES?=	www
6
CATEGORIES?=	www
8
MASTER_SITES?=	http://download.lighttpd.net/lighttpd/releases-1.4.x/
7
MASTER_SITES?=	http://download.lighttpd.net/lighttpd/releases-1.4.x/
9
8
(-)distinfo (-3 / +3 lines)
Lines 1-5 Link Here
1
TIMESTAMP = 1477993209
1
TIMESTAMP = 1482580986
2
SHA256 (lighttpd-1.4.43.tar.xz) = fe0c4a06dd2408a83ee7a2bfedc45e09597f3313cbda82485507573ae8fa948a
2
SHA256 (lighttpd-1.4.44.tar.xz) = adb66ca985651957feb209c91c55ebbf917d23630bfc3a216a2f70043c7b5422
3
SIZE (lighttpd-1.4.43.tar.xz) = 656248
3
SIZE (lighttpd-1.4.44.tar.xz) = 660304
4
SHA256 (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch) = 716cd4f8d371e12c115a2204e649aafe2ebad42d0099777b1361c0e2cc8a1612
4
SHA256 (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch) = 716cd4f8d371e12c115a2204e649aafe2ebad42d0099777b1361c0e2cc8a1612
5
SIZE (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch) = 242456
5
SIZE (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch) = 242456
(-)files/patch-src_mod__cgi.c (-13 lines)
Lines 1-13 Link Here
1
--- src/mod_cgi.c.orig	2016-10-31 13:16:40 UTC
2
+++ src/mod_cgi.c
3
@@ -35,8 +35,9 @@
4
 
5
 #include <stdio.h>
6
 #include <fcntl.h>
7
+#include <sys/param.h>
8
 
9
-#if defined(O_CLOEXEC) && (!defined(__FreeBSD__) || defined(F_DUPFD_CLOEXEC))
10
+#if defined(O_CLOEXEC) && (!defined(__FreeBSD__) || __FreeBSD_version >= 1000032) 
11
 #define pipe_cloexec(pipefd) pipe2((pipefd), O_CLOEXEC)
12
 #elif defined FD_CLOEXEC
13
 #define pipe_cloexec(pipefd) \

Return to bug 215536