diff options
author | Dan Williams <dan@ioncontrol.co> | 2025-04-09 14:19:40 +0000 |
---|---|---|
committer | Dan Williams <dan@ioncontrol.co> | 2025-04-09 14:19:40 +0000 |
commit | b64e60dc0300459cb9e15753dff53aaa6d87f8ee (patch) | |
tree | 2236268e93ad67baa7a246160320f133ebb45076 | |
parent | c575f5d51867c9a4990d200882b146928a5dce33 (diff) | |
parent | b3b986c79e81a18d4a844d8f00daa4001ede79bf (diff) |
Merge request !1329 from '1-24-qmi-mbim-bump'
build: bump libmbim requirement to >= 1.32 and libqmi to >= 1.36
https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/merge_requests/1329
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index e9c94e13..a477271d 100644 --- a/meson.build +++ b/meson.build @@ -259,14 +259,14 @@ 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.95') + mbim_glib_dep = dependency('mbim-glib', version: '>= 1.32.0') endif config_h.set('WITH_MBIM', enable_mbim) # QMI support (enabled by default) enable_qmi = get_option('qmi') if enable_qmi - qmi_glib_dep = dependency('qmi-glib', version: '>= 1.35.95') + qmi_glib_dep = dependency('qmi-glib', version: '>= 1.36.0') endif config_h.set('WITH_QMI', enable_qmi) |