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.web12.6747.1608713920176974458 for ; Wed, 23 Dec 2020 00:58:40 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=AEypDqBJ; spf=pass (domain: hpe.com, ip: 148.163.147.86, mailfrom: prvs=0626e1097a=abner.chang@hpe.com) Received: from pps.filterd (m0134420.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 0BN8nPM9022695 for ; Wed, 23 Dec 2020 08:58:39 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=MjyK34Br9f+e1kios4wS1EuqCXawNmOIVGwWGkaXy1Y=; b=AEypDqBJSWobMsTzSQSVPI6zGhPsRIH5Dpa9erZaJ6ZOFBigyVktGNWr3B1x7JOzbQTD zl0SnDhjq5kliz7jsG48T3UTsw1Ntu7K7R/OdR6e2XPmSNF9O+sZDqKW1qeSCahsP6v4 KRB6C3Bitw2gcyQw/xAJnIKwUEcanBmhe2HC+SmtYGGrr5DXopmanyq8Lj0bu6OSmUc5 DKO9p1f4SfohK1k17UQUYjuN7WUOfDcrkNLJaoowLxBWQRE26bHAoVZ86c/knZ/ptei5 obY05zqUAyLCgc61P2+6M+V3QbMbd8YQPfXqLwOmMSht9fdNGdTMZXzjUwrGp3i96cfu cw== Received: from g2t2354.austin.hpe.com (g2t2354.austin.hpe.com [15.233.44.27]) by mx0b-002e3701.pphosted.com with ESMTP id 35k0d63e82-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Wed, 23 Dec 2020 08:58:39 +0000 Received: from g2t2360.austin.hpecorp.net (g2t2360.austin.hpecorp.net [16.196.225.135]) by g2t2354.austin.hpe.com (Postfix) with ESMTP id 1D7C691 for ; Wed, 23 Dec 2020 08:58:39 +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 36FEA37; Wed, 23 Dec 2020 08:58:38 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Nickle Wang , Peter O'Hanley Subject: [PATCH v10 5/6] RedfishPkg: Add EDK2 port of jansson library to build Date: Wed, 23 Dec 2020 16:11:09 +0800 Message-Id: <20201223081110.31015-6-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201223081110.31015-1-abner.chang@hpe.com> References: <20201223081110.31015-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-23_04:2020-12-21,2020-12-23 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 malwarescore=0 bulkscore=0 clxscore=1015 impostorscore=0 lowpriorityscore=0 priorityscore=1501 suspectscore=0 adultscore=0 spamscore=0 phishscore=0 mlxscore=0 mlxlogscore=766 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2012230067 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 8e831fe530..205a50e8f9 100644 --- a/RedfishPkg/RedfishLibs.dsc.inc +++ b/RedfishPkg/RedfishLibs.dsc.inc @@ -13,5 +13,6 @@ !if $(REDFISH_ENABLE) == TRUE Ucs2Utf8Lib|RedfishPkg/Library/BaseUcs2Utf8Lib/BaseUcs2Utf8Lib.inf RedfishCrtLib|RedfishPkg/Library/RedfishCrtLib/RedfishCrtLib.inf + JsonLib|RedfishPkg/Library/JsonLib/JsonLib.inf !endif diff --git a/RedfishPkg/RedfishPkg.dsc b/RedfishPkg/RedfishPkg.dsc index 00c44f73b8..e24c3fefe5 100644 --- a/RedfishPkg/RedfishPkg.dsc +++ b/RedfishPkg/RedfishPkg.dsc @@ -51,5 +51,6 @@ RedfishPkg/Library/PlatformCredentialLibNull/PlatformCredentialLibNull.inf RedfishPkg/Library/BaseUcs2Utf8Lib/BaseUcs2Utf8Lib.inf RedfishPkg/Library/RedfishCrtLib/RedfishCrtLib.inf + RedfishPkg/Library/JsonLib/JsonLib.inf !include RedfishPkg/Redfish.dsc.inc -- 2.17.1