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.129.124]) by mx.groups.io with SMTP id smtpd.web09.28100.1649676305875424329 for ; Mon, 11 Apr 2022 04:25:06 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=QO5uUTN6; spf=pass (domain: redhat.com, ip: 170.10.129.124, mailfrom: kraxel@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1649676305; 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=1G6UTqJxUKkYnhFIGdq8k4sR+UtPqNS8V6slibd3Um8=; b=QO5uUTN6k5XHznzuoCZ4XBOd9u+BKqldpoPbCtqw8hnlW4AExNkh5Vr32hmg3V93Vgspup G1jjIksBzWbAY4lYzbwRMP+dZCj1rZmxlngzaiCyZAPK7ONr1+LQab4vSOk08aHWliT/n1 RbDssompu+4IDZTScqybl0qFMg9tmf8= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-387-FddshwpjOI-Gdcnisz59kA-1; Mon, 11 Apr 2022 07:25:01 -0400 X-MC-Unique: FddshwpjOI-Gdcnisz59kA-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 900E918A6581; Mon, 11 Apr 2022 11:25:00 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.9]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4F800401474; Mon, 11 Apr 2022 11:25:00 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 63D8A1800606; Mon, 11 Apr 2022 13:24:57 +0200 (CEST) From: "Gerd Hoffmann" To: devel@edk2.groups.io Cc: Oliver Steffen , Pawel Polawski , Jian J Wang , Xiaoyu Lu , Jiewen Yao , Guomin Jiang , Gerd Hoffmann , Jiewen Yao Subject: [PATCH v3 1/8] CryptoPkg/CrtLibSupport: add fcntl.h Date: Mon, 11 Apr 2022 13:24:50 +0200 Message-Id: <20220411112457.506101-2-kraxel@redhat.com> In-Reply-To: <20220411112457.506101-1-kraxel@redhat.com> References: <20220411112457.506101-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.10 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"; x-default=true Add fcntl.h header file. Will be needed by openssl 3.0. Signed-off-by: Gerd Hoffmann Reviewed-by: Jiewen Yao --- CryptoPkg/Library/Include/fcntl.h | 9 +++++++++ CryptoPkg/CryptoPkg.ci.yaml | 1 + 2 files changed, 10 insertions(+) create mode 100644 CryptoPkg/Library/Include/fcntl.h diff --git a/CryptoPkg/Library/Include/fcntl.h b/CryptoPkg/Library/Include/fcntl.h new file mode 100644 index 000000000000..040ecfa5193d --- /dev/null +++ b/CryptoPkg/Library/Include/fcntl.h @@ -0,0 +1,9 @@ +/** @file + Include file to support building the third-party cryptographic library. + +Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.
+SPDX-License-Identifier: BSD-2-Clause-Patent + +**/ + +#include diff --git a/CryptoPkg/CryptoPkg.ci.yaml b/CryptoPkg/CryptoPkg.ci.yaml index e21fafac1efe..396ca93dbe49 100644 --- a/CryptoPkg/CryptoPkg.ci.yaml +++ b/CryptoPkg/CryptoPkg.ci.yaml @@ -36,6 +36,7 @@ "Library/Include/CrtLibSupport.h", # This has OpenSSL interfaces that aren't UEFI spec compliant "Library/BaseCryptLib/Hash/CryptParallelHash.h", + "Library/Include/fcntl.h", # These directories contain auto-generated OpenSSL content "Library/OpensslLib", "Library/IntrinsicLib", -- 2.35.1