From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1BJHCt-0006ZE-CR for qemu-devel@nongnu.org; Thu, 29 Apr 2004 15:28:27 -0400 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1BJGwH-0001gd-G8 for qemu-devel@nongnu.org; Thu, 29 Apr 2004 15:11:48 -0400 Received: from [194.109.195.176] (helo=spit.local) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BJGNK-00009c-1F for qemu-devel@nongnu.org; Thu, 29 Apr 2004 14:35:10 -0400 Message-ID: <40914AD3.6090707@linux-m68k.org> Date: Thu, 29 Apr 2004 20:34:59 +0200 From: Roman Zippel MIME-Version: 1.0 Subject: Re: [Qemu-devel] Qemu CVS under Debian SID / Missing lgpm library References: <200404291105.31188.jm@poure.com> In-Reply-To: <200404291105.31188.jm@poure.com> Content-Type: multipart/mixed; boundary="------------030701060405000203070707" Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: jm@poure.com, qemu-devel@nongnu.org This is a multi-part message in MIME format. --------------030701060405000203070707 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi, Jean-Michel POURE wrote: > Qemu CVS compilation fails under Debian SID because of a broken sdl-config. I > opened a bug on the Debian tracking system today. But it may take some time > and it would nice to think of a turnaround. The attached patch fixes this here. bye, Roman --------------030701060405000203070707 Content-Type: text/x-patch; name="qemu.configure.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="qemu.configure.diff" Index: configure =================================================================== RCS file: /cvsroot/qemu/qemu/configure,v retrieving revision 1.34 diff -u -p -r1.34 configure --- configure 22 Apr 2004 21:46:47 -0000 1.34 +++ configure 29 Apr 2004 18:31:17 -0000 @@ -220,7 +220,7 @@ aa="no" `$sdl_config --static-libs | grep \\\-laa > /dev/null` && aa="yes" sdl_static_libs=`$sdl_config --static-libs` if [ "$aa" = "yes" ] ; then - sdl_static_libs="$sdl_static_libs `aalib-config --libs`" + sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`" fi if $cc -o $TMPE `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then --------------030701060405000203070707--