aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2024-04-26 19:25:59 +0200
committerMarcel Holtmann <marcel@holtmann.org>2024-04-26 19:25:59 +0200
commit3a605725a783bddca3dd3527541d7ff7eb9893b2 (patch)
tree29a03fe17f3152dd04f706b8eca38724fe96328a
parentd708ed16ba89b3c2f8ee18165aff7f736d0791a5 (diff)
downloadofono-3a605725a783bddca3dd3527541d7ff7eb9893b2.tar.gz
build: Require at least version 0.65 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 510d2595d..453c69e1f 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.62, dummy=yes,
- AC_MSG_ERROR(Embedded Linux library >= 0.62 is required))
+ PKG_CHECK_MODULES(ELL, ell >= 0.65, dummy=yes,
+ AC_MSG_ERROR(Embedded Linux library >= 0.65 is required))
AC_SUBST(ELL_CFLAGS)
AC_SUBST(ELL_LIBS)
fi