[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 16/17] configure: Fix compiler warnings in config.lo
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PATCH 16/17] configure: Fix compiler warnings in config.log (statement without effect) |
Date: |
Mon, 19 Dec 2011 11:12:37 +0000 |
From: Stefan Weil <address@hidden>
Signed-off-by: Stefan Weil <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
configure | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/configure b/configure
index bd6f10f..36ee849 100755
--- a/configure
+++ b/configure
@@ -2074,7 +2074,7 @@ cat > $TMPC <<EOF
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>
-int main(void) { preadv; }
+int main(void) { return preadv == preadv; }
EOF
preadv=no
if compile_prog "" "" ; then
@@ -2107,7 +2107,7 @@ if test "$opengl" != "no" ; then
#include <X11/Xlib.h>
#include <GL/gl.h>
#include <GL/glx.h>
-int main(void) { GL_VERSION; return 0; }
+int main(void) { return GL_VERSION != 0; }
EOF
if compile_prog "" "-lGL" ; then
opengl=yes
@@ -2369,8 +2369,7 @@ int main(void)
* warning but not an error, and will proceed to fail the
* qemu compile where we compile with -Werror.)
*/
- epoll_create1;
- return 0;
+ return epoll_create1 == epoll_create1;
}
EOF
if compile_prog "$ARCH_CFLAGS" "" ; then
--
1.7.7.3
- [Qemu-devel] [PATCH 02/17] Makefile.target: Remove unnecessary dependency rules, (continued)
- [Qemu-devel] [PATCH 02/17] Makefile.target: Remove unnecessary dependency rules, Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 03/17] stellaris: Calculate system clock period on reset, Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 06/17] Also create piix3 property when Xen is enabled, Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 04/17] kvm: Print something before calling abort() if KVM_RUN fails, Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 07/17] configure: Fix compiler warnings in config.log (always return a value from main), Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 05/17] slirp: Fix typo in net_slirp_hostfwd_remove, Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 01/17] ide: drop argument to dma_buf_commit, Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 09/17] configure: Fix compiler warning in config.log (integer from pointer), Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 08/17] configure: Fix compiler warnings in config.log (old-style function definition), Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 12/17] configure: Fix compiler warning in config.log (macro redefined), Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 16/17] configure: Fix compiler warnings in config.log (statement without effect),
Stefan Hajnoczi <=
- [Qemu-devel] [PATCH 14/17] configure: Fix compiler warning in config.log (undefined NULL), Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 15/17] configure: Fix compiler warning in config.log (value was never used), Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 13/17] configure: Fix compiler warnings in config.log (uninitialized variable), Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 17/17] configure: Improve Xen autodetection for hosts without Xen, Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 11/17] configure: Fix compiler warning in config.log (unused variable), Stefan Hajnoczi, 2011/12/19
- [Qemu-devel] [PATCH 10/17] configure: Fix compiler warnings in config.log (null arguments), Stefan Hajnoczi, 2011/12/19
- Re: [Qemu-devel] [PULL 00/17] Trivial patches for 7 to 19 December 2011, Anthony Liguori, 2011/12/19