From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KLirF-0002h3-D1 for qemu-devel@nongnu.org; Wed, 23 Jul 2008 14:14:37 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KLirE-0002gO-GX for qemu-devel@nongnu.org; Wed, 23 Jul 2008 14:14:36 -0400 Received: from [199.232.76.173] (port=44855 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KLirE-0002gG-1y for qemu-devel@nongnu.org; Wed, 23 Jul 2008 14:14:36 -0400 Received: from savannah.gnu.org ([199.232.41.3]:36412 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KLirE-0003EH-2a for qemu-devel@nongnu.org; Wed, 23 Jul 2008 14:14:36 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KLirC-00019Z-Oo for qemu-devel@nongnu.org; Wed, 23 Jul 2008 18:14:34 +0000 Received: from aliguori by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KLirC-00019V-9y for qemu-devel@nongnu.org; Wed, 23 Jul 2008 18:14:34 +0000 MIME-Version: 1.0 Errors-To: aliguori Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Anthony Liguori Message-Id: Date: Wed, 23 Jul 2008 18:14:34 +0000 Subject: [Qemu-devel] [4931] Enable VDE by default if library is present. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 4931 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4931 Author: aliguori Date: 2008-07-23 18:14:33 +0000 (Wed, 23 Jul 2008) Log Message: ----------- Enable VDE by default if library is present. VDE isn't used unless the user explicitly asks for it so if the library is present on the system, we should include support for it. Signed-off-by: Anthony Liguori Modified Paths: -------------- trunk/configure Modified: trunk/configure =================================================================== --- trunk/configure 2008-07-23 16:35:45 UTC (rev 4930) +++ trunk/configure 2008-07-23 18:14:33 UTC (rev 4931) @@ -89,7 +89,7 @@ EXESUF="" gdbstub="yes" slirp="yes" -vde="no" +vde="yes" fmod_lib="" fmod_inc="" vnc_tls="yes" @@ -281,7 +281,7 @@ ;; --disable-slirp) slirp="no" ;; - --enable-vde) vde="yes" + --disable-vde) vde="no" ;; --disable-kqemu) kqemu="no" ;; @@ -435,7 +435,7 @@ echo " --fmod-inc path to FMOD includes" echo " --enable-uname-release=R Return R for uname -r in usermode emulation" echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" -echo " --enable-vde enable support for vde network [$vde]" +echo " --disable-vde disable support for vde network" echo "" echo "NOTE: The object files are built at the place where configure is launched" exit 1 @@ -735,11 +735,7 @@ if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then : else - echo - echo "Error: VDE check failed" - echo "Make sure to have the VDE libs and headers installed." - echo - exit 1 + vde="no" fi fi