qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] fix VNC SASL detection


From: Juan Quintela
Subject: [Qemu-devel] [PATCH] fix VNC SASL detection
Date: Mon, 31 Aug 2009 17:16:43 +0200

This test was missing the change to != no.

Signed-off-by: Juan Quintela <address@hidden>
---
 configure |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure b/configure
index b805f10..6ebf542 100755
--- a/configure
+++ b/configure
@@ -993,7 +993,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>
-- 
1.6.2.5





reply via email to

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