lib/nfs/meson.build: require libnfs 4.0

All Linux distributions have at least version 4, and thus I cannot
test with older versions.
This commit is contained in:
Max Kellermann
2024-05-06 14:53:41 +02:00
parent 518ce0187a
commit 23d895415a
2 changed files with 2 additions and 1 deletions
NEWS
src/lib/nfs

@ -1,4 +1,4 @@
nfs_dep = dependency('libnfs', version: '>= 1.11', required: get_option('nfs'))
nfs_dep = dependency('libnfs', version: '>= 4', required: get_option('nfs'))
conf.set('ENABLE_NFS', nfs_dep.found())
if not nfs_dep.found()
subdir_done()