aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2024-02-09 20:18:53 +0100
committerMarcel Holtmann <marcel@holtmann.org>2024-02-09 20:18:53 +0100
commit24c225e8fe6cc8a6eef0424fe17ed3a96bf7a6ff (patch)
tree3d30b37e7ba5a1b8711ac0c69b29d23be71707ee
parent3bdb52ed7e49eaf404c15c306711011ac8f1b402 (diff)
downloadofono-24c225e8fe6cc8a6eef0424fe17ed3a96bf7a6ff.tar.gz
build: Require at least version 0.62 when building with external ELL
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 237496e7e..a85f2394a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -259,8 +259,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.12, dummy=yes,
- AC_MSG_ERROR(Embedded Linux library >= 0.12 is required))
+ PKG_CHECK_MODULES(ELL, ell >= 0.62, dummy=yes,
+ AC_MSG_ERROR(Embedded Linux library >= 0.62 is required))
AC_SUBST(ELL_CFLAGS)
AC_SUBST(ELL_LIBS)
fi