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.web09.11627.1608821614921836502 for ; Thu, 24 Dec 2020 06:53:34 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=c+fL+JrH; spf=pass (domain: hpe.com, ip: 148.163.147.86, mailfrom: prvs=06276e9735=abner.chang@hpe.com) Received: from pps.filterd (m0134421.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 0BOErFEU017531 for ; Thu, 24 Dec 2020 14:53:34 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=ijXGVuh3IORfOxPPWi/cGUKpMJxSpj2AgphgJ+M+Eng=; b=c+fL+JrH9/4IfRYhMW1ATPhCwKTt1q5OcLQsKNwNQFOUek5IjeHQeIVB9t1FnghjgyEM GjiN6iEPvyXVxpvcHvVeZP2S/0Fp79+O6uN01R9ow6bAxD/d9f6qetVpRc2HPgRBS5if /ZB7oHIFnmwyh2ZP6tUvLg9Vr6SHGqGihKrcG/SZNizNocMonQu1Tkl08Xaj66BRP3pV aD623qPfC4j0QxlBJA2uTjjWaergTT7AFJN62KYFFN7nfxm7y8dlmGlWIvk8+YKVeKHN JSnXrMnrcAsDFtNnwQ0ZrJEl3qBkiXnp9Otwup8i2FEQVXcULX3wK474QuqOLSlYaPfE jQ== Received: from g2t2352.austin.hpe.com (g2t2352.austin.hpe.com [15.233.44.25]) by mx0b-002e3701.pphosted.com with ESMTP id 35k0d63m4a-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Thu, 24 Dec 2020 14:53:34 +0000 Received: from g2t2360.austin.hpecorp.net (g2t2360.austin.hpecorp.net [16.196.225.135]) by g2t2352.austin.hpe.com (Postfix) with ESMTP id DCF1162 for ; Thu, 24 Dec 2020 14:53:33 +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 05DC240; Thu, 24 Dec 2020 14:53:32 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Nickle Wang , Peter O'Hanley Subject: [PATCH v11 5/6] RedfishPkg: Add EDK2 port of jansson library to build Date: Thu, 24 Dec 2020 22:05:59 +0800 Message-Id: <20201224140600.7673-6-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201224140600.7673-1-abner.chang@hpe.com> References: <20201224140600.7673-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-24_09:2020-12-24,2020-12-24 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 mlxlogscore=761 clxscore=1015 impostorscore=0 adultscore=0 suspectscore=0 bulkscore=0 phishscore=0 lowpriorityscore=0 spamscore=0 mlxscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2012240094 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 4756e75b49..378be62950 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/PrivateLibrary/RedfishCrtLib/RedfishCrtLib.inf + JsonLib|RedfishPkg/Library/JsonLib/JsonLib.inf !endif diff --git a/RedfishPkg/RedfishPkg.dsc b/RedfishPkg/RedfishPkg.dsc index f24f9ae8cf..5545c5c668 100644 --- a/RedfishPkg/RedfishPkg.dsc +++ b/RedfishPkg/RedfishPkg.dsc @@ -51,5 +51,6 @@ RedfishPkg/Library/PlatformCredentialLibNull/PlatformCredentialLibNull.inf RedfishPkg/Library/BaseUcs2Utf8Lib/BaseUcs2Utf8Lib.inf RedfishPkg/PrivateLibrary/RedfishCrtLib/RedfishCrtLib.inf + RedfishPkg/Library/JsonLib/JsonLib.inf !include RedfishPkg/Redfish.dsc.inc -- 2.17.1