[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 08/11] configure: Fix compiler warning in config.log
From: |
Stefan Weil |
Subject: |
[Qemu-devel] [PATCH 08/11] configure: Fix compiler warning in config.log (undefined NULL) |
Date: |
Sat, 17 Dec 2011 09:27:36 +0100 |
Avoid the warning when probing for xfs.
Signed-off-by: Stefan Weil <address@hidden>
---
configure | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index b755ad1..31ea3ff 100755
--- a/configure
+++ b/configure
@@ -1670,6 +1670,7 @@ fi
# xfsctl() probe, used for raw-posix
if test "$xfs" != "no" ; then
cat > $TMPC << EOF
+#include <stddef.h> /* NULL */
#include <xfs/xfs.h>
int main(void)
{
--
1.7.2.5
- Re: [Qemu-devel] [PATCH 03/11] configure: Fix compiler warning in config.log (integer from pointer), (continued)
[Qemu-devel] [PATCH v2 03/11] configure: Fix compiler warning in config.log (integer from pointer), Stefan Weil, 2011/12/17
[Qemu-devel] [PATCH 02/11] configure: Fix compiler warnings in config.log (old-style function definition), Stefan Weil, 2011/12/17
[Qemu-devel] [PATCH 04/11] configure: Fix compiler warnings in config.log (null arguments), Stefan Weil, 2011/12/17
[Qemu-devel] [PATCH 05/11] configure: Fix compiler warning in config.log (unused variable), Stefan Weil, 2011/12/17
[Qemu-devel] [PATCH 06/11] configure: Fix compiler warning in config.log (macro redefined), Stefan Weil, 2011/12/17
[Qemu-devel] [PATCH 08/11] configure: Fix compiler warning in config.log (undefined NULL),
Stefan Weil <=
[Qemu-devel] [PATCH 09/11] configure: Fix compiler warning in config.log (value was never used), Stefan Weil, 2011/12/17
[Qemu-devel] [PATCH 10/11] configure: Fix compiler warnings in config.log (statement without effect), Stefan Weil, 2011/12/17
[Qemu-devel] [PATCH 07/11] configure: Fix compiler warnings in config.log (uninitialized variable), Stefan Weil, 2011/12/17
[Qemu-devel] [PATCH 11/11] configure: Improve Xen autodetection for hosts without Xen, Stefan Weil, 2011/12/17
Re: [Qemu-devel] [PATCH 00/11] configure: Fix compiler warnings in config.log, Peter Maydell, 2011/12/17