Revision 68063649 configure

b/configure
221 221
audio_possible_drivers="oss alsa sdl esd pa"
222 222
linux="yes"
223 223
linux_user="yes"
224
usb="linux"
224 225
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
225 226
    kqemu="yes"
226 227
    audio_possible_drivers="$audio_possible_drivers fmod"
......
231 232
if [ "$bsd" = "yes" ] ; then
232 233
  if [ "$darwin" != "yes" ] ; then
233 234
    make="gmake"
235
    usb="bsd"
234 236
  fi
235 237
  bsd_user="yes"
236 238
fi
......
1365 1367

  
1366 1368
echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1367 1369

  
1370
# USB host support
1371
case "$usb" in
1372
linux)
1373
  echo "HOST_USB=linux" >> $config_mak
1374
;;
1375
bsd)
1376
  echo "HOST_USB=bsd" >> $config_mak
1377
;;
1378
*)
1379
  echo "HOST_USB=stub" >> $config_mak
1380
;;
1381
esac
1382

  
1368 1383
tools=
1369 1384
if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1370 1385
  tools="qemu-img\$(EXESUF) $tools"

Also available in: Unified diff