From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LTjep-0005pd-Um for qemu-devel@nongnu.org; Sun, 01 Feb 2009 16:15:11 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LTjeo-0005p5-4m for qemu-devel@nongnu.org; Sun, 01 Feb 2009 16:15:10 -0500 Received: from [199.232.76.173] (port=55603 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LTjen-0005p2-Va for qemu-devel@nongnu.org; Sun, 01 Feb 2009 16:15:10 -0500 Received: from mailout.artfiles.de ([80.252.97.80]:51549) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LTjen-0008AU-Ik for qemu-devel@nongnu.org; Sun, 01 Feb 2009 16:15:09 -0500 Received: from [77.128.26.6] (helo=[192.168.0.4]) auth=rr@bttr-software.de by mailout.artfiles.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) id 1LTjed-0005YH-F3 for qemu-devel@nongnu.org; Sun, 01 Feb 2009 22:14:59 +0100 Message-ID: <498610D2.5050603@bttr-software.de> Date: Sun, 01 Feb 2009 22:14:58 +0100 From: Robert Riebisch MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Building QEMU CVS with DirectSound on MinGW broken 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 Hi! I'm getting this error: c:/MinGW/bin/../lib/gcc/mingw32/3.4.5/../../../../include/rpcdce.h:369: error: syntax error before "__attribute__" I was able to fix this by moving inclusion of `dsound.h' above that of `qemu-common.h'. The real cause seems to be "#define noreturn __attribute__ ((__noreturn__))" in `qemu-common.h'. This has been added in r6303 and "fixed" in r6330. Here's my patch for demonstration: *** --- dsoundaudio.c.orig Wed Dec 03 23:48:44 2008 +++ dsoundaudio.c Sun Feb 01 21:48:59 2009 @@ -26,6 +26,8 @@ * SEAL 1.07 by Carlos 'pel' Hasan was used as documentation */ +#include + #include "qemu-common.h" #include "audio.h" @@ -35,8 +37,6 @@ #define WIN32_LEAN_AND_MEAN #include #include -#include -#include /* #define DEBUG_DSOUND */ *** Signed-off-by: Robert Riebisch I've just removed `objbase.h', because it will be included with `dsound.h' already. Robert Riebisch P.S. I'm using 2002 `directx-devel.tar.gz' from the SDL project. -- BTTR Software http://www.bttr-software.de/