qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Aurelien Jarno <aurelien@aurel32.net>
To: malc <av1474@comtv.ru>
Cc: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] qemu-kvm: fix pulseaudio detection in configure
Date: Sat, 4 Jun 2011 00:17:07 +0200	[thread overview]
Message-ID: <20110603221707.GI14583@volta.aurel32.net> (raw)
In-Reply-To: <alpine.LNX.2.00.1106040156530.3183@linmac>

On Sat, Jun 04, 2011 at 01:57:23AM +0400, malc wrote:
> On Fri, 3 Jun 2011, Aurelien Jarno wrote:
> 
> > On Fri, Apr 29, 2011 at 05:59:19PM +0200, Marc-Antoine Perennou wrote:
> > > pulse/simple.h does not include stdlib.h
> > > We cannot use NULL since it may not be defined
> > > Use 0 instead
> > 
> > I am unable to reproduce this issue, even with gcc-4.6. Also please note
> > that NULL is defined in <stddef.h>, not <stdlib.h>. <stddef.h> is 
> > included from <sys/types.h> which is included from <pulse/simple.h>.
> > 
> > Do you have more information about the issue.
> > 
> > > Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
> > > ---
> > >  configure |    2 +-
> > >  1 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
> > > 
> > >      pa)
> > >      audio_drv_probe $drv pulse/simple.h "-lpulse-simple -lpulse" \
> > > -        "pa_simple *s = NULL; pa_simple_free(s); return 0;"
> > > +        "pa_simple *s = 0; pa_simple_free(s); return 0;"
> > 
> > It should be ((void*)0) instead of simply 0.
> 
> No it shouldn't.
> 

If we want to replace #include <stddef.h>, which should use the same
code, that is:

| #ifndef __cplusplus
| #define NULL ((void *)0)
| #else   /* C++ */
| #define NULL 0
| #endif  /* C++ */

Given we are writing C code and not C++ code, NULL is defined as 
((void *)0).

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net

  reply	other threads:[~2011-06-03 22:17 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-29 15:59 [Qemu-devel] [PATCH] qemu-kvm: fix pulseaudio detection in configure Marc-Antoine Perennou
2011-05-27  9:00 ` Marc-Antoine Perennou
2011-06-03 20:33 ` Aurelien Jarno
2011-06-03 21:57   ` malc
2011-06-03 22:17     ` Aurelien Jarno [this message]
2011-06-03 22:54       ` malc
2011-06-09 15:52         ` Marc-Antoine Perennou
2011-06-09 17:44           ` Andreas Färber
2011-06-09 19:07             ` Peter Maydell
2011-06-10  7:14               ` Markus Armbruster
2011-06-24 13:31                 ` Marc-Antoine Perennou
2011-06-24 16:52                   ` Stefan Hajnoczi
2011-06-09 18:25   ` Markus Armbruster
2011-06-24 14:49 ` Stefan Hajnoczi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110603221707.GI14583@volta.aurel32.net \
    --to=aurelien@aurel32.net \
    --cc=Marc-Antoine@Perennou.com \
    --cc=av1474@comtv.ru \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).