From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web10.13482.1638547704245613431 for ; Fri, 03 Dec 2021 08:08:24 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=fLoZJN+X; spf=pass (domain: redhat.com, ip: 170.10.133.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1638547703; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=nTFhVBIzJkJVqAzGrisgo/buXvXCntUZvxV0smqcudU=; b=fLoZJN+XbiC893JQJfebFrRaCQJ2PxThbNheTLFXkXYXqU0mItFM1AECeo49VV0hV08eRR VijIxwBzf6OCm6oimTTTLyUrsYYdQ95auQycbNb1O7z6rPZF0QJ96STAqD7levjAuQCL5j UAKThGmWYN9SiXBwuDMjRsu6a8p855c= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-556-UV6dL-htNXuXkinqGPk_tw-1; Fri, 03 Dec 2021 11:08:18 -0500 X-MC-Unique: UV6dL-htNXuXkinqGPk_tw-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 64DA21926DA0; Fri, 3 Dec 2021 16:08:17 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.193.170]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7220D5F4E9; Fri, 3 Dec 2021 16:08:03 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id CB6CD180039B; Fri, 3 Dec 2021 17:07:48 +0100 (CET) From: "Gerd Hoffmann" To: devel@edk2.groups.io Cc: Jiewen Yao , Jian J Wang , Guomin Jiang , Pawel Polawski , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Xiaoyu Lu , Gerd Hoffmann Subject: [PATCH 04/24] CryptoPkg/openssl: process_files.pl: set api to 1.1.1 Date: Fri, 3 Dec 2021 17:07:28 +0100 Message-Id: <20211203160748.866150-5-kraxel@redhat.com> In-Reply-To: <20211203160748.866150-1-kraxel@redhat.com> References: <20211203160748.866150-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=kraxel@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Simplify initial port to openssl 3.0, set the API version to 1.1.1 for now. Signed-off-by: Gerd Hoffmann --- CryptoPkg/Library/OpensslLib/process_files.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CryptoPkg/Library/OpensslLib/process_files.pl b/CryptoPkg/Library/OpensslLib/process_files.pl index 6e2b98e4a9ae..51138f8edab8 100755 --- a/CryptoPkg/Library/OpensslLib/process_files.pl +++ b/CryptoPkg/Library/OpensslLib/process_files.pl @@ -198,7 +198,8 @@ BEGIN { "no-whirlpool", # OpenSSL1_1_1b doesn't support default rand-seed-os for UEFI # UEFI only support --with-rand-seed=none - "--with-rand-seed=none" + "--with-rand-seed=none", + "--api=1.1.1" ) == 0 || die "OpenSSL Configure failed!\n"; -- 2.33.1