diff options
author | Aleksander Morgado <aleksandermj@chromium.org> | 2024-09-20 09:31:03 +0000 |
---|---|---|
committer | Aleksander Morgado <aleksandermj@chromium.org> | 2024-09-20 09:31:05 +0000 |
commit | a1f8045c533729c8a200608052eb712dd41bd543 (patch) | |
tree | f77f17a280ad72fd617993abcd8d022eab698419 | |
parent | 7de52c0b798d2f447fca9bff7726fa39ff671b07 (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
-rw-r--r-- | meson.build | 2 |
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) |