aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2024-07-08 12:10:06 +0200
committerAleksander Morgado <aleksander@aleksander.es>2024-07-09 14:49:22 +0000
commit26f36f79c9e7f5330a58bfde7f2f33c879e58a12 (patch)
treea60981472e7736c51bb66c6bebcfcafee3565444
parentad74320c05234cdaebc33b9f8b8e46a42e69954d (diff)
build: bump libmbim dependency
Fibocom's MBIM support needs this: mm-port-mbim-fibocom.c: In function ‘iface_port_at_check_support’: mm-port-mbim-fibocom.c:64:66: error: ‘MBIM_SERVICE_FIBOCOM’ undeclared (first use in this function); did you mean ‘MBIM_SERVICE_GOOGLE’? 64 | if (!mm_port_mbim_supports_command (MM_PORT_MBIM (self), MBIM_SERVICE_FIBOCOM, MBIM_CID_FIBOCOM_AT_COMMAND)) { | ^~~~~~~~~~~~~~~~~~~~ | MBIM_SERVICE_GOOGLE mm-port-mbim-fibocom.c:64:66: note: each undeclared identifier is reported only once for each function it appears in mm-port-mbim-fibocom.c:64:88: error: ‘MBIM_CID_FIBOCOM_AT_COMMAND’ undeclared (first use in this function) 64 | if (!mm_port_mbim_supports_command (MM_PORT_MBIM (self), MBIM_SERVICE_FIBOCOM, MBIM_CID_FIBOCOM_AT_COMMAND)) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ Fixes: c66a6b89ec45 ('fibocom: create custom MBIM port object with potential AT support')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 154fa76e..bef20008 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.30.0')
+ mbim_glib_dep = dependency('mbim-glib', version: '>= 1.31.2')
endif
config_h.set('WITH_MBIM', enable_mbim)