qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 05/20] Add brlapi to new feature convencion


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 05/20] Add brlapi to new feature convencion
Date: Wed, 12 Aug 2009 18:20:26 +0200

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

diff --git a/configure b/configure
index 1a12c43..34ccc0e 100755
--- a/configure
+++ b/configure
@@ -179,7 +179,7 @@ esac
 # to ensure that several features are compiled in, and it is impossible 
without a
 # --enable-foo that exits if feature is not found

-brlapi="yes"
+brlapi=""
 gprof="no"
 debug_tcg="no"
 debug="no"
@@ -469,6 +469,8 @@ for opt do
   ;;
   --disable-brlapi) brlapi="no"
   ;;
+  --enable-brlapi) brlapi="yes"
+  ;;
   --disable-bluez) bluez="no"
   ;;
   --disable-kvm) kvm="no"
@@ -633,6 +635,7 @@ echo "                           Available cards: 
$audio_possible_cards"
 echo "  --enable-mixemu          enable mixer emulation"
 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 "  --disable-vnc-sasl       disable SASL encryption for VNC server"
 echo "  --disable-curses         disable curses output"
@@ -1084,8 +1087,7 @@ done
 ##########################################
 # BrlAPI probe

-if test "$brlapi" = "yes" ; then
-  brlapi=no
+if test "$brlapi" != "no" ; then
   brlapi_libs="-lbrlapi"
   cat > $TMPC << EOF
 #include <brlapi.h>
@@ -1094,6 +1096,11 @@ EOF
   if compile_prog "" "$brlapi_libs" ; then
     brlapi=yes
     libs_softmmu="$brlapi_libs $libs_softmmu"
+  else
+    if test "$brlapi" = "yes" ; then
+      feature_not_found "brlapi"
+    fi
+    brlapi=no
   fi
 fi

-- 
1.6.2.5





reply via email to

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