diff options
author | Hans de Goede | 2012-02-26 16:14:45 +0100 |
---|---|---|
committer | Gerd Hoffmann | 2012-02-27 13:37:37 +0100 |
commit | 097a66ef5f6138c22bfdd1cc218eb2704e5eef9c (patch) | |
tree | 490aaa589010b74e2a5248e89660eb75b75290af /configure | |
parent | usb-redir: Always clear device state on filter reject (diff) | |
download | qemu-097a66ef5f6138c22bfdd1cc218eb2704e5eef9c.tar.gz qemu-097a66ef5f6138c22bfdd1cc218eb2704e5eef9c.tar.xz qemu-097a66ef5f6138c22bfdd1cc218eb2704e5eef9c.zip |
usb-redir: Let the usb-host know about our device filtering
libusbredirparser-0.3.4 adds 2 new packets which allows us to notify
the usb-host:
-about the usb device filter we have (if any), so that it knows not the even
try to redirect certain devices
-when we reject a device based on filtering (in case it tries anyways)
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2592,7 +2592,7 @@ fi # check for usbredirparser for usb network redirection support if test "$usb_redir" != "no" ; then - if $pkg_config --atleast-version=0.3.3 libusbredirparser >/dev/null 2>&1 ; then + if $pkg_config --atleast-version=0.3.4 libusbredirparser >/dev/null 2>&1 ; then usb_redir="yes" usb_redir_cflags=$($pkg_config --cflags libusbredirparser 2>/dev/null) usb_redir_libs=$($pkg_config --libs libusbredirparser 2>/dev/null) |