forked from aniani/vim
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)
This commit is contained in:
3
src/auto/configure
vendored
3
src/auto/configure
vendored
@@ -5823,6 +5823,9 @@ $as_echo "not found" >&6; }
|
|||||||
MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
|
MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
|
||||||
elif test -f "${path}/libracket3m.a"; then
|
elif test -f "${path}/libracket3m.a"; then
|
||||||
MZSCHEME_LIBS="${path}/libracket3m.a"
|
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"
|
MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
|
||||||
elif test -f "${path}/libracket.a"; then
|
elif test -f "${path}/libracket.a"; then
|
||||||
MZSCHEME_LIBS="${path}/libracket.a ${path}/libmzgc.a"
|
MZSCHEME_LIBS="${path}/libracket.a ${path}/libmzgc.a"
|
||||||
|
|||||||
@@ -880,6 +880,9 @@ if test "$enable_mzschemeinterp" = "yes"; then
|
|||||||
MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
|
MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
|
||||||
elif test -f "${path}/libracket3m.a"; then
|
elif test -f "${path}/libracket3m.a"; then
|
||||||
MZSCHEME_LIBS="${path}/libracket3m.a"
|
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"
|
MZSCHEME_CFLAGS="-DMZ_PRECISE_GC"
|
||||||
elif test -f "${path}/libracket.a"; then
|
elif test -f "${path}/libracket.a"; then
|
||||||
MZSCHEME_LIBS="${path}/libracket.a ${path}/libmzgc.a"
|
MZSCHEME_LIBS="${path}/libracket.a ${path}/libmzgc.a"
|
||||||
|
|||||||
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1792,
|
||||||
/**/
|
/**/
|
||||||
1791,
|
1791,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user