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.web12.9708.1642416769285944136 for ; Mon, 17 Jan 2022 02:52:49 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=SFf8IOLT; 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=1642416768; 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=3jWZQTb6XMFf5Qao7eghuJyVMDau96Ti3KiqJNhkr4E=; b=SFf8IOLTJTYWzrDnYDmx4REmzFul6fQmWb/4y/accIUKcSjuzYmlI1k0TENF3GGxy4oXQQ nt0llDuuTty0XCyhAbR5EKDzXGvHXczBux3glqeYa9e4srfiTEYZ1qKIyqLAhWbsJ5J8oO omt+QmqBZgnQQ/WQGEb3a0VhPF9/WtY= 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-628-ykVIfWFVMlmoBMVC4tLQRQ-1; Mon, 17 Jan 2022 05:52:45 -0500 X-MC-Unique: ykVIfWFVMlmoBMVC4tLQRQ-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 3A48164083; Mon, 17 Jan 2022 10:52:44 +0000 (UTC) Received: from sirius.home.kraxel.org (unknown [10.39.192.49]) by smtp.corp.redhat.com (Postfix) with ESMTPS id F115A1059596; Mon, 17 Jan 2022 10:52:43 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 5A2A51800634; Mon, 17 Jan 2022 11:52:34 +0100 (CET) From: "Gerd Hoffmann" To: devel@edk2.groups.io Cc: Xiaoyu Lu , Pawel Polawski , Guomin Jiang , Jiewen Yao , Jian J Wang , Gerd Hoffmann Subject: [PATCH 5/8] CryptoPkg/CrtLibSupport: add MODULESDIR Date: Mon, 17 Jan 2022 11:52:31 +0100 Message-Id: <20220117105234.1981719-6-kraxel@redhat.com> In-Reply-To: <20220117105234.1981719-1-kraxel@redhat.com> References: <20220117105234.1981719-1-kraxel@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 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" Add dummy MODULESDIR #define Will be needed by openssl 3.0. Signed-off-by: Gerd Hoffmann --- CryptoPkg/Library/Include/CrtLibSupport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/CryptoPkg/Library/Include/CrtLibSupport.h b/CryptoPkg/Library/Include/CrtLibSupport.h index 45db46cf8bee..aff9daaee809 100644 --- a/CryptoPkg/Library/Include/CrtLibSupport.h +++ b/CryptoPkg/Library/Include/CrtLibSupport.h @@ -18,6 +18,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent #define OPENSSLDIR "" #define ENGINESDIR "" +#define MODULESDIR "" #define MAX_STRING_SIZE 0x1000 -- 2.34.1