projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae20c62
)
fix VNC SASL detection
author
Juan Quintela
<quintela@redhat.com>
Mon, 31 Aug 2009 15:16:43 +0000
(17:16 +0200)
committer
Anthony Liguori
<aliguori@us.ibm.com>
Wed, 9 Sep 2009 22:31:26 +0000
(17:31 -0500)
This test was missing the change to != no.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
configure
patch
|
blob
|
history
diff --git
a/configure
b/configure
index 618e4dce2110560d25045a9049c46072faf1967e..863bf58e8a77b06b5b3208d4a426e78fd55daf8b 100755
(executable)
--- a/
configure
+++ b/
configure
@@
-1000,7
+1000,7
@@
fi
##########################################
# VNC SASL detection
-if test "$vnc_sasl"
= "yes
" ; then
+if test "$vnc_sasl"
!= "no
" ; then
cat > $TMPC <<EOF
#include <sasl/sasl.h>
#include <stdio.h>