From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx0a-002e3701.pphosted.com (mx0a-002e3701.pphosted.com [148.163.147.86]) by mx.groups.io with SMTP id smtpd.web10.8758.1609224217894951011 for ; Mon, 28 Dec 2020 22:43:37 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=CKvjsIeJ; spf=pass (domain: hpe.com, ip: 148.163.147.86, mailfrom: prvs=0632325a7c=abner.chang@hpe.com) Received: from pps.filterd (m0150241.ppops.net [127.0.0.1]) by mx0a-002e3701.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 0BT6T3Eu001600 for ; Tue, 29 Dec 2020 06:43:37 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hpe.com; h=from : to : cc : subject : date : message-id : in-reply-to : references; s=pps0720; bh=rmTxPijCkINhBRbUkOkDVotAIvE6uP5mlVzPFustlzY=; b=CKvjsIeJIV2cOa9yWRgc3TymgNdBhs3Vx1a693/tEE4Nfj+SydSgRrXYhHbRlpGYBBrh P6hU78Kzqw7xY4B6aJe6NppmkJ/FkhPV6mx3APTH2XufMkjBs61xzcVy0RmD+FwOmq8t 2lJJl816tpT0MJKY91PvP+bPtswergNSRkc69Z6PS/R6gfF5MeCvKNDBueV0wZQxTUE/ wllwOYMu83mQOONWXBIyvocYYfxfPhNsU5U2rQ1vDRlBzpiXvJQWiwJwhvzvTegdv01s FWKRofYD1CCtJZYEJRBiy/B3bfLvPylUShmAO00MGkopAfsvdzqYiZF0VqEWbze7EGR7 LQ== Received: from g2t2354.austin.hpe.com (g2t2354.austin.hpe.com [15.233.44.27]) by mx0a-002e3701.pphosted.com with ESMTP id 35pf11addy-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Tue, 29 Dec 2020 06:43:37 +0000 Received: from g2t2360.austin.hpecorp.net (g2t2360.austin.hpecorp.net [16.196.225.135]) by g2t2354.austin.hpe.com (Postfix) with ESMTP id F095683 for ; Tue, 29 Dec 2020 06:43:36 +0000 (UTC) Received: from abner-virtual-machine.asiapacific.hpqcorp.net (abner-virtual-machine.asiapacific.hpqcorp.net [15.119.210.153]) by g2t2360.austin.hpecorp.net (Postfix) with ESMTP id 1419237; Tue, 29 Dec 2020 06:43:35 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Nickle Wang , Peter O'Hanley Subject: [PATCH v12 5/6] RedfishPkg: Add EDK2 port of jansson library to build Date: Tue, 29 Dec 2020 13:55:56 +0800 Message-Id: <20201229055557.4679-6-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201229055557.4679-1-abner.chang@hpe.com> References: <20201229055557.4679-1-abner.chang@hpe.com> X-HPE-SCL: -1 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.343,18.0.737 definitions=2020-12-29_05:2020-12-28,2020-12-29 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 suspectscore=0 mlxlogscore=808 impostorscore=0 bulkscore=0 phishscore=0 mlxscore=0 lowpriorityscore=0 malwarescore=0 priorityscore=1501 clxscore=1015 spamscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2012290038 Add EDK2 port jansson library (JsonLib) to RedfishPkg Signed-off-by: Abner Chang Cc: Nickle Wang Cc: Peter O'Hanley Reviewed-by: Nickle Wang --- RedfishPkg/RedfishLibs.dsc.inc | 1 + RedfishPkg/RedfishPkg.dsc | 1 + 2 files changed, 2 insertions(+) diff --git a/RedfishPkg/RedfishLibs.dsc.inc b/RedfishPkg/RedfishLibs.dsc.inc index 2e54f90dc2..103a596753 100644 --- a/RedfishPkg/RedfishLibs.dsc.inc +++ b/RedfishPkg/RedfishLibs.dsc.inc @@ -15,5 +15,6 @@ Ucs2Utf8Lib|RedfishPkg/Library/BaseUcs2Utf8Lib/BaseUcs2Utf8Lib.inf BaseSortLib|MdeModulePkg/Library/BaseSortLib/BaseSortLib.inf RedfishCrtLib|RedfishPkg/PrivateLibrary/RedfishCrtLib/RedfishCrtLib.inf + JsonLib|RedfishPkg/Library/JsonLib/JsonLib.inf !endif diff --git a/RedfishPkg/RedfishPkg.dsc b/RedfishPkg/RedfishPkg.dsc index 420da0f2a9..bffa8f1f89 100644 --- a/RedfishPkg/RedfishPkg.dsc +++ b/RedfishPkg/RedfishPkg.dsc @@ -52,5 +52,6 @@ RedfishPkg/Library/DxeRestExLib/DxeRestExLib.inf RedfishPkg/Library/BaseUcs2Utf8Lib/BaseUcs2Utf8Lib.inf RedfishPkg/PrivateLibrary/RedfishCrtLib/RedfishCrtLib.inf + RedfishPkg/Library/JsonLib/JsonLib.inf !include RedfishPkg/Redfish.dsc.inc -- 2.17.1