From patchwork Wed Sep 16 01:23:14 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: malc X-Patchwork-Id: 33682 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id 88153B6EDE for ; Wed, 16 Sep 2009 11:24:35 +1000 (EST) Received: from localhost ([127.0.0.1]:48825 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MnjG3-0007fn-Dm for incoming@patchwork.ozlabs.org; Tue, 15 Sep 2009 21:24:31 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MnjF0-0007RL-95 for qemu-devel@nongnu.org; Tue, 15 Sep 2009 21:23:26 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MnjEz-0007Qw-4c for qemu-devel@nongnu.org; Tue, 15 Sep 2009 21:23:25 -0400 Received: from [199.232.76.173] (port=56998 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MnjEy-0007Qo-Tz for qemu-devel@nongnu.org; Tue, 15 Sep 2009 21:23:24 -0400 Received: from fe02x03-cgp.akado.ru ([77.232.31.165]:56555 helo=akado.ru) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MnjEy-0007qX-ET for qemu-devel@nongnu.org; Tue, 15 Sep 2009 21:23:24 -0400 Received: from [10.0.66.9] ([10.0.66.9] verified) by fe02-cgp.akado.ru (CommuniGate Pro SMTP 5.2.13) with ESMTP id 76942094; Wed, 16 Sep 2009 05:23:11 +0400 Date: Wed, 16 Sep 2009 05:23:14 +0400 (MSD) From: malc X-X-Sender: malc@linmac.oyster.ru To: "J. B. Rainsberger" Subject: Re: [Qemu-devel] Please help, building from HEAD on Mac OS 10.6.1 In-Reply-To: Message-ID: References: MIME-Version: 1.0 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: qemu-devel@nongnu.org X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org On Tue, 15 Sep 2009, J. B. Rainsberger wrote: > Hello, folks. > > I'm new here and I'm just trying to get lcdproc to work, so please > don't hurt me. :) > > In the process of trying to build lcdproc, I found myself googling > around like mad trying to find kvm.h. I have made it here and am > trying to build qemu so that I can have kvm.h instead of trying to > fool the lcdproc build into thinking that it doesn't need kvm.h. > > I finally found the git repository for the project and am trying to > build off commit ffabf0371832aa398f647bc18b4d3c50609c1493. Configure > passes, but make fails, and I hope you will help me fix the problem. I > promise you, I've spent well over a day scouring the web for answers. > When I found the instruction "search the archives for Mac OS X > patches" I was hoping I could take advantage of your collective memory > to point me to the right patches at the right time. I hope you don't > find this lazy on my part. > > I've included the output from configure and make below so you can > comment on them. Please help. I'm trying to get an LCD working for a > test-driven development course I teach: I use as a sample application > scanning barcodes and having the price show up on a cash register > display, and while I have the barcode, I want to get a cooler display > working than just the console. Foes following fix it? [..snip..] diff --git a/audio/mixeng.h b/audio/mixeng.h index cac0569..4af1dd9 100644 --- a/audio/mixeng.h +++ b/audio/mixeng.h @@ -27,7 +27,7 @@ #ifdef FLOAT_MIXENG typedef float mixeng_real; struct mixeng_volume { int mute; mixeng_real r; mixeng_real l; }; -struct mixeng_sample { mixeng_real l; mixeng_real r; }; +struct st_sample { mixeng_real l; mixeng_real r; }; #else struct mixeng_volume { int mute; int64_t r; int64_t l; }; struct st_sample { int64_t l; int64_t r; };