summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2021-11-03 10:38:59 +0100
committerAleksander Morgado <aleksander@aleksander.es>2021-11-03 10:39:35 +0100
commit4157926a928e9ab3b3670608cf64d4d8f090e092 (patch)
tree88d06b03d5d839962c7ddcda9a37177f241d20a9
parentdc000ec5b4b3b9c02cc03fc8f8b7f19d5d1e3c76 (diff)
build: require libmbim 1.27.3
In order to be able to use the new MS defined context types.
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index b165e81e..fba9df98 100644
--- a/configure.ac
+++ b/configure.ac
@@ -375,7 +375,7 @@ dnl-----------------------------------------------------------------------------
dnl MBIM support (enabled by default)
dnl
-LIBMBIM_VERSION=1.27.2
+LIBMBIM_VERSION=1.27.3
AC_ARG_WITH(mbim, AS_HELP_STRING([--without-mbim], [Build without MBIM support]), [], [with_mbim=yes])
AM_CONDITIONAL(WITH_MBIM, test "x$with_mbim" = "xyes")
diff --git a/meson.build b/meson.build
index ae9600b6..29088311 100644
--- a/meson.build
+++ b/meson.build
@@ -232,7 +232,7 @@ enable_at_command_via_dbus = get_option('at_command_via_dbus')
config_h.set('WITH_AT_COMMAND_VIA_DBUS', enable_at_command_via_dbus)
# MBIM support (enabled by default)
-mbim_glib_dep = dependency('mbim-glib', version: '>= 1.27.2', required: get_option('mbim'))
+mbim_glib_dep = dependency('mbim-glib', version: '>= 1.27.3', required: get_option('mbim'))
enable_mbim = mbim_glib_dep.found()
config_h.set('WITH_MBIM', enable_mbim)