From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EA0bY-0005P4-Mf for qemu-devel@nongnu.org; Tue, 30 Aug 2005 03:32:24 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EA0bW-0005Nr-Hm for qemu-devel@nongnu.org; Tue, 30 Aug 2005 03:32:23 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EA0aF-0004vz-9l for qemu-devel@nongnu.org; Tue, 30 Aug 2005 03:31:03 -0400 Received: from [65.74.133.11] (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 1EA0YR-0006VN-Mf for qemu-devel@nongnu.org; Tue, 30 Aug 2005 03:29:11 -0400 From: Paul Brook Subject: Re: [Qemu-devel] Minor bug in 0.7.1 install Date: Tue, 30 Aug 2005 08:26:39 +0100 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200508300826.40382.paul@codesourcery.com> 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 Cc: Greg Bell > 1) on my FC3 box, i had to force sdl to compile statically because > the sdl test didn't work for some reason (could be my box's > problem). but there's no way to set sdl = 'yes' from the > configure command line. so i hacked configure, but then line > 730 dies: > > echo "SDL_LIBS=$sdl_static_libs" >> $config_mak > > this is because $sdl_static_libs evaluates to a multiple word string on my > system. eg: > > $ sdl-config --static-libs > -L/usr/lib -lSDL -lpthread -lm -ldl -lasound -L/usr/X11R6/lib -lX11 -lXext > > so "SDL_LIBS=multiple word thing" is an error. $config_mak is a makefile fragment, not a shell script, so this should work fine. Paul