From patchwork Fri Jun 14 10:50:20 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tokarev X-Patchwork-Id: 251330 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id DC75E2C0095 for ; Fri, 14 Jun 2013 20:51:38 +1000 (EST) Received: from localhost ([::1]:56081 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnRbV-0004vQ-1r for incoming@patchwork.ozlabs.org; Fri, 14 Jun 2013 06:51:37 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54807) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnRam-0004nd-NI for qemu-devel@nongnu.org; Fri, 14 Jun 2013 06:50:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UnRak-0004Gp-8y for qemu-devel@nongnu.org; Fri, 14 Jun 2013 06:50:52 -0400 Received: from isrv.corpit.ru ([86.62.121.231]:33052) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnRak-0004GJ-1S; Fri, 14 Jun 2013 06:50:50 -0400 Received: from gandalf.tls.msk.ru (mjt.vpn.tls.msk.ru [192.168.177.99]) by isrv.corpit.ru (Postfix) with ESMTP id 47BA641663; Fri, 14 Jun 2013 14:50:49 +0400 (MSK) Received: by gandalf.tls.msk.ru (Postfix, from userid 1000) id 285BA518; Fri, 14 Jun 2013 14:50:47 +0400 (MSK) From: Michael Tokarev To: Anthony Liguori Date: Fri, 14 Jun 2013 14:50:20 +0400 Message-Id: <1371207042-17980-5-git-send-email-mjt@msgid.tls.msk.ru> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1371207042-17980-1-git-send-email-mjt@msgid.tls.msk.ru> References: <1371207042-17980-1-git-send-email-mjt@msgid.tls.msk.ru> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 86.62.121.231 Cc: qemu-trivial@nongnu.org, Michael Tokarev , Ed Maste , qemu-devel@nongnu.org Subject: [Qemu-devel] [PULL 04/26] configure: Disable host-bsd USB on FreeBSD X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Ed Maste It hasn't built since FreeBSD 8.x, and is disabled by a patch in the FreeBSD ports tree. FreeBSD is migrating to QEMU's libusb support. Signed-off-by: Ed Maste Signed-off-by: Michael Tokarev --- configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure b/configure index e197b91..a3f0b7a 100755 --- a/configure +++ b/configure @@ -553,7 +553,9 @@ esac if [ "$bsd" = "yes" ] ; then if [ "$darwin" != "yes" ] ; then - usb="bsd" + if [ "$targetos" != "FreeBSD" ]; then + usb="bsd" + fi bsd_user="yes" fi fi