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 E8CD2A00C4; Sat, 29 Jan 2022 18:55:22 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C19DD40E5A; Sat, 29 Jan 2022 18:55:19 +0100 (CET) Received: from mail-qk1-f173.google.com (mail-qk1-f173.google.com [209.85.222.173]) by mails.dpdk.org (Postfix) with ESMTP id 6FE9140041 for ; Sat, 29 Jan 2022 18:55:18 +0100 (CET) Received: by mail-qk1-f173.google.com with SMTP id o10so8462172qkg.0 for ; Sat, 29 Jan 2022 09:55:18 -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=aURU2OVqLs17RILRMIR2aVO90gUBjRoqkH6qLBAlBw6VHU1OPpb+7gzpcNxWNrP2dy L35C6DxSszVvCh29AHUrD+zFjK46RkW8mBwPuCMPj4JOkCysAF1QLgPb1ercByjYZSeo yDOn5BOJvMaclWiA7IVPER5FOL/RG2BkQQHg4= 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=rMrWqVcLHhiLvB5YS0TNxtFIkc+TLNt2bsuAFaDvvQw/D/jCueaBg1bQ/G5BnH6Ucp T0m1O0gOyLwJzpxXPZ+eTXn13vxXdxJLVxAh9IFez4lzGAIKzby2IkgBd8DppCYZ0+jm X/sr2QJWytYZ9wd2hlVBLeRvCq0vh+YH7RKZ/0BaIpwwKObRUT3v5eMA0MsxOkFQAk20 Lcd2wFddLm/R+WHIYfnR1t7KaQb8pj0JZAFwgeUb24/BR5K4VzNCjx+1xkY3zOkGOaW8 w/aWfFstyd2qoLEpAbGSSq8xAn6dLhTebhq0VkYfhuOfrdLxqUGQ7MJU5y9Hxl86vH6v +MOQ== X-Gm-Message-State: AOAM530+wTsXOLHkTtIpCZKZVLieiEkrPs6VD9CpLcEKWpDnC5NGfkyJ lCJDe1TffUM4vahzj+uWEwGMwjvpoq945DdAyUM= X-Google-Smtp-Source: ABdhPJwUJk87Fswfn2V06ia4ZYQ/lC3ZRSKahdnyO+faRDipEPHwPQe+jV6h/biocicL0jiep8n7/A== X-Received: by 2002:a05:620a:298e:: with SMTP id r14mr714556qkp.634.1643478917929; Sat, 29 Jan 2022 09:55:17 -0800 (PST) Received: from blo.hsd1.nh.comcast.net ([2601:187:807e:37c0:8f3:b5b9:6ccc:8a5c]) by smtp.gmail.com with ESMTPSA id 195sm5423654qkf.30.2022.01.29.09.55.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 29 Jan 2022 09:55:17 -0800 (PST) From: Brandon Lo To: roy.fan.zhang@intel.com, ciara.power@intel.com Cc: dev@dpdk.org, Brandon Lo Subject: [PATCH v3 1/5] examples/fips_validation: add jansson dependency Date: Sat, 29 Jan 2022 12:55:10 -0500 Message-Id: <20220129175514.746925-2-blo@iol.unh.edu> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220129175514.746925-1-blo@iol.unh.edu> References: <20220129170313.489986-1-blo@iol.unh.edu> <20220129175514.746925-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