aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorAleksander Morgado <aleksandermj@chromium.org>2022-10-26 13:27:00 +0000
committerAleksander Morgado <aleksandermj@chromium.org>2022-10-26 13:27:00 +0000
commit6711cdbbf5c0b671b6609c7e445bd01d0373e6af (patch)
treea4f24e392037218a24c441324de6983f9da999b9 /meson.build
parentec28c85a6a29e819266c4fb167e4defe9a2a33d9 (diff)
build: require libqmi 1.32.0 and libmbim 1.28.0
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 9cfb48cb..fd85f4a1 100644
--- a/meson.build
+++ b/meson.build
@@ -243,14 +243,14 @@ config_h.set('WITH_AT_COMMAND_VIA_DBUS', enable_at_command_via_dbus)
# MBIM support (enabled by default)
enable_mbim = get_option('mbim')
if enable_mbim
- mbim_glib_dep = dependency('mbim-glib', version: '>= 1.27.9')
+ mbim_glib_dep = dependency('mbim-glib', version: '>= 1.28.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.31.10')
+ qmi_glib_dep = dependency('qmi-glib', version: '>= 1.32.0')
endif
config_h.set('WITH_QMI', enable_qmi)