f375e62ad9
Fix libvirt + seccomp combo (bz #855162) Fix scsi hotplug crash (bz #879657) Fix QOM refcount crash (bz #881486)
39 lines
1.1 KiB
Diff
39 lines
1.1 KiB
Diff
From b61abbc18c7ba7cfb58a0d3a51fb377f4a5af5e4 Mon Sep 17 00:00:00 2001
|
|
From: Bruce Rogers <brogers@suse.com>
|
|
Date: Mon, 20 Aug 2012 12:45:08 -0600
|
|
Subject: [PATCH] configure: avoid compiler warning in pipe2 detection
|
|
|
|
When building qemu-kvm for openSUSE:Factory, I am getting a
|
|
warning in the pipe2 detection performed by configure, which
|
|
prevents using --enable-werror.
|
|
|
|
Change detection code to use return value of pipe2.
|
|
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
|
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
|
|
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
|
|
(cherry picked from commit 9bca81624ef9299b9a06013fd29cd6899079aab4)
|
|
|
|
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
|
|
---
|
|
configure | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/configure b/configure
|
|
index 4d11fe3..9129433 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -2399,8 +2399,7 @@ cat > $TMPC << EOF
|
|
int main(void)
|
|
{
|
|
int pipefd[2];
|
|
- pipe2(pipefd, O_CLOEXEC);
|
|
- return 0;
|
|
+ return pipe2(pipefd, O_CLOEXEC);
|
|
}
|
|
EOF
|
|
if compile_prog "" "" ; then
|
|
--
|
|
1.8.0.2
|
|
|