Ubuntu 14.04のソース(r33116)からViceをビルドしており、以下から入手しました./configure
。
INPUT
-----
Joystick support : yes
Mouse support : yes
Lightpen support : yes
Linux style joystick support: yes
BSD style joystick support : no
Digital joystick support : no
USB joystick support : no
configure.acで次のセクションを見ることができます。
dnl NetBSD/FreeBSD USB joystick support
usbhid_header=no
usbhid_lib=no
usb_lib=no
AC_CHECK_LIB(usbhid, hid_get_report_desc, usbhid_lib=yes)
if test x"$usbhid_lib" = "xyes" ; then
AC_CHECK_HEADER(usbhid.h,
[AC_DEFINE(HAVE_USBHID_H,1,
[Define to 1 if you have the <usbhid.h> header file.])
usb_header=yes])
AC_CHECK_HEADER(libusbhid.h,
[AC_DEFINE(HAVE_LIBUSBHID_H,1,
[Define to 1 if you have the <libusbhid.h> header file.])
usb_header=yes])
if test x"$usb_header" = "xyes" ; then
AC_DEFINE(HAS_USB_JOYSTICK,,[Enable emulation for USB joysticks.])
JOY_LIBS="-lusbhid"
HAS_USB_JOYSTICK_SUPPORT="yes"
fi
else
AC_CHECK_LIB(usb, hid_get_report_desc, usb_lib=yes)
if test x"$usb_lib" = "xyes"; then
AC_CHECK_HEADER(usb.h,
[AC_DEFINE(HAVE_USB_H,1,
[Define to 1 if you have the <usb.h> header file.])
usb_header=yes])
AC_CHECK_HEADER(libusb.h,
[AC_DEFINE(HAVE_LIBUSB_H,1,
[Define to 1 if you have the <libusb.h> header file.])
usb_header=yes])
if test x"$usb_header" = "xyes" ; then
AC_DEFINE(HAS_USB_JOYSTICK,,[Enable emulation for USB joysticks.])
JOY_LIBS="-lusb"
HAS_USB_JOYSTICK_SUPPORT="yes"
fi
fi
fi
私は/usr/include/libusb-1.0/libusb.h
(Ubuntuにlibusbhid.hまたはusbhid.hを含むパッケージがないと思います)上記の方法でこれを見つけることができませんか?
答え1
このセクション全体のタイトルは「NetBSD / FreeBSD USBジョイスティックサポート」で、BSDにのみ関連しています。 Linuxでは、「Linuxスタイルのジョイスティックサポート」を使用してUSBジョイスティックがサポートされています(すべてのジョイスティックは同じ方法で管理されます)。
Ubuntuビルドログはまったく同じ機能を報告します(最新amd64ログ例えば)。