From patchwork Thu Jun 6 13:18:44 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ed Maste X-Patchwork-Id: 249410 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 28AED2C008A for ; Thu, 6 Jun 2013 23:19:06 +1000 (EST) Received: from localhost ([::1]:57361 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uka5m-0007Uy-JP for incoming@patchwork.ozlabs.org; Thu, 06 Jun 2013 09:19:02 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35640) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uka5X-0007Uk-5I for qemu-devel@nongnu.org; Thu, 06 Jun 2013 09:18:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uka5W-00057B-41 for qemu-devel@nongnu.org; Thu, 06 Jun 2013 09:18:47 -0400 Received: from [216.171.111.232] (port=54030 helo=freebsd.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uka5V-00056x-Oa for qemu-devel@nongnu.org; Thu, 06 Jun 2013 09:18:46 -0400 Received: from emaste (uid 1001) (envelope-from emaste@freebsd.org) id 9d053 by freebsd.org (DragonFly Mail Agent 1); Thu, 06 Jun 2013 09:18:45 -0400 From: Ed Maste To: qemu-devel@nongnu.org Date: Thu, 6 Jun 2013 09:18:44 -0400 Message-Id: <1370524724-39136-1-git-send-email-emaste@freebsd.org> X-Mailer: git-send-email 1.7.11.5 X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x X-Received-From: 216.171.111.232 Cc: qemu-trivial@nongnu.org, Ed Maste Subject: [Qemu-devel] [PATCH] 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 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 --- 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