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.web08.4629.1649416588516322605 for ; Fri, 08 Apr 2022 04:16:28 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=jUEyNUZs; 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=1649416587; 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; bh=hfCBKDqDRu5HQU8vqDCX/+nQdHK2oy76OBrxYesLoXY=; b=jUEyNUZspM0lStqlIoFOcRDwMqzzssP6ud56uwuVGOzwBGc4zbqBj6pzx6SXxmpjraDgsG 5CX+EiKUmi9uOejqWpQi6PoCziJsuYEZO6VTX26IH2ZDO0Rzz5R6rNwL+g8tynnqL+vPFN ZhjE8OfVA3weURdmYF1GMdnrcrw4xuo= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-92-hRMm1EDeOoKnMwFMmLO-MQ-1; Fri, 08 Apr 2022 07:16:24 -0400 X-MC-Unique: hRMm1EDeOoKnMwFMmLO-MQ-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 56DFC3C01C2A; Fri, 8 Apr 2022 11:16:24 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.9]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 268FB4047D29; Fri, 8 Apr 2022 11:16:24 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id B74A01800607; Fri, 8 Apr 2022 13:16:22 +0200 (CEST) From: "Gerd Hoffmann" To: devel@edk2.groups.io Cc: Oliver Steffen , Jiewen Yao , Guomin Jiang , Jian J Wang , Xiaoyu Lu , Pawel Polawski , Gerd Hoffmann Subject: [PATCH v2 0/8] CryptoPkg updates for openssl 3.0 Date: Fri, 8 Apr 2022 13:16:14 +0200 Message-Id: <20220408111622.3519517-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.11.54.2 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-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit First batch of patches which update CrtLibSupport so it has everything needed to build openssl3. Also a testcase update for openssl3. This does not update the openssl submodule, that'll happen in a followup patch series. v2: - rebase to latest master. - add codestyle exception for fcntl.h. Gerd Hoffmann (8): CryptoPkg/CrtLibSupport: add fcntl.h CryptoPkg/CrtLibSupport: add strstr() CryptoPkg/CrtLibSupport: add INT_MIN CryptoPkg/CrtLibSupport: add UINT_MAX CryptoPkg/CrtLibSupport: add MODULESDIR CryptoPkg/CrtLibSupport: add off_t CryptoPkg/CrtLibSupport: fix strcpy CryptoPkg/UnitTest: fix DH testcase CryptoPkg/Library/Include/CrtLibSupport.h | 16 +++++++++++++++- CryptoPkg/Library/Include/fcntl.h | 9 +++++++++ .../Test/UnitTest/Library/BaseCryptLib/DhTests.c | 6 +++--- CryptoPkg/CryptoPkg.ci.yaml | 1 + 4 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 CryptoPkg/Library/Include/fcntl.h -- 2.35.1