- print a message when the use_x86_64 flag forces BX_SupportPAE and

BX_SupportGlobalPages so that it's very clear when they are being
  turned on.
This commit is contained in:
Bryce Denney 2002-09-16 11:53:35 +00:00
parent fb5f2e83a4
commit 4d630a139b
2 changed files with 6 additions and 2 deletions

4
bochs/configure vendored
View File

@ -1,5 +1,5 @@
#! /bin/sh
# From configure.in Id: configure.in,v 1.104 2002/09/15 15:10:20 kevinlawton Exp .
# From configure.in Id: configure.in,v 1.105 2002/09/16 00:06:16 bdenney Exp .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53.
#
@ -11226,6 +11226,8 @@ if test ! -d build/linux; then mkdir build/linux; fi
if test "$use_x86_64" = 1; then
# For x86-64, force support of the Physical Address Extension (PAE),
# and Page Global Extension (PGE.
echo 'Because X86-64 is enabled, enabling Physical Address Extension (PAE).'
echo 'Because X86-64 is enabled, enabling Page Global Extension (PGE).'
cat >>confdefs.h <<\_ACEOF
#define BX_SupportPAE 1
_ACEOF

View File

@ -2,7 +2,7 @@ dnl // Process this file with autoconf to produce a configure script.
AC_PREREQ(2.4)
AC_INIT(bochs.h)
AC_REVISION([[$Id: configure.in,v 1.105 2002-09-16 00:06:16 bdenney Exp $]])
AC_REVISION([[$Id: configure.in,v 1.106 2002-09-16 11:53:35 bdenney Exp $]])
AC_CONFIG_HEADER(config.h)
dnl // Put Bochs version information right here so that it gets substituted
@ -1663,6 +1663,8 @@ if test ! -d build/linux; then mkdir build/linux; fi
if test "$use_x86_64" = 1; then
# For x86-64, force support of the Physical Address Extension (PAE),
# and Page Global Extension (PGE.
echo 'Because X86-64 is enabled, enabling Physical Address Extension (PAE).'
echo 'Because X86-64 is enabled, enabling Page Global Extension (PGE).'
AC_DEFINE(BX_SupportPAE, 1)
AC_DEFINE(BX_SupportGlobalPages, 1)
else