diff mbox series

[v2,02/11] build: Require at least version 0.67 when building with external ELL

Message ID 20240711164654.1688558-2-denkenz@gmail.com (mailing list archive)
State Not Applicable
Headers show
Series [v2,01/11] udevng: Remove gps from setup_gobi | expand

Commit Message

Denis Kenzior July 11, 2024, 4:46 p.m. UTC
From: Marcel Holtmann <marcel@holtmann.org>

---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

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