summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2022-02-24 13:29:54 +0000
committerLuca Boccassi <luca.boccassi@gmail.com>2022-02-24 20:06:55 +0000
commitbaec7d782b07414f0c13ba3a0b0b526973e04923 (patch)
tree03c33959a113566cb24b1735d08bf95ce3803a56
parentc00e68c7bdbaa5d57a846e4947d038c926cbc3a6 (diff)
downloadsystemd-baec7d782b07414f0c13ba3a0b0b526973e04923.tar.gz
meson: Drop required libfdisk version to 2.32
We initially pinned this to 2.33 in e71f5585b9b0580428f9530d0a485265c9c25165 because libfdisk 2.32 in CentOS 8 didn't have https://github.com/karelzak/util-linux/commit/2f35c1ead621f42f32f7777232568cb03185b473 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.
-rw-r--r--README2
-rw-r--r--meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index 1ae9dd3500..bbde47fda7 100644
--- a/README
+++ b/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)
diff --git a/meson.build b/meson.build
index 371a9ce751..905ed07f75 100644
--- a/meson.build
+++ b/meson.build
@@ -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