New upstream version 18.02
[deb_dpdk.git] / drivers / net / pcap / meson.build
diff --git a/drivers/net/pcap/meson.build b/drivers/net/pcap/meson.build
new file mode 100644 (file)
index 0000000..8b81214
--- /dev/null
@@ -0,0 +1,22 @@
+# 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
+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
+endif
+sources = files('rte_eth_pcap.c')
+pkgconfig_extra_libs += '-lpcap'