DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/pcap: simplify dependency checking using meson
@ 2018-02-22 17:20 Bruce Richardson
  2018-02-22 18:00 ` Hemant Agrawal
  0 siblings, 1 reply; 3+ messages in thread
From: Bruce Richardson @ 2018-02-22 17:20 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson

Rather than trying to use meson's build-in detection for libpcap, and
having to special-case cross-building, just check for the presence of
pcap.h and the pcap library.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/net/pcap/meson.build | 20 +++++---------------
 1 file changed, 5 insertions(+), 15 deletions(-)

diff --git a/drivers/net/pcap/meson.build b/drivers/net/pcap/meson.build
index 8b81214e5..0c4e0201a 100644
--- a/drivers/net/pcap/meson.build
+++ b/drivers/net/pcap/meson.build
@@ -1,22 +1,12 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-if meson.is_cross_build()
-	pcap_dep = cc.find_library('pcap', required: false)
-	if pcap_dep.found()
-		ext_deps += pcap_dep
-	else
-		build = false
-	endif
+pcap_dep = cc.find_library('pcap', required: false)
+if pcap_dep.found() and cc.has_header('pcap.h', dependencies: pcap_dep)
+	build = true
 else
-	pcap_dep = dependency('pcap', required: false)
-	if pcap_dep.found() == true
-		ext_deps += pcap_dep
-	elif find_program('pcap-config', required: false).found() == true
-		ext_deps += cc.find_library('pcap')
-	else
-		build = false
-	endif
+	build = false
 endif
 sources = files('rte_eth_pcap.c')
+ext_deps += pcap_dep
 pkgconfig_extra_libs += '-lpcap'
-- 
2.14.3

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] net/pcap: simplify dependency checking using meson
  2018-02-22 17:20 [dpdk-dev] [PATCH] net/pcap: simplify dependency checking using meson Bruce Richardson
@ 2018-02-22 18:00 ` Hemant Agrawal
  2018-03-12 15:11   ` Bruce Richardson
  0 siblings, 1 reply; 3+ messages in thread
From: Hemant Agrawal @ 2018-02-22 18:00 UTC (permalink / raw)
  To: Bruce Richardson, dev

On 2/22/2018 10:50 PM, Bruce Richardson wrote:
> Rather than trying to use meson's build-in detection for libpcap, and
> having to special-case cross-building, just check for the presence of
> pcap.h and the pcap library.
> 
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>   drivers/net/pcap/meson.build | 20 +++++---------------
>   1 file changed, 5 insertions(+), 15 deletions(-)
> 
Tested-by: Hemant Agrawal <hemant.agrawal@nxp.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] net/pcap: simplify dependency checking using meson
  2018-02-22 18:00 ` Hemant Agrawal
@ 2018-03-12 15:11   ` Bruce Richardson
  0 siblings, 0 replies; 3+ messages in thread
From: Bruce Richardson @ 2018-03-12 15:11 UTC (permalink / raw)
  To: Hemant Agrawal; +Cc: dev

On Thu, Feb 22, 2018 at 11:30:44PM +0530, Hemant Agrawal wrote:
> On 2/22/2018 10:50 PM, Bruce Richardson wrote:
> > Rather than trying to use meson's build-in detection for libpcap, and
> > having to special-case cross-building, just check for the presence of
> > pcap.h and the pcap library.
> > 
> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> > ---
> >   drivers/net/pcap/meson.build | 20 +++++---------------
> >   1 file changed, 5 insertions(+), 15 deletions(-)
> > 
> Tested-by: Hemant Agrawal <hemant.agrawal@nxp.com>

Applied to dpdk-next-build

/Bruce

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-03-12 15:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-22 17:20 [dpdk-dev] [PATCH] net/pcap: simplify dependency checking using meson Bruce Richardson
2018-02-22 18:00 ` Hemant Agrawal
2018-03-12 15:11   ` Bruce Richardson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).