fix VNC SASL detection
authorJuan Quintela <quintela@redhat.com>
Mon, 31 Aug 2009 15:16:43 +0000 (17:16 +0200)
committerAnthony 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

index 618e4dc..863bf58 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>