configure: use correct cflags in compiler checks
commitbe17dc90b51dc76b529615e8c1ab00127da056e0
authorMichael S. Tsirkin <mst@redhat.com>
Wed, 11 Nov 2009 11:50:09 +0000 (11 13:50 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Wed, 2 Dec 2009 14:57:42 +0000 (2 08:57 -0600)
tree89e6d06487798433c4d6f8059d1f59ee5e44ef42
parent1062977b970789848f971e19e17bdfbe5ee471a4
configure: use correct cflags in compiler checks

linux-user build on fedora 11 breaks because fallocate
is broken on that system if -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
are specified, which is what QEMU uses.

We do have a configure check to catch this and disable fallocate,
however, it turns out that default QEMU_CFLAGS/LDFLAGS were assigned in
script *after* all compiler checks: so during checks we were not running
compiler with same flags that we used for build later.

Fix this by moving QEMU_CFLAGS to before compiler checks, and using
comple_prog when checking for fallocate.  This also fixes the fact that
we do some compiler checks while assigning the flags, right below a
comment that says "no cc tests beyond this point".

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
configure