diff options
author | Hans de Goede <hdegoede@redhat.com> | 2012-01-03 16:02:52 +0100 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2012-01-03 16:10:35 +0100 |
commit | d03cbc4a402dc5318376471580ab5a596e455f6e (patch) | |
tree | c50fe7e0bc348a83354989cb6b7bb8924f997a77 | |
parent | 1ae75d80eedf68b469fc8560d107a500f2923b11 (diff) |
Prepare for 0.3.2 releaseusbredir-0.3.2
-Distribute the protocol doc and README.multi-thread
-Don't distribute the .pc files, they are generated by configure
-Update the TODO file
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | usbredirhost/Makefile.am | 2 | ||||
-rw-r--r-- | usbredirparser/Makefile.am | 4 |
4 files changed, 2 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 288463c..9d392d5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1 +1,2 @@ SUBDIRS = usbredirparser usbredirhost usbredirserver usbredirtestclient +EXTRA_DIST = README.multi-thread usb-redirection-protocol.txt
\ No newline at end of file @@ -1,8 +1,6 @@ * do endian conversion in usbredirparser where necessary * check length against max packet size * check caps for relevant callbacks in parser -* be smarter with iso buffering / make configurable (in qemu) * cancel pending packets / active streams before reset? * add a queue_buf call to parser, use it in host to avoid memcpy of "in" bulk transfers -* add a check for the makefile for libusb being atleast version 1.0.9 diff --git a/usbredirhost/Makefile.am b/usbredirhost/Makefile.am index ecf91fc..33910f4 100644 --- a/usbredirhost/Makefile.am +++ b/usbredirhost/Makefile.am @@ -11,5 +11,3 @@ libusbredirhost_la_LDFLAGS = -version-info $(LIBUSBREDIRHOST_SO_VERSION) \ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libusbredirhost.pc - -EXTRA_DIST = libusbredirhost.pc diff --git a/usbredirparser/Makefile.am b/usbredirparser/Makefile.am index a47450c..cd62627 100644 --- a/usbredirparser/Makefile.am +++ b/usbredirparser/Makefile.am @@ -1,6 +1,6 @@ lib_LTLIBRARIES = libusbredirparser.la -libusbredirparser_la_SOURCES = usbredirparser.c +libusbredirparser_la_SOURCES = usbredirparser.c usbredirproto-compat.h libusbredirparser_ladir = $(includedir) libusbredirparser_la_HEADERS = usbredirparser.h usbredirproto.h libusbredirparser_la_LDFLAGS = -version-info $(LIBUSBREDIRPARSER_SO_VERSION) \ @@ -8,5 +8,3 @@ libusbredirparser_la_LDFLAGS = -version-info $(LIBUSBREDIRPARSER_SO_VERSION) \ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libusbredirparser.pc - -EXTRA_DIST = libusbredirparser.pc |