From mboxrd@z Thu Jan 1 00:00:00 1970 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 From: Ed Maste Date: Thu, 6 Jun 2013 09:18:44 -0400 Message-Id: <1370524724-39136-1-git-send-email-emaste@freebsd.org> Subject: [Qemu-devel] [PATCH] configure: Disable host-bsd USB on FreeBSD List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, 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 --- 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 -- 1.7.11.5