Re: [Qemu-devel] [PATCH] configure: include stddef.h for NULL

2010-10-05 Thread Scott Wood
On Tue, 5 Oct 2010 10:03:35 +0200 Markus Armbruster wrote: > Scott Wood writes: > > > This fixes an observed failure to detect madvise() on Linux. > > > > To avoid similar issues, all other tests that use NULL but don't already > > have stddef.h are also fixed. > > Appreciated, but several ins

Re: [Qemu-devel] [PATCH] configure: include stddef.h for NULL

2010-10-05 Thread Markus Armbruster
Scott Wood writes: > This fixes an observed failure to detect madvise() on Linux. > > To avoid similar issues, all other tests that use NULL but don't already > have stddef.h are also fixed. Appreciated, but several instances don't need fixing, because existing includes already provide NULL. >

[Qemu-devel] [PATCH] configure: include stddef.h for NULL

2010-10-04 Thread Scott Wood
This fixes an observed failure to detect madvise() on Linux. To avoid similar issues, all other tests that use NULL but don't already have stddef.h are also fixed. Signed-off-by: Scott Wood --- configure |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/configure