* [Qemu-devel] [PATCH] build system: Silence failing configure tests
@ 2009-04-26 17:25 Jan Kiszka
2009-04-27 17:38 ` Blue Swirl
0 siblings, 1 reply; 3+ messages in thread
From: Jan Kiszka @ 2009-04-26 17:25 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 2010 bytes --]
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
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 <<EOF
#include <xs.h>
int main(void) { xs_daemon_open; xc_interface_open; }
EOF
- if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC -lxenstore -lxenctrl 2> /dev/null ; then
+ if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC -lxenstore -lxenctrl 2> /dev/null > /dev/null ; then
:
else
xen="no"
@@ -920,7 +920,7 @@ EOF
vnc_sasl_cflags=""
vnc_sasl_libs="-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="no"
@@ -1140,7 +1140,7 @@ cat > $TMPC << EOF
#include <pthread.h>
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/null ; then
pthread=yes
PTHREADLIBS="-lpthread"
fi
@@ -1184,7 +1184,7 @@ if test "$fdt" = "yes" ; then
cat > $TMPC << EOF
int main(void) { return 0; }
EOF
- if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
+ if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null > /dev/null ; then
fdt=yes
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=yes
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=yes
fi
fi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 257 bytes --]
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] build system: Silence failing configure tests
2009-04-26 17:25 [Qemu-devel] [PATCH] build system: Silence failing configure tests Jan Kiszka
@ 2009-04-27 17:38 ` Blue Swirl
2009-04-27 18:44 ` Jan Kiszka
0 siblings, 1 reply; 3+ messages in thread
From: Blue Swirl @ 2009-04-27 17:38 UTC (permalink / raw)
To: Jan Kiszka; +Cc: qemu-devel
On 4/26/09, Jan Kiszka <jan.kiszka@web.de> wrote:
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Thanks, applied.
I still get an error message from missing pkg-config.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] build system: Silence failing configure tests
2009-04-27 17:38 ` Blue Swirl
@ 2009-04-27 18:44 ` Jan Kiszka
0 siblings, 0 replies; 3+ messages in thread
From: Jan Kiszka @ 2009-04-27 18:44 UTC (permalink / raw)
To: Blue Swirl; +Cc: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 313 bytes --]
Blue Swirl wrote:
> On 4/26/09, Jan Kiszka <jan.kiszka@web.de> wrote:
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>
> Thanks, applied.
>
> I still get an error message from missing pkg-config.
From bluez tests, I guess. Should be trivial to fix as well, just look
at the vnc test.
Jan
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 257 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-04-27 18:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-26 17:25 [Qemu-devel] [PATCH] build system: Silence failing configure tests Jan Kiszka
2009-04-27 17:38 ` Blue Swirl
2009-04-27 18:44 ` Jan Kiszka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).