diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2014-03-06 14:30:56 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2014-03-06 14:30:56 +0100 |
commit | a2ef167ccd476e2574b598df8786582664f6c570 (patch) | |
tree | 325c9edd532ae973fa062babf7ba0a15c5c358e7 | |
parent | 70fb7c2ede2668013eb1cc1c7319d70d2be62f9f (diff) |
build: require libmbim 1.8
We're going to add support for some features only available in that version.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3fda9559..253013bc 100644 --- a/configure.ac +++ b/configure.ac @@ -201,7 +201,7 @@ AC_ARG_WITH(mbim, AS_HELP_STRING([--without-mbim], [Build without MBIM support]) AM_CONDITIONAL(WITH_MBIM, test "x$with_mbim" = "xyes") case $with_mbim in yes) - PKG_CHECK_MODULES(MBIM, [mbim-glib >= 1.4], [have_mbim=yes],[have_mbim=no]) + PKG_CHECK_MODULES(MBIM, [mbim-glib >= 1.8], [have_mbim=yes],[have_mbim=no]) if test "x$have_mbim" = "xno"; then AC_MSG_ERROR([Couldn't find libmbim-glib. Install it, or otherwise configure using --without-mbim to disable MBIM support.]) else |