From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JyV8L-0000US-Dc for qemu-devel@nongnu.org; Tue, 20 May 2008 12:56:17 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JyV8H-0000UG-SK for qemu-devel@nongnu.org; Tue, 20 May 2008 12:56:16 -0400 Received: from [199.232.76.173] (port=50090 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JyV8H-0000UD-NO for qemu-devel@nongnu.org; Tue, 20 May 2008 12:56:13 -0400 Received: from main.gmane.org ([80.91.229.2]:36269 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JyV8H-0004xg-1B for qemu-devel@nongnu.org; Tue, 20 May 2008 12:56:13 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JyV7p-00036m-V1 for qemu-devel@nongnu.org; Tue, 20 May 2008 16:55:45 +0000 Received: from 204.147.152.1 ([204.147.152.1]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 May 2008 16:55:45 +0000 Received: from void by 204.147.152.1 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 20 May 2008 16:55:45 +0000 From: "consul" Date: Tue, 20 May 2008 09:55:32 -0700 Message-ID: References: Sender: news Subject: [Qemu-devel] Re: [4476] musicpal: Improve button handling (Jan Kiszka). Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Target arm-softmmu still does not compile on Windows. The fix is trivial, please apply it (or my previous patch, if you wish). Alex. Index: hw/musicpal.c =================================================================== --- hw/musicpal.c (revision 4504) +++ hw/musicpal.c (working copy) @@ -1495,7 +1495,11 @@ * Wait a bit to catch menu button during U-Boot start-up * (to trigger emergency update). */ +#ifdef _WIN32 + Sleep(1000); +#else sleep(1); +#endif