Skip to content

Commit

Permalink
require xylib >= 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
wojdyr committed Aug 7, 2022
1 parent a7cc864 commit cc601fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ AC_CHECK_HEADER([xylib/xylib.h], [], [AC_MSG_ERROR(

AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([@%:@include <xylib/xylib.h>], [
#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'
Expand Down

0 comments on commit cc601fc

Please sign in to comment.