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

2010-10-09 Thread Blue Swirl
Thanks, applied. On Tue, Oct 5, 2010 at 7:28 PM, Scott Wood wrote: > 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 (or another header that is defined to provide NULL, > such as stdio.h, uni

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

2010-10-05 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 (or another header that is defined to provide NULL, such as stdio.h, unistd.h, or time.h) are also fixed. Signed-off-by: Scott Wood --- This version