From 72183b6e0428728d7f05dab5405ed803c4cf98ee Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 4 Jul 2023 16:48:53 +0200 Subject: [PATCH] build: Require a newer libgudev Some of the functionality will be broken with older versions, in particular when it comes to newline stripping when reading sysfs attributes. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 50e2e4a..e3b3c51 100644 --- a/meson.build +++ b/meson.build @@ -69,7 +69,7 @@ gobject_introspection = dependency('gobject-introspection-1.0', required: get_op if os_backend == 'linux' - gudev_dep = dependency('gudev-1.0', version: '>= 235') + gudev_dep = dependency('gudev-1.0', version: '>= 238') idevice_dep = dependency('libimobiledevice-1.0', version : '>= 0.9.7', required : get_option('idevice'))