- missing extension ".exe" added for "make install" on cygwin

- compile niclist.exe on cygwin if networking is enabled
This commit is contained in:
Volker Ruppert 2004-09-12 11:25:01 +00:00
parent 1663f995e0
commit 5e47de7968
2 changed files with 16 additions and 2 deletions

9
bochs/configure vendored
View File

@ -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

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.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
;;