aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorAleksander Morgado <aleksandermj@chromium.org>2024-09-20 09:31:03 +0000
committerAleksander Morgado <aleksandermj@chromium.org>2024-09-20 09:31:05 +0000
commita1f8045c533729c8a200608052eb712dd41bd543 (patch)
treef77f17a280ad72fd617993abcd8d022eab698419 /meson.build
parent7de52c0b798d2f447fca9bff7726fa39ff671b07 (diff)
build: require libmbim 1.31.5
We need a newer libmbim to handle the MBIM_CID_QDU_COMMAND operation introduced for AT over MBIM in Quectel modems. Fixes https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/issues/892
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 9c64fd18..9b501ee4 100644
--- a/meson.build
+++ b/meson.build
@@ -258,7 +258,7 @@ config_h.set('WITH_BUILTIN_PLUGINS', enable_builtin_plugins)
# MBIM support (enabled by default)
enable_mbim = get_option('mbim')
if enable_mbim
- mbim_glib_dep = dependency('mbim-glib', version: '>= 1.31.2')
+ mbim_glib_dep = dependency('mbim-glib', version: '>= 1.31.5')
endif
config_h.set('WITH_MBIM', enable_mbim)