mirror of
https://github.com/systemd/systemd
synced 2024-11-05 18:25:39 +00:00
meson: Drop required libfdisk version to 2.32
We initially pinned this to 2.33 ine71f5585b9
because libfdisk 2.32 in CentOS 8 didn't have2f35c1ead6
backported. If we check now, we can see it has been backported (https://git.centos.org/rpms/util-linux/blob/c8s/f/SOURCES/0048-libfdisk-count-gaps-to-possible-size-when-resize.patch) which means we can drop the required version to 2.32 instead of 2.33.
This commit is contained in:
parent
c00e68c7bd
commit
baec7d782b
2 changed files with 2 additions and 2 deletions
2
README
2
README
|
@ -177,7 +177,7 @@ REQUIREMENTS:
|
|||
libaudit (optional)
|
||||
libacl (optional)
|
||||
libbpf >= 0.2.0 (optional)
|
||||
libfdisk >= 2.33 (from util-linux) (optional)
|
||||
libfdisk >= 2.32 (from util-linux) (optional)
|
||||
libselinux (optional)
|
||||
liblzma (optional)
|
||||
liblz4 >= 1.3.0 / 130 (optional)
|
||||
|
|
|
@ -1052,7 +1052,7 @@ libmount = dependency('mount',
|
|||
want_libfdisk = get_option('fdisk')
|
||||
if want_libfdisk != 'false' and not skip_deps
|
||||
libfdisk = dependency('fdisk',
|
||||
version : '>= 2.33',
|
||||
version : '>= 2.32',
|
||||
required : want_libfdisk == 'true')
|
||||
have = libfdisk.found()
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue