From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DNFxJ-0006Ee-9V for qemu-devel@nongnu.org; Sun, 17 Apr 2005 16:01:21 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DNFx5-0006AI-Eg for qemu-devel@nongnu.org; Sun, 17 Apr 2005 16:01:09 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DNFx4-000680-Eh for qemu-devel@nongnu.org; Sun, 17 Apr 2005 16:01:06 -0400 Received: from [65.74.133.9] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1DNFw4-000597-Dc for qemu-devel@nongnu.org; Sun, 17 Apr 2005 16:00:04 -0400 From: Paul Brook Date: Sun, 17 Apr 2005 20:58:36 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504172058.37484.paul@codesourcery.com> Subject: [Qemu-devel] [patch] Cygwin host support. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fabrice Bellard Cc: qemu-devel@nongnu.org The patch below adds nominal cygwin host support. It basically just makes it pretend to be mingw. Paul Index: configure =================================================================== RCS file: /cvsroot/qemu/qemu/configure,v retrieving revision 1.61 diff -u -p -r1.61 configure --- configure 13 Mar 2005 16:51:53 -0000 1.61 +++ configure 17 Apr 2005 19:52:54 -0000 @@ -88,6 +88,10 @@ cocoa="no" # OS specific targetos=`uname -s` case $targetos in +CYGWIN*) +mingw32="yes" +CFLAGS="-O2 -mno-cygwin" +;; MINGW32*) mingw32="yes" ;;