summaryrefslogtreecommitdiff
path: root/www/dillo2/files/extra-patches-openssl
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2024-05-12 06:49:52 -0700
committerCy Schubert <cy@FreeBSD.org>2024-05-12 06:52:49 -0700
commit8667edd241a952554b634e827ed763b543a2862d (patch)
tree086666e0e866f8385de3d96c4ae19fc7d3fb151e /www/dillo2/files/extra-patches-openssl
parentcad/gmsh: Reset maintainer to ports@ (diff)
www/dillo2: Update to 3.1.0
Also,change WWW and MASTER_SITES. Dillo2 is hosted at a new website. Reported by: danfe, Rodrigo Arias <rodarima@gmail.com>
Diffstat (limited to 'www/dillo2/files/extra-patches-openssl')
-rw-r--r--www/dillo2/files/extra-patches-openssl41
1 files changed, 0 insertions, 41 deletions
diff --git a/www/dillo2/files/extra-patches-openssl b/www/dillo2/files/extra-patches-openssl
deleted file mode 100644
index 38134a30d2fe..000000000000
--- a/www/dillo2/files/extra-patches-openssl
+++ /dev/null
@@ -1,41 +0,0 @@
-Patches obtained from:
-http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/www/dillo/patches/
-
-$NetBSD: patch-configure,v 1.1 2018/03/24 15:40:07 ryoon Exp $
-
-* Detect OpenSSL 1.1.0
-
---- configure.orig 2015-06-30 14:07:22.000000000 +0000
-+++ configure
-@@ -6018,11 +6018,11 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
- #ifdef __cplusplus
- extern "C"
- #endif
--char SSL_library_init ();
-+void OPENSSL_config ();
- int
- main ()
- {
--return SSL_library_init ();
-+OPENSSL_config ();
- ;
- return 0;
- }
-$NetBSD: patch-dpi_https.c,v 1.1 2018/03/24 15:40:07 ryoon Exp $
-
-* Support OpenSSL 1.1.0
-
---- dpi/https.c.orig 2015-06-30 14:06:08.000000000 +0000
-+++ dpi/https.c
-@@ -476,7 +476,11 @@ static int handle_certificate_problem(SS
- case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
- /*Either self signed and untrusted*/
- /*Extract CN from certificate name information*/
-+#if OPENSSL_VERSION_NUMBER < 0x10100000L
- if ((cn = strstr(remote_cert->name, "/CN=")) == NULL) {
-+#else
-+ if ((cn = strstr(X509_get_subject_name(remote_cert), "/CN=")) == NULL) {
-+#endif
- strcpy(buf, "(no CN given)");
- } else {
- char *cn_end;