summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorEd Maste2013-06-06 15:18:44 +0200
committerMichael Tokarev2013-06-11 21:45:43 +0200
commit45f0b0434d51d4c7e4db05fe721fc61b9b6ef17d (patch)
treee24afc18a86584bf296c575dc7e4298523a3a940 /configure
parentconfigure: remove ${config_host_ld} variable (diff)
downloadqemu-45f0b0434d51d4c7e4db05fe721fc61b9b6ef17d.tar.gz
qemu-45f0b0434d51d4c7e4db05fe721fc61b9b6ef17d.tar.xz
qemu-45f0b0434d51d4c7e4db05fe721fc61b9b6ef17d.zip
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 <emaste@freebsd.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
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