summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-03 14:24:19 +0200
committerBram Moolenaar <Bram@vim.org>2020-10-03 14:24:19 +0200
commit588d241d44fc25ad4c5a635ee4fdeafdfcee0fde (patch)
treef8749347e00d7e05a1a8230fdab96e76f0ac8d6c
parent1bdae4032359081325578cc74739a0a097e008ff (diff)
downloadvim-git-588d241d44fc25ad4c5a635ee4fdeafdfcee0fde.tar.gz
patch 8.2.1792: Configure does not recognize Racket 6.1+v8.2.1792
Problem: Configure does not recognize Racket 6.1+. Solution: Add a check for "rktio". (closes #7062)
-rwxr-xr-xsrc/auto/configure3
-rw-r--r--src/configure.ac3
-rw-r--r--src/version.c2
3 files changed, 8 insertions, 0 deletions
diff --git a/src/auto/configure b/src/auto/configure
index 37a60fad2..13eaea6f8 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"
diff --git a/src/configure.ac b/src/configure.ac
index d26299003..457f2b82b 100644
--- a/src/configure.ac
+++ b/src/configure.ac
@@ -880,6 +880,9 @@ if test "$enable_mzschemeinterp" = "yes"; then
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"
diff --git a/src/version.c b/src/version.c
index 40a5ea8cd..33d39bdd6 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1792,
+/**/
1791,
/**/
1790,