- fixed building of display libraries other than 'win32' with debugger support

on the Windows platform
This commit is contained in:
Volker Ruppert 2009-02-01 18:25:21 +00:00
parent 4f1684d07b
commit b7f10117a9
2 changed files with 8 additions and 8 deletions

8
bochs/configure vendored
View File

@ -1,5 +1,5 @@
#! /bin/sh
# From configure.in Id: configure.in,v 1.386 2009/02/01 12:40:30 vruppert Exp .
# From configure.in Id: configure.in,v 1.387 2009/02/01 18:24:41 vruppert Exp .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61.
#
@ -37834,10 +37834,10 @@ esac
ENH_DBG_OBJS=""
if test "$gui_debugger" = 1; then
if test "$with_win32" = yes; then
ENH_DBG_OBJS="win32_enh_dbg_osdep.o"
else
if test "$needs_gtk2" = 1; then
ENH_DBG_OBJS="gtk_enh_dbg_osdep.o"
elif test "$with_win32" = yes; then
ENH_DBG_OBJS="win32_enh_dbg_osdep.o"
fi
fi

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.386 2009-02-01 12:40:30 vruppert Exp $]])
AC_REVISION([[$Id: configure.in,v 1.387 2009-02-01 18:24:41 vruppert Exp $]])
AC_CONFIG_HEADER(config.h)
AC_CONFIG_HEADER(ltdlconf.h)
@ -2726,10 +2726,10 @@ esac
ENH_DBG_OBJS=""
if test "$gui_debugger" = 1; then
if test "$with_win32" = yes; then
ENH_DBG_OBJS="win32_enh_dbg_osdep.o"
else
if test "$needs_gtk2" = 1; then
ENH_DBG_OBJS="gtk_enh_dbg_osdep.o"
elif test "$with_win32" = yes; then
ENH_DBG_OBJS="win32_enh_dbg_osdep.o"
fi
fi
AC_SUBST(ENH_DBG_OBJS)