qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT 3aefa74] fix VNC SASL detection


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT 3aefa74] fix VNC SASL detection
Date: Wed, 09 Sep 2009 22:37:04 -0000

From: Juan Quintela <address@hidden>

This test was missing the change to != no.

Signed-off-by: Juan Quintela <address@hidden>
Signed-off-by: Anthony Liguori <address@hidden>

diff --git a/configure b/configure
index 618e4dc..863bf58 100755
--- 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>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]