From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CVDNy-0003A3-Rr for qemu-devel@nongnu.org; Fri, 19 Nov 2004 13:21:31 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CVDNy-00039j-1g for qemu-devel@nongnu.org; Fri, 19 Nov 2004 13:21:30 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CVDNx-00039e-VN for qemu-devel@nongnu.org; Fri, 19 Nov 2004 13:21:29 -0500 Received: from [151.189.20.156] (helo=postman.arcor.de) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1CVDEu-0001SB-Nl for qemu-devel@nongnu.org; Fri, 19 Nov 2004 13:12:09 -0500 Received: from server.schwinge.homeip.net (dialin-212-144-134-202.arcor-ip.net [212.144.134.202]) (authenticated bits=0) by postman.arcor.de (8.13.0.PreAlpha4/8.13.0.PreAlpha4) with ESMTP id iAJIC4R0009965 for ; Fri, 19 Nov 2004 19:12:05 +0100 (MET) Date: Fri, 19 Nov 2004 18:57:01 +0100 From: Thomas Schwinge Message-ID: <20041119175701.GA728@bobby.schwinge.homeip.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline Subject: [Qemu-devel] patches 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 --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello! Attached are 'qemu-Makefile-man.patch' and 'qemu-test-byteswap.h.patch'. The former removes the executable bit from the installed manual pages, the latter is from the category "check, don't speculate": 'byteswap.h' could be (and on my systems indeed is) available in a directory different from '/usr/include/'. Regards, Thomas --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="qemu-Makefile-man.patch" --- qemu-0.o/Makefile +++ qemu-0/Makefile @@ -57,7 +57,7 @@ install -m 644 qemu-doc.html qemu-tech.html "$(docdir)" ifndef CONFIG_WIN32 mkdir -p "$(mandir)/man1" - install qemu.1 qemu-img.1 "$(mandir)/man1" + install -m 0644 qemu.1 qemu-img.1 "$(mandir)/man1" endif for d in $(TARGET_DIRS); do \ $(MAKE) -C $$d $@ || exit 1 ; \ --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="qemu-test-byteswap.h.patch" --- qemu-0.o/configure +++ qemu-0/configure @@ -393,7 +393,7 @@ if test "$mingw32" = "yes" ; then echo "CONFIG_WIN32=yes" >> $config_mak echo "#define CONFIG_WIN32 1" >> $config_h -elif test -f "/usr/include/byteswap.h" ; then +elif echo '#include ' | $cc -x c -c -o $TMPO -; then echo "#define HAVE_BYTESWAP_H 1" >> $config_h fi if test "$darwin" = "yes" ; then --lrZ03NoBR/3+SXJZ--