- fixed default setting of BX_SUPPORT_MMX

This commit is contained in:
Volker Ruppert 2004-02-13 16:11:14 +00:00
parent 9f1baf9fe3
commit 199f6a72c1
2 changed files with 3 additions and 3 deletions

2
bochs/configure vendored
View File

@ -33625,7 +33625,7 @@ _ACEOF
else
if test "bx_cpu_level" >= 5; then
if test "$bx_cpu_level" -ge 5; then
echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6
cat >>confdefs.h <<\_ACEOF

View File

@ -2,7 +2,7 @@ dnl // Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50)
AC_INIT(bochs.h)
AC_REVISION([[$Id: configure.in,v 1.249 2004-02-13 12:21:47 sshwarts Exp $]])
AC_REVISION([[$Id: configure.in,v 1.250 2004-02-13 16:11:14 vruppert Exp $]])
AC_CONFIG_HEADER(config.h)
AC_CONFIG_HEADER(ltdlconf.h)
@ -1534,7 +1534,7 @@ AC_ARG_ENABLE(mmx,
fi
],
[
if test "bx_cpu_level" >= 5; then
if test "$bx_cpu_level" -ge 5; then
AC_MSG_RESULT(yes)
AC_DEFINE(BX_SUPPORT_MMX, 1)
fi