From 588d241d44fc25ad4c5a635ee4fdeafdfcee0fde Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 3 Oct 2020 14:24:19 +0200 Subject: patch 8.2.1792: Configure does not recognize Racket 6.1+ Problem: Configure does not recognize Racket 6.1+. Solution: Add a check for "rktio". (closes #7062) --- src/auto/configure | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/auto/configure') diff --git a/src/auto/configure b/src/auto/configure index 37a60fad2b..13eaea6f85 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -5823,6 +5823,9 @@ $as_echo "not found" >&6; } MZSCHEME_CFLAGS="-DMZ_PRECISE_GC" elif test -f "${path}/libracket3m.a"; then MZSCHEME_LIBS="${path}/libracket3m.a" + if test -f "${path}/librktio.a"; then + MZSCHEME_LIBS="${MZSCHEME_LIBS} ${path}/librktio.a" + fi MZSCHEME_CFLAGS="-DMZ_PRECISE_GC" elif test -f "${path}/libracket.a"; then MZSCHEME_LIBS="${path}/libracket.a ${path}/libmzgc.a" -- cgit v1.2.3