From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1C0SkV-0006J1-IH for qemu-devel@nongnu.org; Thu, 26 Aug 2004 18:29:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1C0SkT-0006Io-Mu for qemu-devel@nongnu.org; Thu, 26 Aug 2004 18:29:39 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C0SkT-0006Il-Ke for qemu-devel@nongnu.org; Thu, 26 Aug 2004 18:29:37 -0400 Received: from [213.80.72.10] (helo=kubrik.opensource.se) by monty-python.gnu.org with esmtp (Exim 4.34) id 1C0SfQ-0004TZ-Oy for qemu-devel@nongnu.org; Thu, 26 Aug 2004 18:24:25 -0400 Received: from 192.168.1.16 (unknown [213.80.72.14]) by kubrik.opensource.se (Postfix) with ESMTP id A538D3752C for ; Fri, 27 Aug 2004 00:12:32 +0200 (CEST) From: Magnus Damm Content-Type: multipart/mixed; boundary="=-m8+aQMBE3+MW2BIP9kPT" Message-Id: <1093559458.6497.29.camel@kubu.opensource.se> Mime-Version: 1.0 Date: Fri, 27 Aug 2004 00:30:58 +0200 Subject: [Qemu-devel] [PATCH] ./configure without SDL 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 --=-m8+aQMBE3+MW2BIP9kPT Content-Type: text/plain Content-Transfer-Encoding: 7bit Hello, The attached patch removes the annoying output produced by a missing sdl-config binary. / magnus magnusd@work:~/qemu/cvs/qemu> ./configure Install prefix /usr/local BIOS directory /usr/local/share/qemu binary directory /usr/local/bin Manual directory /usr/local/share/man ELF interp prefix /usr/gnemul/qemu-%M Source path /home/magnusd/qemu/cvs/qemu C compiler gcc make make host CPU i386 host big endian no target list i386-user i386 i386-softmmu arm-user sparc-user ppc-user ppc-softmmu gprof enabled no static build no SDL support no SDL static link no mingw32 support no WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output ./configure: line 1: sdl-config: command not found ./configure: line 1: sdl-config: command not found ./configure: line 1: sdl-config: command not found magnusd@work:~/qemu/cvs/qemu> --=-m8+aQMBE3+MW2BIP9kPT Content-Disposition: attachment; filename=qemu-cvs_20040826-sdl-config.patch Content-Type: text/x-patch; name=qemu-cvs_20040826-sdl-config.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit Index: configure =================================================================== RCS file: /cvsroot/qemu/qemu/configure,v retrieving revision 1.43 diff -u -r1.43 configure --- configure 3 Aug 2004 21:14:23 -0000 1.43 +++ configure 26 Aug 2004 16:07:08 -0000 @@ -522,7 +522,7 @@ echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak fi fi - echo -n "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak + echo -n "SDL_CFLAGS=`$sdl_config --cflags 2> /dev/null`" >> $config_mak if [ "${aa}" = "yes" ] ; then echo -n " `aalib-config --cflags`" >> $config_mak ; fi --=-m8+aQMBE3+MW2BIP9kPT--