mirror of https://github.com/xemu-project/xemu.git
Added libusb-1.0-0-dev to debian/control and removed .enabled() from meson.build
Trying to see if this gets libusb included in builds without having to force it on
This commit is contained in:
parent
8058f64728
commit
a25574b132
|
@ -18,6 +18,7 @@ Build-Depends: debhelper (>= 11),
|
|||
libpcap-dev,
|
||||
libslirp-dev,
|
||||
libvulkan-dev,
|
||||
libusb-1.0-0-dev,
|
||||
Standards-Version: 3.9.8
|
||||
Homepage: https://xemu.app
|
||||
XS-Debian-Vcs-Browser: https://github.com/mborgerson/xemu
|
||||
|
|
|
@ -2129,7 +2129,7 @@ if not get_option('usb_redir').auto() or have_system
|
|||
endif
|
||||
libusb = not_found
|
||||
if not get_option('libusb').auto() or have_system
|
||||
libusb = dependency('libusb-1.0', required: get_option('libusb').enabled(),
|
||||
libusb = dependency('libusb-1.0', required: get_option('libusb'),
|
||||
version: '>=1.0.13', method: 'pkg-config')
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue