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 3DD17A00C4; Sat, 29 Jan 2022 18:03:24 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5DE3540DFD; Sat, 29 Jan 2022 18:03:19 +0100 (CET) Received: from mail-qv1-f49.google.com (mail-qv1-f49.google.com [209.85.219.49]) by mails.dpdk.org (Postfix) with ESMTP id 6185140041 for ; Sat, 29 Jan 2022 18:03:17 +0100 (CET) Received: by mail-qv1-f49.google.com with SMTP id i19so8727845qvx.12 for ; Sat, 29 Jan 2022 09:03:17 -0800 (PST) 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=XyGL6iWlDMTBm8j5uk9ypFcDfb/rm/zs8bbBjYzmPpfw59pFvKqOQn7O3GHyWYAR/o ELQrilerTTopc28io9WiP2dMEJydxmL/7w6pBKVMggtZWVXig1NTxuz3EgZRiukCfJQW 3tLPMtOYAibtrF9zbMKzimoLtiWop5UAKhkWw= 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=6JISkvLsjwBE7717e1DvPc+gS5W/xGMXafrQ5EOV+G2fSeuwZreAXVctvf6LKw4xzf Tj30/Rwm/xBpstw38ebXVIEI7V+51Gvvrh+aRQqlY2zDkwvpgDwgXsk+xAZYNESR6cAM n4wg94RgWEvQDg0PzwQk83h1uLiQTwZ1OcRFT6STsVpeNrqjGuLgXHfdHj/OA1O32kTP 7S2+LmMTrF25UXM0t8zUbAShdtwyRK9QhvD9WyrXrJ435iJCX2JHCjAmV2csz8484YOK 4ckAgN8nWmhs4P+8OkuOUzJ6ruV78bAkvkXHsFpXSLb6rG/moQOOm+pjqZg9hEFWoY9p sq2A== X-Gm-Message-State: AOAM530/wRDQNC09JXxIlZE4bUrH62JjSrPdK6jvxS9wpVPAA30Oi9Rh NUIGKxqR3MK7wBLqQ5b9sN5RTAVv6QpTkSupR5E= X-Google-Smtp-Source: ABdhPJz5NExB0Vy5IjllSHtCn0a/WitiF4AtTf+KajFIuGsrNcE+xq/55cuAFA772nwTJ6cipIoq9w== X-Received: by 2002:a05:6214:5294:: with SMTP id kj20mr11603239qvb.111.1643475796840; Sat, 29 Jan 2022 09:03:16 -0800 (PST) Received: from blo.hsd1.nh.comcast.net ([2601:187:807e:37c0:8f3:b5b9:6ccc:8a5c]) by smtp.gmail.com with ESMTPSA id f9sm5411879qkp.94.2022.01.29.09.03.16 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 29 Jan 2022 09:03:16 -0800 (PST) From: Brandon Lo To: roy.fan.zhang@intel.com, ciara.power@intel.com Cc: dev@dpdk.org, Brandon Lo Subject: [PATCH v2 1/5] examples/fips_validation: add jansson dependency Date: Sat, 29 Jan 2022 12:03:09 -0500 Message-Id: <20220129170313.489986-2-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220129170313.489986-1-blo@iol.unh.edu> References: <20220127145142.86742-1-blo@iol.unh.edu> <20220129170313.489986-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