1
0
Fork 0

- Reportedly the program works with 1.4.16.

- suggest the user how to bypass the compiler check.
This commit is contained in:
cage 2021-01-13 18:36:42 +01:00
parent 944b4a0c8d
commit 25a161ad90
2 changed files with 5 additions and 2 deletions

4
configure vendored
View File

@ -6748,7 +6748,7 @@ fi
SBCL_MIN_VERSION="1.5.9";
SBCL_MIN_VERSION="1.4.16";
SBCL_VERSION=`${LISP_COMPILER} --version | ${GAWK} -- '// {print $2}'`
CHECK_COMPILER_VERSION_P="yes"
@ -6764,6 +6764,8 @@ if test "$enable_check_sbcl_version" = "yes" || test "$enable_check_sbcl_version
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the compiler is too old" >&5
$as_echo_n "checking if the compiler is too old... " >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: To Disable this tests use type './configure --disable-check-sbcl-version." >&5
$as_echo "$as_me: To Disable this tests use type './configure --disable-check-sbcl-version." >&6;}
if test "$SBCL_VERSION_OK" = "1" ; then
as_fn_error $? "Lisp compiler too old, $SBCL_MIN_VERSION is the oldest supported." "$LINENO" 5

View File

@ -76,7 +76,7 @@ fi
AC_PROG_MKDIR_P
dnl check sbcl version
SBCL_MIN_VERSION="1.5.9";
SBCL_MIN_VERSION="1.4.16";
SBCL_VERSION=`${LISP_COMPILER} --version | ${GAWK} -- '// {print $2}'`
CHECK_COMPILER_VERSION_P="yes"
@ -87,6 +87,7 @@ if test "$enable_check_sbcl_version" = "yes" || test "$enable_check_sbcl_version
SBCL_VERSION_OK=`echo "$SBCL_VERSION $SBCL_MIN_VERSION" | awk -f compare_version.awk`
AC_MSG_CHECKING([if the compiler is too old])
AC_MSG_NOTICE([To Disable this tests use type './configure --disable-check-sbcl-version.])
if test "$SBCL_VERSION_OK" = "1" ; then
AC_MSG_ERROR([Lisp compiler too old, $SBCL_MIN_VERSION is the oldest supported.])