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.web11.9604.1608132628306383611 for ; Wed, 16 Dec 2020 07:30:28 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=dgSdmFJo; spf=pass (domain: hpe.com, ip: 148.163.147.86, mailfrom: prvs=0619d1d483=abner.chang@hpe.com) Received: from pps.filterd (m0148663.ppops.net [127.0.0.1]) by mx0a-002e3701.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 0BGFSNNW016529 for ; Wed, 16 Dec 2020 15:30:26 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=IwOvb0GIQDoayMTauJJb2DF9YMxcesrNy30dLyE/j6o=; b=dgSdmFJo3uVFxphQdOXh/6tkoqABTq2gdoNtL6sQTh3EJrXTm5pAkdVKRR5JY+o8pt8p vgGWivAz/0Ul5+cJdw1lxPbL8uOq2hUCFGg/kYpNlwRIxh/Cikpl0kG/yntdcUBGZpN4 imazUvt1utVJVUY41tYUFZ09vQdEjmucy+0nXpsTKx2EWJ98/K+PD40BVgVaGJLiNBuJ af7OmHR7FDeS68OTKFJ/fhKaE79XfOv54/z4F/kqmoNMJQ7ngyNkE8cDXMGpfdrV8coa TURfypo46VOYr3mgnuytcdQzqZ1c1UCge2vbDkcjr0lTK2WMUukNZNgnclDtKPNEXf+W SQ== Received: from g9t5009.houston.hpe.com (g9t5009.houston.hpe.com [15.241.48.73]) by mx0a-002e3701.pphosted.com with ESMTP id 35f4cvxv6b-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Wed, 16 Dec 2020 15:30:26 +0000 Received: from g4t3433.houston.hpecorp.net (g4t3433.houston.hpecorp.net [16.208.49.245]) by g9t5009.houston.hpe.com (Postfix) with ESMTP id C751A79 for ; Wed, 16 Dec 2020 15:30:25 +0000 (UTC) Received: from abner-virtual-machine.asiapacific.hpqcorp.net (abner-virtual-machine.asiapacific.hpqcorp.net [15.119.210.153]) by g4t3433.houston.hpecorp.net (Postfix) with ESMTP id DE41C45; Wed, 16 Dec 2020 15:30:24 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Nickle Wang , Peter O'Hanley Subject: [PATCH v7 5/6] RedfishPkg: Add EDK2 port of jansson library to build Date: Wed, 16 Dec 2020 11:14:05 +0800 Message-Id: <20201216031406.7136-6-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201216031406.7136-1-abner.chang@hpe.com> References: <20201216031406.7136-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-16_05:2020-12-15,2020-12-16 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 phishscore=0 adultscore=0 suspectscore=0 mlxscore=0 spamscore=0 lowpriorityscore=0 priorityscore=1501 clxscore=1015 bulkscore=0 mlxlogscore=847 malwarescore=0 impostorscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2012160103 Add EDK2 port jansson library (JsonLib) to RedfishPkg Signed-off-by: Abner Chang Cc: Nickle Wang Cc: Peter O'Hanley --- 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 2a951bd8fa..bc036a33e8 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 CrtLib|RedfishPkg/Library/CrtLib/CrtLib.inf + JsonLib|RedfishPkg/Library/JsonLib/JsonLib.inf !endif diff --git a/RedfishPkg/RedfishPkg.dsc b/RedfishPkg/RedfishPkg.dsc index 8df2c69390..61c0cdb642 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/CrtLib/CrtLib.inf + RedfishPkg/Library/JsonLib/JsonLib.inf !include RedfishPkg/Redfish.dsc.inc -- 2.17.1