diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2012-02-08 11:28:07 +0100 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2012-02-08 11:28:07 +0100 |
commit | e33793ca6ca024ea37b45393ce217d53a8e83ad7 (patch) | |
tree | fd8d90ed16cca011beb56f8ceafe82aecb6079ad | |
parent | 96405efe4fe0e549c6a8110f323faf411e3c7e68 (diff) |
Link with usbredirparser
spice-gtk uses usbredirfilter_string_to_rules which is defined
in usbredirparser but does not link with it. This causes link errors
on some distributions. Fixes fdo bug #45761.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 470f714..d8602fd 100644 --- a/configure.ac +++ b/configure.ac @@ -344,7 +344,7 @@ if test "x$enable_usbredir" = "xno"; then AM_CONDITIONAL(WITH_USBREDIR, false) else PKG_CHECK_MODULES([USBREDIR], - [gudev-1.0 libusb-1.0 >= 1.0.9 libusbredirhost >= 0.3.3], + [gudev-1.0 libusb-1.0 >= 1.0.9 libusbredirhost >= 0.3.3 libusbredirparser >= 0.3.3], [have_usbredir=yes], [have_usbredir=no]) if test "x$have_usbredir" = "xno" && test "x$enable_usbredir" = "xyes"; then |