- move Dave's changes to configure into configure.in so that they don't

get wiped out next time we run autoconf.
This commit is contained in:
Bryce Denney 2001-09-18 05:25:29 +00:00
parent fc78113e87
commit c89f3de147
2 changed files with 225 additions and 199 deletions

400
bochs/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -744,6 +744,28 @@ AC_ARG_ENABLE(hga-dumps,
AC_DEFINE_UNQUOTED(BX_EMULATE_HGA_DUMPS, $enableval),
)
AC_MSG_CHECKING(for I/O Interface to the debugger)
IODEBUG_OBJS=''
AC_ARG_ENABLE(iodebug,
[ --enable-iodebug enable I/O interface to debugger],
[if test "$enableval" = yes; then
AC_MSG_RESULT(yes)
AC_DEFINE(BX_IODEBUG_SUPPORT, 1)
IODEBUG_OBJS='iodebug.o'
else
AC_MSG_RESULT(no)
AC_DEFINE(BX_IODEBUG_SUPPORT, 0)
fi
],
[
AC_MSG_RESULT(no)
AC_DEFINE(BX_IODEBUG_SUPPORT, 0)
]
)
AC_SUBST(IODEBUG_OBJS)
PRIMARY_TARGET='bochs'
AC_DEFINE(BX_PROVIDE_DEVICE_MODELS, 1)