]> git.droids-corp.org - dpdk.git/blobdiff - config/meson.build
build: skip detecting libpcap via pcap-config
[dpdk.git] / config / meson.build
index 69f2aeb6051294eb2270652c7b281b1b5d9eb41c..9fb903c9ba80639849b14965e96f57bb4f3c3582 100644 (file)
@@ -163,11 +163,9 @@ if libbsd.found()
 endif
 
 # check for pcap
-pcap_dep = dependency('pcap', required: false)
-if pcap_dep.found()
-       # pcap got a pkg-config file only in 1.9.0 and before that meson uses
-       # an internal pcap-config finder, which is not compatible with
-       # cross-compilation, so try to fallback to find_library
+pcap_dep = dependency('libpcap', required: false, method: 'pkg-config')
+if not pcap_dep.found()
+       # pcap got a pkg-config file only in 1.9.0
        pcap_dep = cc.find_library('pcap', required: false)
 endif
 if pcap_dep.found() and cc.has_header('pcap.h', dependencies: pcap_dep)