Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Dec 2020 18:51:34 +0000 (UTC)
From:      Mikael Urankar <mikael@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r557858 - head/lang/rust/files
Message-ID:  <202012121851.0BCIpYUs087049@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mikael
Date: Sat Dec 12 18:51:33 2020
New Revision: 557858
URL: https://svnweb.freebsd.org/changeset/ports/557858

Log:
  lang/rust: Fix build with libressl 3.2.3
  
  PR:		251766
  Submitted by:	John Kennedy

Modified:
  head/lang/rust/files/patch-vendor_openssl-sys_build_main.rs

Modified: head/lang/rust/files/patch-vendor_openssl-sys_build_main.rs
==============================================================================
--- head/lang/rust/files/patch-vendor_openssl-sys_build_main.rs	Sat Dec 12 18:50:57 2020	(r557857)
+++ head/lang/rust/files/patch-vendor_openssl-sys_build_main.rs	Sat Dec 12 18:51:33 2020	(r557858)
@@ -1,10 +1,10 @@
---- vendor/openssl-sys/build/main.rs.ORIG	2020-10-07 02:33:31.000000000 -0700
-+++ vendor/openssl-sys/build/main.rs	2020-10-23 20:45:37.047602000 -0700
+--- vendor/openssl-sys/build/main.rs.orig	2020-11-16 06:27:50.000000000 -0800
++++ vendor/openssl-sys/build/main.rs	2020-12-11 12:47:11.685331000 -0800
 @@ -221,6 +221,7 @@
              (3, 1, 0) => ('3', '1', '0'),
              (3, 1, _) => ('3', '1', 'x'),
              (3, 2, 0) => ('3', '2', '0'),
-+            (3, 2, 2) => ('3', '2', '2'),
++            (3, 2, _) => ('3', '2', 'x'),
              _ => version_error(),
          };
  
@@ -13,7 +13,7 @@
  
  This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
 -through 3.2.0, but a different version of OpenSSL was found. The build is now aborting
-+through 3.2.2, but a different version of OpenSSL was found. The build is now aborting
++through 3.2.x, but a different version of OpenSSL was found. The build is now aborting
  due to this version mismatch.
  
  "



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012121851.0BCIpYUs087049>