summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* usbutils 008 releasev008Greg Kroah-Hartman2014-10-221-1/+1
|
* drop dependency on usb.idsTom Gundersen2013-09-121-12/+0
| | | | | | | | | | | | | | Also remove usb.ids from the repository. [Note that these were probably never used by distributions regarless, as most distros ship the usb.ids directly from upstream.] Hardcode the usb-spec information that used to be in usb.ids, but which was not moved to hwdb. Increase the size of tha hash table from 16 to 512, though using a hash at all is probably overkill at this point. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
* lsusb: port to hwdbTom Gundersen2013-09-121-0/+2
| | | | | | | | | | | | | | | | Most of the information in usb.ids is now contained in udev's hwdb. Read the information from the hwdb instead of usb.ids. This would allow distributions to no longer ship (most of) usb.ids by default, but rather keep all the usb device information in the hwdb. This patch introduces a dependency on libusb >= 196. v2: drop support from reading data from usb.ids which is already in hwdb Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
* usbutils 007 releasev007Greg Kroah-Hartman2013-06-061-1/+1
|
* lsusb: Support non-ASCII string descriptors.Роман Донченко2013-02-051-0/+1
| | | | | | | This replaces the get_string function with get_dev_string, which obtains the string descriptor in raw UTF-16 and attempts to iconv it to the current locale's encoding. If that fails, or if the system lacks the required functions, it falls back to ASCII.
* usbutils 006 releasev006Greg Kroah-Hartman2012-07-061-1/+1
|
* build: add a --disable-usbids option to avoid installing usb.idsDiego Elio Pettenò2012-04-101-0/+4
| | | | | | | Also avoid installing update-usbids.sh script if we're not going to install usb.ids. This is useful for Gentoo since we now have a separate package for usb.ids, which can be updated independently, and that can be updated without this script.
* usbutils 005 releasev005Greg Kroah-Hartman2011-10-221-1/+1
|
* usbutils 004 releasev004Greg Kroah-Hartman2011-08-121-1/+1
|
* usbutils 003 releasev003Greg Kroah-Hartman2011-06-151-1/+1
|
* usbutils 002 releasev002Greg Kroah-Hartman2011-03-171-1/+1
|
* Simplify the configure script.Diego Elio Pettenò2010-12-291-16/+6
| | | | | | | | Instead of doing multiple tests for --disable-zlib, reduce it to the bare minimum. Also drop AC_SUBST of pkg-config variables, as that's only needed with ancient pkg-config or with misused PKG_CHECK_MODULES macros.
* usbutils 001 releasev001Greg Kroah-Hartman2010-12-141-1/+1
| | | | Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* usbutils: convert to libusb-1.0Mike Frysinger2010-11-181-1/+1
| | | | | | | We need to eat our own dog food. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* usbutils 0.91 releasev0.91Greg Kroah-Hartman2010-10-221-1/+1
|
* Integrate usbhid-dumpNikolai Kondrashov2010-09-011-0/+1
| | | | | | | | Add usbhid-dump as a submodule, integrate into the build with AC_CONFIG_SUBDIRS. Signed-off-by: Nikolai Kondrashov <spbnick@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* fix building on non-Linux systems (e.g. BSD)Mike Frysinger2010-09-011-0/+2
| | | | | | | | | Not all C libraries provide byteswap.h, so check for it before we include it. Further, we use functions from unistd.h (e.g. access()), but don't include the header, so pull it in. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* usbutils 0.90 releasev0.90Greg Kroah-Hartman2010-08-121-1/+1
|
* usbutils 0.87 releasev0.87Greg Kroah-Hartman2010-03-171-1/+1
|
* usbutils 0.86 releasev0.86Greg Kroah-Hartman2009-08-171-1/+1
|
* usbutils 0.85 releasev0.85Greg Kroah-Hartman2009-08-171-1/+1
|
* configure.ac: use AM_SILENT_RULES if availableKay Sievers2009-07-051-0/+1
|
* 0.84 releasev0.84Greg Kroah-Hartman2009-06-251-1/+1
|
* 0.83 releasev0.83Greg Kroah-Hartman2009-06-251-1/+1
|
* 0.82 releasev0.82Greg Kroah-Hartman2009-05-061-1/+1
|
* Merge branch 'master' of ↵Greg Kroah-Hartman2009-04-291-0/+3
|\ | | | | | | | | | | | | git://git.kernel.org/pub/scm/linux/kernel/git/kay/usbutils Conflicts: Makefile.am
| * use DISTCLEANFILES and 'g' for 'sed'Kay Sievers2009-04-301-1/+1
| |
| * substitute usb.id location in man page and update scriptKay Sievers2009-04-301-0/+1
| |
| * Merge branch 'master' of ↵Kay Sievers2009-04-291-1/+1
| |\ | | | | | | | | | git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbutils
| * | configure: default to /usrKay Sievers2009-04-271-0/+2
| | |
* | | configure: use AC_MSG_RESULT() rather than echoMike Frysinger2009-04-291-2/+2
| |/ |/| | | | | | | | | | | | | Use the AC_MSG_* mechanisms for output rather than `echo` so we get correct behavior with --quiet/config.log/etc... Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* | 0.81 releasev0.81Greg Kroah-Hartman2009-04-271-1/+1
|/
* fix wrong copy-pasted mail addressKay Sievers2009-04-271-1/+1
|
* bump version to 0.80 to pass "make distcheck"Kay Sievers2009-04-271-1/+1
|
* remove autotools cache on distcleanKay Sievers2009-04-271-2/+2
|
* clean up autotools filesKay Sievers2009-04-271-59/+40
|
* rename configure.in -> configure.acKay Sievers2009-04-261-0/+68