From cc601fcb65a2bb1267488fdbead73285fb64e558 Mon Sep 17 00:00:00 2001 From: Marcin Wojdyr Date: Mon, 8 Aug 2022 00:43:19 +0200 Subject: [PATCH] require xylib >= 1.6 --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 9bc30fa5..4abb4383 100644 --- a/configure.ac +++ b/configure.ac @@ -93,11 +93,11 @@ AC_CHECK_HEADER([xylib/xylib.h], [], [AC_MSG_ERROR( AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([@%:@include ], [ -#if XYLIB_VERSION < 10600 || XYLIB_VERSION >= 10700 -# error "xylib 1.6 is required" +#if XYLIB_VERSION < 10600 +# error "xylib >= 1.6 is required" #endif ])], - [], [AC_MSG_ERROR([xylib != 1.6 is not installed])]) + [], [AC_MSG_ERROR([xylib >= 1.6 is not installed])]) AS_IF([test x"$LUA52_FROM_SOURCE" = xyes], [ LUA_INCLUDE='-I$(top_srcdir)/fityk/lua52/src'