Index | Thread | Search

From:
Brad Smith <brad@comstyle.com>
Subject:
UPDATE: lighttpd 1.4.74
To:
ports@openbsd.org
Date:
Sat, 24 Feb 2024 03:37:54 -0500

Download raw body.

Thread
  • Brad Smith:

    UPDATE: lighttpd 1.4.74

Here is an update to lighttpd 1.4.74.


https://redmine.lighttpd.net/projects/lighttpd/repository/14/revisions/master/entry/NEWS


Index: Makefile
===================================================================
RCS file: /cvs/ports/www/lighttpd/Makefile,v
retrieving revision 1.179
diff -u -p -u -p -r1.179 Makefile
--- Makefile	27 Sep 2023 19:13:03 -0000	1.179
+++ Makefile	24 Feb 2024 08:30:52 -0000
@@ -1,6 +1,6 @@
 COMMENT=	secure, fast, compliant, and very flexible web-server
 
-DISTNAME=	lighttpd-1.4.71
+DISTNAME=	lighttpd-1.4.74
 CATEGORIES=	www net
 SITES=		https://download.lighttpd.net/lighttpd/releases-1.4.x/
 EXTRACT_SUFX=	.tar.xz
Index: distinfo
===================================================================
RCS file: /cvs/ports/www/lighttpd/distinfo,v
retrieving revision 1.73
diff -u -p -u -p -r1.73 distinfo
--- distinfo	29 May 2023 17:41:10 -0000	1.73
+++ distinfo	24 Feb 2024 08:30:52 -0000
@@ -1,2 +1,2 @@
-SHA256 (lighttpd-1.4.71.tar.xz) = uLaRXaIDlv3DVN8zJNXkQBabLl6nhZ46d1IThBMlr6w=
-SIZE (lighttpd-1.4.71.tar.xz) = 1070904
+SHA256 (lighttpd-1.4.74.tar.xz) = XAhzboMIj34Bl5cVnzBuiOxymr6XbcmPs77XG50+U7U=
+SIZE (lighttpd-1.4.74.tar.xz) = 1098796
Index: patches/patch-src_sys-crypto-md_h
===================================================================
RCS file: patches/patch-src_sys-crypto-md_h
diff -N patches/patch-src_sys-crypto-md_h
--- patches/patch-src_sys-crypto-md_h	30 Dec 2023 07:29:04 -0000	1.2
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,17 +0,0 @@
-Use EVP API for truncated SHA-2 with LibreSSL
-
-https://github.com/lighttpd/lighttpd1.4/commit/84eb5462e324c072dbd0dac1bd4cf558a7ff71e0
-
-Index: src/sys-crypto-md.h
---- src/sys-crypto-md.h.orig
-+++ src/sys-crypto-md.h
-@@ -496,7 +496,8 @@ SHA512_Update(SHA512_CTX *ctx, const void *data, size_
- #ifdef BORINGSSL_API_VERSION
- typedef SHA512_CTX SHA512_256_CTX;
- #endif
--#if OPENSSL_VERSION_NUMBER >= 0x30000000L
-+#if OPENSSL_VERSION_NUMBER >= 0x30000000L \
-+ || LIBRESSL_VERSION_NUMBER >= 0x3080000fL
- #include <openssl/evp.h>
- 
- #ifdef USE_LIB_CRYPTO_MD4