From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46253) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QPsug-0007fs-La for qemu-devel@nongnu.org; Fri, 27 May 2011 05:00:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QPsuf-0000M1-Lv for qemu-devel@nongnu.org; Fri, 27 May 2011 05:00:58 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:53505) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QPsuf-0000Kv-H4 for qemu-devel@nongnu.org; Fri, 27 May 2011 05:00:57 -0400 Received: from mfilter11-d.gandi.net (mfilter11-d.gandi.net [217.70.178.131]) by relay3-d.mail.gandi.net (Postfix) with ESMTP id B4A54A8073 for ; Fri, 27 May 2011 11:00:51 +0200 (CEST) Received: from relay3-d.mail.gandi.net ([217.70.183.195]) by mfilter11-d.gandi.net (mfilter11-d.gandi.net [10.0.15.180]) (amavisd-new, port 10024) with ESMTP id kX5tQiST8yPs for ; Fri, 27 May 2011 11:00:50 +0200 (CEST) Received: from mail-pv0-f173.google.com (mail-pv0-f173.google.com [74.125.83.173]) (Authenticated sender: sendmail@perennou.com) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id F22F6A8079 for ; Fri, 27 May 2011 11:00:49 +0200 (CEST) Received: by pvg3 with SMTP id 3so736570pvg.4 for ; Fri, 27 May 2011 02:00:48 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: From: Marc-Antoine Perennou Date: Fri, 27 May 2011 11:00:28 +0200 Message-ID: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] qemu-kvm: fix pulseaudio detection in configure List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Any chance to get this reviewed/applied any time soon ? It currently does not build without it with gcc 4.6.0 On 29 April 2011 17:59, Marc-Antoine Perennou w= rote: > pulse/simple.h does not include stdlib.h > We cannot use NULL since it may not be defined > Use 0 instead > > Signed-off-by: Marc-Antoine Perennou > --- > =C2=A0configure | =C2=A0 =C2=A02 +- > =C2=A01 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/configure b/configure > index ea8b676..d67c3ce 100755 > --- a/configure > +++ b/configure > @@ -1567,7 +1567,7 @@ for drv in $audio_drv_list; do > > =C2=A0 =C2=A0 pa) > =C2=A0 =C2=A0 audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse= " \ > - =C2=A0 =C2=A0 =C2=A0 =C2=A0"pa_simple *s =3D NULL; pa_simple_free(s); r= eturn 0;" > + =C2=A0 =C2=A0 =C2=A0 =C2=A0"pa_simple *s =3D 0; pa_simple_free(s); retu= rn 0;" > =C2=A0 =C2=A0 libs_softmmu=3D"-lpulse -lpulse-simple $libs_softmmu" > =C2=A0 =C2=A0 audio_pt_int=3D"yes" > =C2=A0 =C2=A0 ;; > -- > 1.7.5.52.ge839f.dirty >