- enable I/O interface to debugger, when the debugger is enabled

This commit is contained in:
Bryce Denney 2002-03-21 02:14:51 +00:00
parent 077e7fd683
commit 5ab4415516
2 changed files with 3904 additions and 1814 deletions

5709
bochs/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -947,8 +947,13 @@ AC_ARG_ENABLE(iodebug,
fi
],
[
AC_MSG_RESULT(no)
AC_DEFINE(BX_IODEBUG_SUPPORT, 0)
if test "" = 1; then
# enable by default if debugger is on
AC_MSG_RESULT(yes)
AC_DEFINE(BX_IODEBUG_SUPPORT, 1)
else
AC_MSG_RESULT(no)
fi
]
)
AC_SUBST(IODEBUG_OBJS)