kni: remove PCI related information
[dpdk.git] / lib / librte_bpf / meson.build
index de9de00..11c1fb5 100644 (file)
@@ -8,7 +8,7 @@ sources = files('bpf.c',
                'bpf_pkt.c',
                'bpf_validate.c')
 
-if arch_subdir == 'x86'
+if arch_subdir == 'x86' and dpdk_conf.get('RTE_ARCH_64')
        sources += files('bpf_jit_x86.c')
 endif
 
@@ -18,8 +18,9 @@ install_headers = files('bpf_def.h',
 
 deps += ['mbuf', 'net', 'ethdev']
 
-dep = cc.find_library('elf', required: false)
-if dep.found() == true and cc.has_header('libelf.h', dependencies: dep)
+dep = dependency('libelf', required: false)
+if dep.found()
+       dpdk_conf.set('RTE_LIBRTE_BPF_ELF', 1)
        sources += files('bpf_load_elf.c')
        ext_deps += dep
 endif