- improved help messages

- updated version number and strings
This commit is contained in:
Volker Ruppert 2005-04-21 19:07:22 +00:00
parent eaf492de82
commit bf07db42e4
2 changed files with 17 additions and 17 deletions

18
bochs/configure vendored
View File

@ -1,5 +1,5 @@
#! /bin/sh
# From configure.in Id: configure.in,v 1.279 2005/04/18 17:21:32 sshwarts Exp .
# From configure.in Id: configure.in,v 1.281 2005/04/21 19:06:31 vruppert Exp .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59.
#
@ -1041,12 +1041,12 @@ Optional Features:
--enable-x86-64 compile in support for x86-64 instructions
--enable-cpu-level select cpu level (3,4,5,6)
--enable-apic enable APIC support
--enable-compressed-hd allows compressed (zlib) hard disk image
--enable-compressed-hd allows compressed (zlib) hard disk image (not implemented yet)
--enable-ne2000 enable limited ne2000 support
--enable-pci enable limited i440FX PCI support
--enable-pcidev enable PCI host device mapping support (linux host only)
--enable-usb enable limited USB support
--enable-pnic enable pseudo NIC support
--enable-pnic enable PCI pseudo NIC support
--enable-4meg-pages support 4Megabyte pages extensions
--enable-pae support Physical Address Extensions
--enable-guest2host-tlb support guest to host addr TLB for speed
@ -1061,7 +1061,7 @@ Optional Features:
--enable-reset-on-triple-fault reset when cpu detects a triple fault
--enable-cpp use .cpp as C++ suffix
--enable-debugger compile in support for Bochs internal debugger
--enable-external-debugger enable external debugger support
--enable-external-debugger enable external debugger support (win32 only)
--enable-magic-breakpoints enable magic debugger breakpoints
--enable-disasm compile in support for disassembler
--enable-all-optimizations compile in all possible optimizations
@ -1570,9 +1570,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_config_headers="$ac_config_headers ltdlconf.h"
VERSION="2.2.pre3"
VER_STRING="2.2.pre3"
REL_STRING="Build from CVS snapshot on April 16, 2005"
VERSION="2.2.pre3.cvs"
VER_STRING="2.2.pre3.cvs"
REL_STRING="Build from CVS, after 2.2.pre3"
@ -34006,8 +34006,8 @@ _ACEOF
fi;
echo "$as_me:$LINENO: checking for pseudo NIC support" >&5
echo $ECHO_N "checking for pseudo NIC support... $ECHO_C" >&6
echo "$as_me:$LINENO: checking for PCI pseudo NIC support" >&5
echo $ECHO_N "checking for PCI pseudo NIC support... $ECHO_C" >&6
# Check whether --enable-pnic or --disable-pnic was given.
if test "${enable_pnic+set}" = set; then
enableval="$enable_pnic"

View File

@ -2,15 +2,15 @@ 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.280 2005-04-20 17:44:16 sshwarts Exp $]])
AC_REVISION([[$Id: configure.in,v 1.281 2005-04-21 19:06:31 vruppert Exp $]])
AC_CONFIG_HEADER(config.h)
AC_CONFIG_HEADER(ltdlconf.h)
dnl // Put Bochs version information right here so that it gets substituted
dnl // into all the right places.
VERSION="2.2.pre3"
VER_STRING="2.2.pre3"
REL_STRING="Build from CVS snapshot on April 16, 2005"
VERSION="2.2.pre3.cvs"
VER_STRING="2.2.pre3.cvs"
REL_STRING="Build from CVS, after 2.2.pre3"
changequote(<<, >>)
changequote([, ])
@ -691,7 +691,7 @@ AC_CHECK_HEADER(zlib.h, [AC_CHECK_LIB(z, gzopen, AC_DEFINE(BX_HAVE_ZLIB,1))] )
AC_MSG_CHECKING(for compressed hard disk image support)
AC_ARG_ENABLE(compressed-hd,
[ --enable-compressed-hd allows compressed (zlib) hard disk image],
[ --enable-compressed-hd allows compressed (zlib) hard disk image (not implemented yet)],
[if test "$enableval" = yes; then
AC_MSG_RESULT(yes)
AC_DEFINE(BX_COMPRESSED_HD_SUPPORT, 1)
@ -829,9 +829,9 @@ AC_ARG_ENABLE(usb,
]
)
AC_MSG_CHECKING(for pseudo NIC support)
AC_MSG_CHECKING(for PCI pseudo NIC support)
AC_ARG_ENABLE(pnic,
[ --enable-pnic enable pseudo NIC support],
[ --enable-pnic enable PCI pseudo NIC support],
[if test "$enableval" = yes; then
AC_MSG_RESULT(yes)
AC_DEFINE(BX_SUPPORT_PCIPNIC, 1)
@ -1187,7 +1187,7 @@ AC_SUBST(DEBUGGER_VAR)
AC_MSG_CHECKING(for external debugger)
EXT_DEBUG_OBJS=''
AC_ARG_ENABLE(external-debugger,
[ --enable-external-debugger enable external debugger support],
[ --enable-external-debugger enable external debugger support (win32 only)],
[if test "$enableval" = yes; then
case $target in
*-pc-windows* | *-cygwin* | *-mingw32*)