fix typos in configure
help
This commit is contained in:
parent
3c95034a90
commit
d3a5006721
17
racket/src/configure
vendored
17
racket/src/configure
vendored
|
@ -1480,7 +1480,7 @@ Optional Features:
|
|||
--enable-sgc use Senora GC instead of Boehm GC (enabled by default)
|
||||
--enable-sgcdebug use Senora GC for debugging (expensive debug mode)
|
||||
--enable-backtrace 3m: support GC backtrace dumps (expensive debug mode)
|
||||
--enable-cify compile startup code to C insteda of bytecode
|
||||
--enable-cify compile startup code to C instead of bytecode
|
||||
--enable-pthread link with pthreads (usually auto-enabled if needed)
|
||||
--enable-stackup assume "up" if stack direction cannot be determined
|
||||
--enable-bigendian assume "big" if endianness cannot be determined
|
||||
|
@ -5984,21 +5984,6 @@ fi
|
|||
|
||||
|
||||
|
||||
if test "${endianness}" = "unknown" ; then
|
||||
if test "${enable_bigendian}" = "yes" ; then
|
||||
endianness=big
|
||||
else
|
||||
echo configure: warning: cannot determine endianness, assuming little
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "${endianness}" = "big" ; then
|
||||
|
||||
$as_echo "#define SCHEME_BIG_ENDIAN 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
|
||||
msg="for stack direction"
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $msg" >&5
|
||||
$as_echo_n "checking $msg... " >&6; }
|
||||
|
|
|
@ -73,7 +73,7 @@ AC_ARG_ENABLE(sgc, [ --enable-sgc use Senora GC instead of Boehm
|
|||
AC_ARG_ENABLE(sgcdebug,[ --enable-sgcdebug use Senora GC for debugging (expensive debug mode)])
|
||||
AC_ARG_ENABLE(backtrace, [ --enable-backtrace 3m: support GC backtrace dumps (expensive debug mode)])
|
||||
|
||||
AC_ARG_ENABLE(backtrace, [ --enable-cify compile startup code to C insteda of bytecode])
|
||||
AC_ARG_ENABLE(backtrace, [ --enable-cify compile startup code to C instead of bytecode])
|
||||
|
||||
AC_ARG_ENABLE(pthread, [ --enable-pthread link with pthreads (usually auto-enabled if needed)])
|
||||
AC_ARG_ENABLE(stackup, [ --enable-stackup assume "up" if stack direction cannot be determined])
|
||||
|
@ -1258,19 +1258,6 @@ AC_CHECK_SIZEOF(bool, unused, [#include <stdbool.h>])
|
|||
AC_TYPE_INTPTR_T
|
||||
AC_TYPE_UINTPTR_T
|
||||
|
||||
if test "${endianness}" = "unknown" ; then
|
||||
if test "${enable_bigendian}" = "yes" ; then
|
||||
endianness=big
|
||||
else
|
||||
echo configure: warning: cannot determine endianness, assuming little
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "${endianness}" = "big" ; then
|
||||
AC_DEFINE(SCHEME_BIG_ENDIAN,1,[Big endian])
|
||||
fi
|
||||
|
||||
|
||||
[ msg="for stack direction" ]
|
||||
AC_MSG_CHECKING($msg)
|
||||
AC_TRY_RUN(
|
||||
|
|
Loading…
Reference in New Issue
Block a user