]> granicus.if.org Git - vim/commitdiff
patch 8.2.1792: Configure does not recognize Racket 6.1+ v8.2.1792
authorBram Moolenaar <Bram@vim.org>
Sat, 3 Oct 2020 12:24:19 +0000 (14:24 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 3 Oct 2020 12:24:19 +0000 (14:24 +0200)
Problem:    Configure does not recognize Racket 6.1+.
Solution:   Add a check for "rktio". (closes #7062)

src/auto/configure
src/configure.ac
src/version.c

index 37a60fad2b9b6b19ae34797fc012a4253d5799fe..13eaea6f853817e7c80acf26c833d12adf30df99 100755 (executable)
@@ -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"
index d26299003a47418664daa9d718a44ecb40a21425..457f2b82b13df7989b24b07594d06453abcf5266 100644 (file)
@@ -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"
index 40a5ea8cd91f063bc124cf4dd028578a472f51cc..33d39bdd6fb81995816b4d51ce527f57be54ba96 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1792,
 /**/
     1791,
 /**/