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 1AzbXu-0003fs-Dv for qemu-devel@nongnu.org; Sat, 06 Mar 2004 08:08:50 -0500 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1AzbXL-0003XW-Q2 for qemu-devel@nongnu.org; Sat, 06 Mar 2004 08:08:47 -0500 Received: from [213.191.74.84] (helo=mx2.ngi.de) by monty-python.gnu.org with esmtp (Exim 4.30) id 1AzbVr-00037T-Pa for qemu-devel@nongnu.org; Sat, 06 Mar 2004 08:06:43 -0500 Date: Sat, 6 Mar 2004 14:05:23 +0100 From: Richard Zidlicky Message-ID: <20040306130523.GA5887@linux-m68k.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Subject: [Qemu-devel] [patch] m68k build fixes Reply-To: qemu-devel@nongnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, fabrice.bellard@free.fr Hi, trivial fixes against current CVS. Richard --- qemu-0.5.3/configure.rz Fri Mar 5 14:53:06 2004 +++ qemu-0.5.3/configure Fri Mar 5 20:28:00 2004 @@ -278,8 +278,8 @@ echo "ARCH=ia64" >> $config_mak echo "#define HOST_IA64 1" >> $config_h elif test "$cpu" = "m68k" ; then - echo "ARCH=m68k" >> config.mak - echo "#define HOST_M68K 1" >> $TMPH + echo "ARCH=m68k" >> $config_mak + echo "#define HOST_M68K 1" >> $config_h else echo "Unsupported CPU" exit 1 --- qemu-0.5.3/Makefile.target.rz Fri Mar 5 14:52:47 2004 +++ qemu-0.5.3/Makefile.target Fri Mar 5 20:39:22 2004 @@ -35,6 +35,11 @@ endif endif +ifeq ($(ARCH), m68k) +ifdef CONFIG_SOFTMMU +PROGS+=$(QEMU_SYSTEM) +endif +endif endif ifeq ($(TARGET_ARCH), ppc)