1
0
Fork 0

added patch 826373 by Marius Strobl. Fixed a typo

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1347
This commit is contained in:
Peter Veenstra 2003-10-19 17:07:34 +00:00
parent 3a49d4acf2
commit d6e2f1021c

View file

@ -86,7 +86,7 @@ AC_ARG_ENABLE(debug,AC_HELP_STRING([--enable-debug],[Enable debug mode]),[
AH_TEMPLATE(C_CORE_INLINE,[Define to 1 to use inlined memory functions in cpu core])
AC_ARG_ENABLE(core-inline,AC_HELP_STRING([--enable-core-inline],[Enable inlined memory handling in CPU Core]),[
if test x$enable_core_inline = xyes ; then
AC_MSG_RESULT([enabling inlined memory handling in CPU Core]),
AC_MSG_RESULT([enabling inlined memory handling in CPU Core])
AC_DEFINE(C_CORE_INLINE,1)
fi
],)
@ -94,7 +94,7 @@ AC_ARG_ENABLE(core-inline,AC_HELP_STRING([--enable-core-inline],[Enable inlined
AH_TEMPLATE(C_FPU,[Define to 1 to enable floating point emulation])
AC_ARG_ENABLE(fpu,AC_HELP_STRING([--disable-fpu],[Disable FPU support]),[
if test x$enable_fpu = xno ; then
AC_MSG_RESULT([disabling FPU supportd])
AC_MSG_RESULT([disabling FPU support])
else
AC_DEFINE(C_FPU,1)
fi