Avoid corefiles. Check for large file support (> 2 GB).

This commit is contained in:
gbeauche 2004-06-30 08:48:45 +00:00
parent 0d206db2e7
commit 39a6cdf957

View File

@ -10,6 +10,10 @@ dnl Canonical system information.
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
dnl Some systems do not put corefiles in the currect directory, avoid saving
dnl cores for the configure tests since some are intended to dump core.
ulimit -c 0
dnl Options.
AC_ARG_ENABLE(jit, [ --enable-jit enable JIT compiler [default=yes]], [WANT_JIT=$enableval], [WANT_JIT=yes])
AC_ARG_ENABLE(ppc-emulator, [ --enable-ppc-emulator use the selected PowerPC emulator [default=auto]], [WANT_EMULATED_PPC=$enableval], [WANT_EMULATED_PPC=auto])
@ -211,6 +215,9 @@ if [[ "x$WANT_ESD" = "xyes" ]]; then
])
fi
dnl We use 64-bit file size support if possible.
AC_SYS_LARGEFILE
dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_SYS_WAIT