From 45f0b0434d51d4c7e4db05fe721fc61b9b6ef17d Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Thu, 6 Jun 2013 09:18:44 -0400 Subject: [PATCH] configure: Disable host-bsd USB on FreeBSD 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 e197b91b9b..a3f0b7ad4a 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