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 68F9FA00C5; Tue, 15 Feb 2022 18:14:14 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B0EDA4115F; Tue, 15 Feb 2022 18:14:00 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 4A99541152; Tue, 15 Feb 2022 18:13:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644945239; x=1676481239; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=//ZUgLfMrqjrvCJ94BdsopA5o8W2erGV+N6vstEDqJ4=; b=BzU1S1sSJL9V3TFWLU0aj0YvYqpmJ4Kg2PTjBOOz8y8N8q5NH6hCmZC1 vghwXVFhQ0nnSQE0COJ5/HyFSeikjsWAYzSclECf9j21QEH1oe3GcKBzB o80zTRlfYVaa+upr8mSfT7MBNkyyhSnNGZVLyktbaj7JnsIJ1Fbd+eSLQ QgPyIBekgipHqCegNIn15yOY9vCZ8VAfY+yyA0LLO+Fztn67sNFlYGKF8 4eZ4o8EfBCo+gC4YsDGUojDbd2IAxYju51QEneG1oi0VvfFxSlqBtqpWb GuxZkYmmGmSRGjlgnMXrB6zMGtNxLaD+4vyVep7/Hq8gbFB+H6ESdah24 A==; X-IronPort-AV: E=McAfee;i="6200,9189,10259"; a="336831066" X-IronPort-AV: E=Sophos;i="5.88,371,1635231600"; d="scan'208";a="336831066" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Feb 2022 09:08:36 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,371,1635231600"; d="scan'208";a="703802251" Received: from silpixa00400883.ir.intel.com ([10.243.23.143]) by orsmga005.jf.intel.com with ESMTP; 15 Feb 2022 09:08:34 -0800 From: Brian Dooley To: dev@dpdk.org Cc: Brian Dooley , konstantin.ananyev@intel.com, stable@dpdk.org, Pablo de Lara Guarch Subject: [PATCH 05/11] acl: fix missing C++ guards Date: Tue, 15 Feb 2022 17:08:11 +0000 Message-Id: <20220215170817.662136-6-brian.dooley@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220215170817.662136-1-brian.dooley@intel.com> References: <20220215170817.662136-1-brian.dooley@intel.com> 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 Some public header files were missing 'extern "C"' C++ guards, and couldnt be used by C++ applications. Add the missing guards. Fixes: dc276b5780c2 ("acl: new library") Cc: konstantin.ananyev@intel.com Cc: stable@dpdk.org Signed-off-by: Brian Dooley --- lib/acl/rte_acl_osdep.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/acl/rte_acl_osdep.h b/lib/acl/rte_acl_osdep.h index b2c262dee7..3c1dc402ca 100644 --- a/lib/acl/rte_acl_osdep.h +++ b/lib/acl/rte_acl_osdep.h @@ -5,6 +5,10 @@ #ifndef _RTE_ACL_OSDEP_H_ #define _RTE_ACL_OSDEP_H_ +#ifdef __cplusplus +extern "C" { +#endif + /** * @file * @@ -45,4 +49,8 @@ #include #include +#ifdef __cplusplus +} +#endif + #endif /* _RTE_ACL_OSDEP_H_ */ -- 2.25.1