aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJochen Neumeister <joneum@FreeBSD.org>2018-09-26 16:27:39 +0000
committerJochen Neumeister <joneum@FreeBSD.org>2018-09-26 16:27:39 +0000
commit1f4aa2d0f5c45899e106ccb6b7da08f38ae84fdc (patch)
tree47444806d0410bc72704eab52af357ebd3b9b1cf
parentf819b03f91b9283990b50896a730424cc366c631 (diff)
downloadports-1f4aa2d0f5c45899e106ccb6b7da08f38ae84fdc.tar.gz
ports-1f4aa2d0f5c45899e106ccb6b7da08f38ae84fdc.zip
MFH: r480688
www/apache24: Update to 2.4.35 Changelog: *) http: Enforce consistently no response body with both 204 and 304 statuses. [Yann Ylavic] *) mod_status: Cumulate CPU time of exited child processes in the "cu" and "cs" values. Add CPU time of the parent process to the "c" and "s" values. [Rainer Jung] *) mod_proxy: Improve the balancer member data shown in mod_status when "ProxyStatus" is "On": add "busy" count and show byte counts in auto mode always in units of kilobytes. [Rainer Jung] *) mod_status: Add cumulated response duration time in milliseconds. [Rainer Jung] *) mod_status: Complete the data shown for async MPMs in "auto" mode. Added number of processes, number of stopping processes and number of busy and idle workers. [Rainer Jung] *) mod_ratelimit: Don't interfere with "chunked" encoding, fixing regression introduced in 2.4.34. PR 62568. [Yann Ylavic] *) mod_proxy: Remove load order and link dependency between mod_lbmethod_* modules and mod_proxy. PR 62557. [Ruediger Pluem, William Rowe] *) Allow the argument to <IfFile>, <IfDefine>, <IfSection>, <IfDirective>, and <IfModule> to be quoted. This is primarily for the benefit of <IfFile>. [Eric Covener] *) mod_watchdog: Correct some log messages. [Rainer Jung] *) mod_md: When the last domain name from an MD is moved to another one, that now empty MD gets moved to the store archive. PR 62572. [Stefan Eissing] *) mod_ssl: Fix merging of SSLOCSPOverrideResponder. [Jeff Trawick, [Frank Meier <frank meier ergon.ch>] *) mod_proxy_balancer: Restore compatibility with APR 1.4. [Joe Orton] With hat: apache Approved by: ports-secteam (miwi)
Notes
Notes: svn path=/branches/2018Q3/; revision=480748
-rw-r--r--www/apache24/Makefile2
-rw-r--r--www/apache24/distinfo6
-rw-r--r--www/apache24/files/patch-modules_md_md__crypt.c19
3 files changed, 4 insertions, 23 deletions
diff --git a/www/apache24/Makefile b/www/apache24/Makefile
index fef56aedc5a8..f690b55e4835 100644
--- a/www/apache24/Makefile
+++ b/www/apache24/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= apache24
-PORTVERSION= 2.4.34
+PORTVERSION= 2.4.35
CATEGORIES= www ipv6
MASTER_SITES= APACHE_HTTPD
DISTNAME= httpd-${PORTVERSION}
diff --git a/www/apache24/distinfo b/www/apache24/distinfo
index df0d8357363b..85815bb5df94 100644
--- a/www/apache24/distinfo
+++ b/www/apache24/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1531769087
-SHA256 (apache24/httpd-2.4.34.tar.bz2) = fa53c95631febb08a9de41fd2864cfff815cf62d9306723ab0d4b8d7aa1638f0
-SIZE (apache24/httpd-2.4.34.tar.bz2) = 6942969
+TIMESTAMP = 1537900540
+SHA256 (apache24/httpd-2.4.35.tar.bz2) = 2607c6fdd4d12ac3f583127629291e9432b247b782396a563bec5678aae69b56
+SIZE (apache24/httpd-2.4.35.tar.bz2) = 7044336
diff --git a/www/apache24/files/patch-modules_md_md__crypt.c b/www/apache24/files/patch-modules_md_md__crypt.c
deleted file mode 100644
index 2fd107698ef9..000000000000
--- a/www/apache24/files/patch-modules_md_md__crypt.c
+++ /dev/null
@@ -1,19 +0,0 @@
-Upstream https://svn.apache.org/viewvc?view=revision&revision=1836096
-
-On the 2.4.x branch:
-
-merge r1836095 from trunk:
-* using the, hopefully correct, ever elusive libressl version numbering check
- for the new openssl API calls, fixes PR 62548.
-
---- modules/md/md_crypt.c.orig 2018-06-29 11:53:50 UTC
-+++ modules/md/md_crypt.c
-@@ -52,7 +52,7 @@
-
- #if defined(LIBRESSL_VERSION_NUMBER)
- /* Missing from LibreSSL */
--#define MD_USE_OPENSSL_PRE_1_1_API (LIBRESSL_VERSION_NUMBER < 0x2080000f)
-+#define MD_USE_OPENSSL_PRE_1_1_API (LIBRESSL_VERSION_NUMBER < 0x2070000f)
- #else /* defined(LIBRESSL_VERSION_NUMBER) */
- #define MD_USE_OPENSSL_PRE_1_1_API (OPENSSL_VERSION_NUMBER < 0x10100000L)
- #endif