From d6e2f1021c1673456d7dcf1e5ebbd9dfd2e1ee46 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Sun, 19 Oct 2003 17:07:34 +0000 Subject: [PATCH] added patch 826373 by Marius Strobl. Fixed a typo Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1347 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 305dc4c5..ee8f53c0 100644 --- a/configure.in +++ b/configure.in @@ -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