From 4157926a928e9ab3b3670608cf64d4d8f090e092 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Wed, 3 Nov 2021 10:38:59 +0100 Subject: [PATCH] build: require libmbim 1.27.3 In order to be able to use the new MS defined context types. --- configure.ac | 2 +- meson.build | 2 +- 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)