From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 9965CA04FF; Fri, 29 Apr 2022 18:16:10 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 53CA942824; Fri, 29 Apr 2022 18:16:06 +0200 (CEST) Received: from mail-qt1-f174.google.com (mail-qt1-f174.google.com [209.85.160.174]) by mails.dpdk.org (Postfix) with ESMTP id 5FBE3410E3 for ; Fri, 29 Apr 2022 18:16:04 +0200 (CEST) Received: by mail-qt1-f174.google.com with SMTP id p4so5557424qtq.12 for ; Fri, 29 Apr 2022 09:16:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=c0oLues4m3S4z0ui+vk9et+iqABYFEQPpZkF90kW/fo=; b=KW11UrTWRTmXvnE/zxBi/A2dLGDseQIpbWLnyCmYuPviufCZ2kHcnostjE31VeMkKG rOHaSOclD5xXO4Y+OknDfhS4gZkgSTjPiiDIsoDTBRxsWlMknZ5FlWeLedzP+XPO78ko TEEkcTXDwxjwtBoMNcooHatNT5Xbkxo2qrL2s= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=c0oLues4m3S4z0ui+vk9et+iqABYFEQPpZkF90kW/fo=; b=zdPv9JAfLW31OhjSspiUtlODctiT/LLIq4GuZ53MMx8EPaUkd+b6K8G1O/nOdH1pAo 5Gn0Ymh/Qj9fhQuYFuNYgy5LXGDGcOv1w/G3fcwepI3Vx7i+4AVzKdGeD6WOskGSFP1O yOk9rHFTP3IVeGm3NsqGEElgBjWh3lR/0A0KIJe98qe1gPrgnKfhe3DLWJSA7/q+J2Sz z7DJ5RsewF1prS7F+eSz3smSc68vNB5ItZjiQRqYKkrCiDxI3ZDSk26P75Z6kZ3aGaEc +meEH1bx1HSBEf/JJgCZl3aqVN0nPccJrc/TR//otd/0xGTD6QZiCWFnRUpI+Ad2TNbv lPLA== X-Gm-Message-State: AOAM530XbiMiiOEws8MFpTi4+hy4VXu6XCqq0xxsQJDGsBebnFGy/zt8 YM3wuYmKzCvenP1yHGZs8xT12g== X-Google-Smtp-Source: ABdhPJwp1djcRhkko13zYWELGSSbbhpiMD+DWqgQyPBits9r4iU2bqwe4I9tfbpO2Lf1NlOa53MhdA== X-Received: by 2002:a05:622a:1c5:b0:2f1:f99f:b74b with SMTP id t5-20020a05622a01c500b002f1f99fb74bmr147138qtw.602.1651248963316; Fri, 29 Apr 2022 09:16:03 -0700 (PDT) Received: from blo.iol.unh.edu ([2606:4100:3880:1270:ec49:26fa:daa6:229d]) by smtp.gmail.com with ESMTPSA id k20-20020a05622a03d400b002ec16d2694fsm2081188qtx.39.2022.04.29.09.16.02 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 29 Apr 2022 09:16:02 -0700 (PDT) From: Brandon Lo To: roy.fan.zhang@intel.com, ciara.power@intel.com Cc: dev@dpdk.org, Brandon Lo Subject: [PATCH v4 1/8] examples/fips_validation: add jansson dependency Date: Fri, 29 Apr 2022 12:15:52 -0400 Message-Id: <20220429161559.415645-2-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220429161559.415645-1-blo@iol.unh.edu> References: <20220129175514.746925-1-blo@iol.unh.edu> <20220429161559.415645-1-blo@iol.unh.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Added a check for RTE_HAS_JANSSON into the meson configuration file for JSON support. Signed-off-by: Brandon Lo --- examples/fips_validation/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/fips_validation/meson.build b/examples/fips_validation/meson.build index 7eef456318..8cd63066b5 100644 --- a/examples/fips_validation/meson.build +++ b/examples/fips_validation/meson.build @@ -21,3 +21,7 @@ sources = files( 'fips_dev_self_test.c', 'main.c', ) + +if dpdk_conf.has('RTE_HAS_JANSSON') + ext_deps += jansson_dep +endif -- 2.25.1