From owner-svn-ports-all@freebsd.org Sat Dec 12 18:51:34 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8441E4BD622; Sat, 12 Dec 2020 18:51:34 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CtcFL1VMrz3nMX; Sat, 12 Dec 2020 18:51:34 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 26A9C21CCA; Sat, 12 Dec 2020 18:51:34 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BCIpYYT087050; Sat, 12 Dec 2020 18:51:34 GMT (envelope-from mikael@FreeBSD.org) Received: (from mikael@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BCIpYUs087049; Sat, 12 Dec 2020 18:51:34 GMT (envelope-from mikael@FreeBSD.org) Message-Id: <202012121851.0BCIpYUs087049@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mikael set sender to mikael@FreeBSD.org using -f From: Mikael Urankar Date: Sat, 12 Dec 2020 18:51:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r557858 - head/lang/rust/files X-SVN-Group: ports-head X-SVN-Commit-Author: mikael X-SVN-Commit-Paths: head/lang/rust/files X-SVN-Commit-Revision: 557858 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Dec 2020 18:51:34 -0000 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. "