From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH] examples: fix building examples with meson Date: Mon, 12 Mar 2018 15:28:20 +0000 Message-ID: <20180312152820.105548-1-bruce.richardson@intel.com> Cc: Bruce Richardson To: dev@dpdk.org Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 3B4F2A491 for ; Mon, 12 Mar 2018 16:28:27 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The ip_pipeline and qos_meter example apps now use experimental APIs so this fact needs to be flagged in their meson.build files. Fixes: c06ddf9698e0 ("meter: add configuration profile") Signed-off-by: Bruce Richardson --- examples/ip_pipeline/meson.build | 1 + examples/qos_meter/meson.build | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/ip_pipeline/meson.build b/examples/ip_pipeline/meson.build index 748c9ae03..00d403361 100644 --- a/examples/ip_pipeline/meson.build +++ b/examples/ip_pipeline/meson.build @@ -7,6 +7,7 @@ # DPDK instance, use 'make' deps += ['cfgfile', 'pipeline', 'bus_pci'] +allow_experimental_apis = true includes += include_directories('pipeline') sources = files( 'config_check.c', diff --git a/examples/qos_meter/meson.build b/examples/qos_meter/meson.build index ef7779f2f..10cd4bc79 100644 --- a/examples/qos_meter/meson.build +++ b/examples/qos_meter/meson.build @@ -7,6 +7,7 @@ # DPDK instance, use 'make' deps += 'meter' +allow_experimental_apis = true sources = files( 'main.c', 'rte_policer.c' ) -- 2.14.3