qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 07/20] Add vnc_tls to new feature convencion
Date: Wed, 12 Aug 2009 18:20:28 +0200	[thread overview]
Message-ID: <6af6ac2510ce0b1dc43e5f0c8ae9d0c34b1f19bb.1250093910.git.quintela@redhat.com> (raw)
In-Reply-To: <cover.1250093910.git.quintela@redhat.com>
In-Reply-To: <cover.1250093910.git.quintela@redhat.com>


Signed-off-by: Juan Quintela <quintela@redhat.com>
---
 configure |   25 ++++++++++++++++---------
 1 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/configure b/configure
index c51d9d3..30b82c6 100755
--- a/configure
+++ b/configure
@@ -181,6 +181,7 @@ esac

 brlapi=""
 vde=""
+vnc_tls=""

 gprof="no"
 debug_tcg="no"
@@ -194,7 +195,6 @@ slirp="yes"
 fmod_lib=""
 fmod_inc=""
 oss_lib=""
-vnc_tls="yes"
 vnc_sasl="yes"
 bsd="no"
 linux="no"
@@ -458,6 +458,8 @@ for opt do
   ;;
   --disable-vnc-tls) vnc_tls="no"
   ;;
+  --enable-vnc-tls) vnc_tls="yes"
+  ;;
   --disable-vnc-sasl) vnc_sasl="no"
   ;;
   --disable-slirp) slirp="no"
@@ -640,6 +642,7 @@ echo "  --disable-xen            disable xen backend driver support"
 echo "  --disable-brlapi         disable BrlAPI"
 echo "  --enable-brlapi          enable BrlAPI"
 echo "  --disable-vnc-tls        disable TLS encryption for VNC server"
+echo "  --enable-vnc-tls         enable TLS encryption for VNC server"
 echo "  --disable-vnc-sasl       disable SASL encryption for VNC server"
 echo "  --disable-curses         disable curses output"
 echo "  --disable-curl           disable curl connectivity"
@@ -933,18 +936,22 @@ fi

 ##########################################
 # VNC TLS detection
-if test "$vnc_tls" = "yes" ; then
-cat > $TMPC <<EOF
+if test "$vnc_tls" != "no" ; then
+  cat > $TMPC <<EOF
 #include <gnutls/gnutls.h>
 int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
 EOF
-    vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
-    vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
-    if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
-	libs_softmmu="$vnc_tls_libs $libs_softmmu"
-    else
-	vnc_tls="no"
+  vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
+  vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
+  if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
+    vnc_tls=yes
+    libs_softmmu="$vnc_tls_libs $libs_softmmu"
+  else
+    if test "$vnc_tls" = "yes" ; then
+      feature_not_found "vnc-tls"
     fi
+    vnc_tls=no
+  fi
 fi

 ##########################################
-- 
1.6.2.5

  parent reply	other threads:[~2009-08-12 16:22 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-12 16:20 [Qemu-devel] [PATCH 00/20] Make --enable-foo a requirement Juan Quintela
2009-08-12 16:20 ` [Qemu-devel] [PATCH 01/20] Make vnc configure options less verbose Juan Quintela
2009-08-12 16:20 ` [Qemu-devel] [PATCH 02/20] Use the same structure for list of libs in curses and pthread Juan Quintela
2009-08-12 16:20 ` [Qemu-devel] [PATCH 03/20] Add feature configure help Juan Quintela
2009-08-12 16:20 ` [Qemu-devel] [PATCH 04/20] Add error message for feature not found Juan Quintela
2009-08-12 16:20 ` [Qemu-devel] [PATCH 05/20] Add brlapi to new feature convencion Juan Quintela
2009-08-12 16:20 ` [Qemu-devel] [PATCH 06/20] Add vde " Juan Quintela
2009-08-12 16:20 ` Juan Quintela [this message]
2009-08-12 16:20 ` [Qemu-devel] [PATCH 08/20] Add vnc_sasl " Juan Quintela
2009-08-12 16:20 ` [Qemu-devel] [PATCH 09/20] Add curses " Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 10/20] Add curl " Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 11/20] Add pthread " Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 12/20] Add nptl " Juan Quintela
2009-08-12 17:16   ` Nathan Froyd
2009-08-12 18:31     ` [Qemu-devel] " Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 13/20] Add bluez " Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 14/20] Add build_docs to new feature convention Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 15/20] Rename build_docs to docs Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 16/20] Add sdl to new feature convention Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 17/20] Add fdt " Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 18/20] Add xen " Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 19/20] Add kvm " Juan Quintela
2009-08-12 16:29 ` [Qemu-devel] [PATCH 20/20] Add sparse " Juan Quintela

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6af6ac2510ce0b1dc43e5f0c8ae9d0c34b1f19bb.1250093910.git.quintela@redhat.com \
    --to=quintela@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).