Date: Thu, 3 Nov 2016 15:02:35 +0000 (UTC) From: Guido Falsi <madpilot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425228 - in head/www/lighttpd: . files Message-ID: <201611031502.uA3F2ZSl020659@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: madpilot Date: Thu Nov 3 15:02:35 2016 New Revision: 425228 URL: https://svnweb.freebsd.org/changeset/ports/425228 Log: Fix again usage of pipe2(2) in 9.3 PR: 213848 Submitted by: cedric <cedric@precidata.com> Patch by: Piotr Kubaj <pkubaj@anongoth.pl> (maintainer) Added: head/www/lighttpd/files/patch-src_mod__cgi.c (contents, props changed) Modified: head/www/lighttpd/Makefile Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Thu Nov 3 15:02:29 2016 (r425227) +++ head/www/lighttpd/Makefile Thu Nov 3 15:02:35 2016 (r425228) @@ -3,6 +3,7 @@ PORTNAME?= lighttpd PORTVERSION= 1.4.43 +PORTREVISION= 1 CATEGORIES?= www MASTER_SITES?= http://download.lighttpd.net/lighttpd/releases-1.4.x/ Added: head/www/lighttpd/files/patch-src_mod__cgi.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/lighttpd/files/patch-src_mod__cgi.c Thu Nov 3 15:02:35 2016 (r425228) @@ -0,0 +1,11 @@ +--- src/mod_cgi.c.orig 2016-11-02 13:53:21 UTC ++++ src/mod_cgi.c +@@ -36,7 +36,7 @@ + #include <stdio.h> + #include <fcntl.h> + +-#if defined(O_CLOEXEC) && (!defined(__FreeBSD__) || defined(F_DUPFD_CLOEXEC)) ++#if defined(O_CLOEXEC) && __FreeBSD_version >= 1000032 + #define pipe_cloexec(pipefd) pipe2((pipefd), O_CLOEXEC) + #elif defined FD_CLOEXEC + #define pipe_cloexec(pipefd) \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611031502.uA3F2ZSl020659>