mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-24 21:50:34 +01:00
build: require libbpf 1.3.0
Version 1.3.0 of the library is needed to support "tcx" program types.
This commit is contained in:
parent
3f8dfb2920
commit
fa1c5fa9c1
1 changed files with 2 additions and 2 deletions
|
|
@ -517,8 +517,8 @@ config_h.set10('HAVE_SELINUX', enable_selinux)
|
|||
# CLAT support
|
||||
enable_clat = get_option('clat')
|
||||
if enable_clat
|
||||
libbpf = dependency('libbpf', version: '>= 0.1.0', required: false)
|
||||
assert(libbpf.found(), 'You must have libbpf installed to build. Use -Dclat=false to disable use of it')
|
||||
libbpf = dependency('libbpf', version: '>= 1.3.0', required: false)
|
||||
assert(libbpf.found(), 'You must have libbpf >= 1.3.0 installed to build. Use -Dclat=false to disable use of it')
|
||||
libndp_dep = dependency('libndp', version: '>= 1.9', required: false)
|
||||
assert(libndp_dep.found(), 'You must have libndp >= 1.9 installed to build with CLAT support. Use -Dclat=false to disable it')
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue