summaryrefslogtreecommitdiff
path: root/www/nginx-devel/files
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2025-04-23 12:17:36 -0400
committerSergey A. Osokin <osa@FreeBSD.org>2025-04-23 12:17:58 -0400
commit62274cac06171874d5413b5a1fa7cbf17046e9b1 (patch)
treea6ed241da2a463c631721addc82490348035ac2e /www/nginx-devel/files
parentsysutils/u-boot-pandaboard: Remove EOL port (diff)
www/nginx-devel: security update from 1.27.5 to 1.28.0
<ChangeLog> *) 1.28.x stable branch. *) Bugfix: nginx could not be built by gcc 15 if ngx_http_v2_module or ngx_http_v3_module modules were used. *) Bugfix: nginx might not be built by gcc 14 or newer with -O3 -flto optimization if ngx_http_v3_module was used. </ChangeLog>
Diffstat (limited to 'www/nginx-devel/files')
-rw-r--r--www/nginx-devel/files/extra-patch-nginx-ct-LibreSSL29
1 files changed, 0 insertions, 29 deletions
diff --git a/www/nginx-devel/files/extra-patch-nginx-ct-LibreSSL b/www/nginx-devel/files/extra-patch-nginx-ct-LibreSSL
deleted file mode 100644
index a3b500629983..000000000000
--- a/www/nginx-devel/files/extra-patch-nginx-ct-LibreSSL
+++ /dev/null
@@ -1,29 +0,0 @@
---- ../nginx-ct-71bf4d2/ngx_ssl_ct_module.c.orig 2024-12-07 10:41:38.000000000 -0500
-+++ ../nginx-ct-71bf4d2/ngx_ssl_ct_module.c 2025-02-04 13:44:15.064346000 -0500
-@@ -135,7 +135,7 @@
- continue;
- }
-
--#ifndef OPENSSL_IS_BORINGSSL
-+#if !defined(OPENSSL_IS_BORINGSSL) && !defined(LIBRESSL_VERSION_NUMBER)
- /* associate the sct_list with the cert */
- X509_set_ex_data(cert, ngx_ssl_ct_sct_list_index, sct_list);
-
-@@ -165,7 +165,7 @@
- #endif
- }
-
--#ifndef OPENSSL_IS_BORINGSSL
-+#if !defined(OPENSSL_IS_BORINGSSL) && !defined(LIBRESSL_VERSION_NUMBER)
- /* add OpenSSL TLS extension */
- int context = SSL_EXT_CLIENT_HELLO
- | SSL_EXT_TLS1_2_SERVER_HELLO
-@@ -181,7 +181,7 @@
- return NGX_CONF_OK;
- }
-
--#ifndef OPENSSL_IS_BORINGSSL
-+#if !defined(OPENSSL_IS_BORINGSSL) && !defined(LIBRESSL_VERSION_NUMBER)
- static int ngx_ssl_ct_ext_cb(SSL *s, unsigned int ext_type, unsigned int context,
- const unsigned char **out, size_t *outlen, X509 *x, size_t chainidx,
- int *al, void *add_arg) {