diff --git a/bochs/configure b/bochs/configure index 7556c9347..da6464bfb 100755 --- a/bochs/configure +++ b/bochs/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in,v 1.261 2004/08/18 11:48:56 vruppert Exp . +# From configure.in Id: configure.in,v 1.262 2004/09/12 11:20:46 vruppert Exp . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.57. # @@ -35171,6 +35171,13 @@ _ACEOF #define HAVE_ETHERTAP 0 _ACEOF + ;; + *-pc-cygwin*) + EXE=".exe" + PRIMARY_TARGET="bochs.exe" + if test "$networking" = yes; then + PRIMARY_TARGET="$PRIMARY_TARGET niclist.exe" + fi ;; *-beos*) PRIMARY_TARGET=.bochs_beos_target diff --git a/bochs/configure.in b/bochs/configure.in index 94f6efc78..43a54b1b7 100644 --- a/bochs/configure.in +++ b/bochs/configure.in @@ -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.261 2004-08-18 11:48:56 vruppert Exp $]]) +AC_REVISION([[$Id: configure.in,v 1.262 2004-09-12 11:20:46 vruppert Exp $]]) AC_CONFIG_HEADER(config.h) AC_CONFIG_HEADER(ltdlconf.h) @@ -2345,6 +2345,13 @@ case "$target" in AC_DEFINE(BX_HAVE_USLEEP, 0) AC_DEFINE(HAVE_ETHERTAP, 0) ;; + *-pc-cygwin*) + EXE=".exe" + PRIMARY_TARGET="bochs.exe" + if test "$networking" = yes; then + PRIMARY_TARGET="$PRIMARY_TARGET niclist.exe" + fi + ;; *-beos*) PRIMARY_TARGET=.bochs_beos_target ;;