Implicitly specify deprecated options in configure script

This commit is contained in:
Stanislav Shwartsman 2006-06-22 16:43:50 +00:00
parent 275ea4f7c9
commit a48cd0c3d1
3 changed files with 12 additions and 14 deletions

View File

@ -28,7 +28,7 @@ Changes in 2.3 release:
could choose amount of cores per processor and amount of HT threads per
core from .bochsrc for SMP simulation (Stanislav Shwartsman)
- Allow to control SMP quantum value through .bochsrc CPU
option parameter. Previous Bochs version used hardcoded quantum=5
option parameter. Previous Bochs versions used hardcoded quantum=5
value.
- Fixed interrupt priority bug in service_local_apic()
- Fixed again reading of APIC IRR/ISR/TMR registers. Finally it becomes
@ -72,7 +72,6 @@ Changes in 2.3 release:
[1386671] Combined dual core and hyper-threading patch
- these S.F. bugs were closed
[427550] Incomplete IRETD implementation
[1508947] APIC interrupt priority checking and interrupt delivery
[766286] Debugger halts after any GPF exception
[639143] va_list is not a pointer on linuxppc

17
bochs/configure vendored
View File

@ -1,5 +1,5 @@
#! /bin/sh
# From configure.in Id.
# From configure.in Id: configure.in,v 1.320 2006/05/27 15:54:47 sshwarts Exp .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59.
#
@ -39283,8 +39283,8 @@ echo "${ECHO_T}no" >&6
fi;
echo "$as_me:$LINENO: checking whether to reset on triple fault" >&5
echo $ECHO_N "checking whether to reset on triple fault... $ECHO_C" >&6
echo "$as_me:$LINENO: checking whether to reset on triple fault (deprecated)" >&5
echo $ECHO_N "checking whether to reset on triple fault (deprecated)... $ECHO_C" >&6
# Check whether --enable-reset-on-triple-fault or --disable-reset-on-triple-fault was given.
if test "${enable_reset_on_triple_fault+set}" = set; then
enableval="$enable_reset_on_triple_fault"
@ -39301,8 +39301,8 @@ echo "${ECHO_T}no" >&6
fi;
echo "$as_me:$LINENO: checking PNI support" >&5
echo $ECHO_N "checking PNI support... $ECHO_C" >&6
echo "$as_me:$LINENO: checking PNI support (deprecated)" >&5
echo $ECHO_N "checking PNI support (deprecated)... $ECHO_C" >&6
# Check whether --enable---enable-pni or --disable---enable-pni was given.
if test "${enable___enable_pni+set}" = set; then
enableval="$enable___enable_pni"
@ -39526,10 +39526,9 @@ for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
# 1. Remove the extension, and $U if already installed.
ac_i=`echo "$ac_i" |
sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
# 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
# will be set to the directory where LIBOBJS objects are built.
ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo'
# 2. Add them.
ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
done
LIBOBJS=$ac_libobjs

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.320 2006-05-27 15:54:47 sshwarts Exp $]])
AC_REVISION([[$Id: configure.in,v 1.321 2006-06-22 16:43:50 sshwarts Exp $]])
AC_CONFIG_HEADER(config.h)
AC_CONFIG_HEADER(ltdlconf.h)
@ -2753,7 +2753,7 @@ AC_ARG_ENABLE(processors,
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(whether to reset on triple fault)
AC_MSG_CHECKING(whether to reset on triple fault (deprecated))
AC_ARG_ENABLE(reset-on-triple-fault,
[ --enable-reset-on-triple-fault reset when cpu detects a triple fault (deprecated)],
[AC_MSG_RESULT($enableval)
@ -2763,7 +2763,7 @@ AC_ARG_ENABLE(reset-on-triple-fault,
AC_MSG_RESULT(no)
])
AC_MSG_CHECKING(PNI support)
AC_MSG_CHECKING(PNI support (deprecated))
AC_ARG_ENABLE(--enable-pni,
[ --enable-pni PNI support (deprecated)],
[AC_MSG_RESULT($enableval)