[PATCH v2 02/11] build: Require at least version 0.67 when building with external ELL
Denis Kenzior <[email protected]>
| Newsgroups | dev.linux.lists.ofono |
|---|---|
| Message-ID | <[email protected]> |
From: Marcel Holtmann <[email protected]> --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index b14ed9e99c56..c0053df840ae 100644 --- a/configure.ac +++ b/configure.ac @@ -247,8 +247,8 @@ AC_ARG_ENABLE([external_ell], AS_HELP_STRING([--enable-external-ell], [enable external Embedded Linux library]), [enable_external_ell=${enableval}]) if (test "${enable_external_ell}" = "yes"); then - PKG_CHECK_MODULES(ELL, ell >= 0.66, dummy=yes, - AC_MSG_ERROR(Embedded Linux library >= 0.66 is required)) + PKG_CHECK_MODULES(ELL, ell >= 0.67, dummy=yes, + AC_MSG_ERROR(Embedded Linux library >= 0.67 is required)) AC_SUBST(ELL_CFLAGS) AC_SUBST(ELL_LIBS) fi -- 2.45.2