From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ly87M-00004z-Eq for qemu-devel@nongnu.org; Sun, 26 Apr 2009 13:26:16 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ly87H-0008W9-O9 for qemu-devel@nongnu.org; Sun, 26 Apr 2009 13:26:15 -0400 Received: from [199.232.76.173] (port=58998 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ly87H-0008W6-Jc for qemu-devel@nongnu.org; Sun, 26 Apr 2009 13:26:11 -0400 Received: from fmmailgate03.web.de ([217.72.192.234]:57471) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ly87G-0007Ki-Ti for qemu-devel@nongnu.org; Sun, 26 Apr 2009 13:26:11 -0400 Received: from smtp05.web.de (fmsmtp05.dlan.cinetic.de [172.20.4.166]) by fmmailgate03.web.de (Postfix) with ESMTP id 39B1FFB39AB0 for ; Sun, 26 Apr 2009 19:26:09 +0200 (CEST) Received: from [88.66.124.186] (helo=[192.168.1.123]) by smtp05.web.de with asmtp (TLSv1:AES256-SHA:256) (WEB.DE 4.110 #277) id 1Ly87E-0003Ls-00 for qemu-devel@nongnu.org; Sun, 26 Apr 2009 19:26:09 +0200 Message-ID: <49F49927.6030607@web.de> Date: Sun, 26 Apr 2009 19:25:59 +0200 From: Jan Kiszka MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigB5DF330F59075BB8FC8F84AA" Sender: jan.kiszka@web.de Subject: [Qemu-devel] [PATCH] build system: Silence failing configure tests List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigB5DF330F59075BB8FC8F84AA Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Signed-off-by: Jan Kiszka --- configure | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 2f4ccfb..1cbeabc 100755 --- a/configure +++ b/configure @@ -822,7 +822,7 @@ cat > $TMPC < int main(void) { xs_daemon_open; xc_interface_open; } EOF - if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC -lxenstore -lxenctrl 2> /dev/nu= ll ; then + if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC -lxenstore -lxenctrl 2> /dev/nu= ll > /dev/null ; then : else xen=3D"no" @@ -920,7 +920,7 @@ EOF vnc_sasl_cflags=3D"" vnc_sasl_libs=3D"-lsasl2" if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_sasl_cflags $TMPC \ - $vnc_sasl_libs 2> /dev/null ; then + $vnc_sasl_libs 2> /dev/null > /dev/null ; then : else vnc_sasl=3D"no" @@ -1140,7 +1140,7 @@ cat > $TMPC << EOF #include int main(void) { pthread_mutex_t lock; return 0; } EOF - if $cc $ARCH_CFLAGS -o $TMPE $PTHREADLIBS $TMPC 2> /dev/null ; then + if $cc $ARCH_CFLAGS -o $TMPE $PTHREADLIBS $TMPC 2> /dev/null > /dev/nu= ll ; then pthread=3Dyes PTHREADLIBS=3D"-lpthread" fi @@ -1184,7 +1184,7 @@ if test "$fdt" =3D "yes" ; then cat > $TMPC << EOF int main(void) { return 0; } EOF - if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; t= hen + if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null > /= dev/null ; then fdt=3Dyes fi fi @@ -1209,7 +1209,7 @@ main(void) return (unlinkat(AT_FDCWD, "nonexistent_file", 0)); } EOF - if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then + if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then atfile=3Dyes fi fi @@ -1231,7 +1231,7 @@ main(void) return inotify_init(); } EOF - if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then + if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null > /dev/null ; then inotify=3Dyes fi fi --------------enigB5DF330F59075BB8FC8F84AA Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (GNU/Linux) Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org iEYEARECAAYFAkn0mS8ACgkQniDOoMHTA+kBwgCfTRC3cjRLvz4GaoRbYNKEZvge G/4AniCOohQZSHA/RB7HH0t48nrLF1rT =fIV2 -----END PGP SIGNATURE----- --------------enigB5DF330F59075BB8FC8F84AA--