From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MWVOr-0003xt-6y for qemu-devel@nongnu.org; Thu, 30 Jul 2009 09:10:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MWVOp-0003xQ-EX for qemu-devel@nongnu.org; Thu, 30 Jul 2009 09:10:24 -0400 Received: from [199.232.76.173] (port=39103 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MWVOo-0003x6-E9 for qemu-devel@nongnu.org; Thu, 30 Jul 2009 09:10:22 -0400 Received: from fg-out-1718.google.com ([72.14.220.159]:19140) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MWVOo-0004SO-0x for qemu-devel@nongnu.org; Thu, 30 Jul 2009 09:10:22 -0400 Received: by fg-out-1718.google.com with SMTP id l27so1644570fgb.8 for ; Thu, 30 Jul 2009 06:10:20 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <200907301329.52970.paul@codesourcery.com> References: <200907301401.46536.Christoph.Egger@amd.com> <200907301329.52970.paul@codesourcery.com> Date: Thu, 30 Jul 2009 15:10:20 +0200 Message-ID: <761ea48b0907300610y6148d84akd19e27ff174dd1c9@mail.gmail.com> Subject: Re: [Qemu-devel] build fix: request for backing out 379f6698d73f476de38682b3ff96ecb226728c43 From: Laurent Desnogues Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paul Brook Cc: Christoph Egger , qemu-devel@nongnu.org On Thu, Jul 30, 2009 at 2:29 PM, Paul Brook wrote: > On Thursday 30 July 2009, Christoph Egger wrote: >> Hi! >> >> Hereby I request to backout c/s 379f6698d73f476de38682b3ff96ecb226728c43 >> for the 0.11 release. >> It breaks build on non-Linux hosts. >> >> Error Message: =A0undefined reference to `guest_base' > > --disable-guest-base. Or replace in configure: if test "$target_user_only" =3D "yes" -a "$guest_base" =3D "yes"; then with: if test "$target_linux_user" =3D "yes" -a "$guest_base" =3D "yes"; then Of course the real fix would be to add guest base support to bsd and darwin. Laurent