summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* bumped internal versionpbk331Pete Batard2011-03-011-1/+1
|
* [internal] use pbk and offset 8000pbk330Pete Batard2011-02-221-1/+1
|
* 'K' branch for LibUSBwK support - offset 8000Pete Batard2011-02-221-1/+1
|
* bumped internal versionpbr329Pete Batard2011-02-211-1/+1
|
* bumped internal versionpbr328Pete Batard2011-01-311-1/+1
|
* merged latest official changesPete Batard2011-01-301-1/+0
| | | | * up to 295c9d12e25bc2dbdd8b42bd67a1f7120f0631a1
* added topology information retrieval to xusbpbr327Pete Batard2011-01-201-1/+1
|
* [INTERNAL - TESTING] removed test file for line ending conversionpbr326Pete Batard2011-01-181-1/+1
|
* cygwin: switched back to -std=gnu99Pete Batard2011-01-181-1/+1
| | | | | | | | | * cygwin recently changed their definition of OVERLAPPED in winbase.h to using anonymous structs/unions * anonymous struct unions are a GNU extension and ignored in standard C * this resulted in the OVERLAPPED hEvent handle being moved to an improper location, and invalid handle errors
* bumped internal versionpbr325Pete Batard2010-12-101-1/+1
|
* unconstrained ancestors lookup for HID and other devicespbr324Pete Batard2010-12-011-1/+1
| | | | | | | | * Some HID devices (Logitech) had interfaces that used more than 2 levels to get to a listed ancestor, which resulted to assertion failure * new implementation no longer constrains lookup level * issue reported by Phong Truong
* [INTERNAL - NOT FOR RELEASE] updated _bd.cmdpbr323Pete Batard2010-11-231-1/+1
|
* bumped internal versionpbr322Pete Batard2010-11-181-1/+1
|
* bumped internal versionpbr321Pete Batard2010-11-131-1/+1
|
* bumped internal versionpbr320Pete Batard2010-11-011-1/+1
|
* more enumeration bugfixes and improvementspbr319Pete Batard2010-10-281-1/+1
| | | | | | | * previously opened devices were not being added to the discovered list * provide device information on cache descriptor errors * disconnected device is not an assertion failure * code readability
* minor enumeration bugfixes and improvementspbr318Pete Batard2010-10-271-1/+1
| | | | | | | * dev_interface_details is not available on GEN pass but some warning messages attempt to reference that pointer * skip device if interface path cannot be sanitized * check the return value of init_device() and bail out on error
* [INTERNAL - NOT FOR RELEASE] snapshot _README.txtpbr317Pete Batard2010-10-271-1/+1
| | | | * also _bd.cmd fixes and improvements
* [INTERNAL - NOT FOR RELEASE] add stdint.h to archivespbr316Pete Batard2010-10-271-1/+1
|
* bumped internal versionpbr315Pete Batard2010-10-261-1/+1
|
* removed SetupAPI, AdvAPI32 and OLE32 dependenciesPete Batard2010-10-261-2/+0
| | | | | * this ensures that libusb dependent applications only need to link with libusb on Windows
* fixed potentially non unique return value for htab_hashpbr314Pete Batard2010-10-141-1/+1
| | | | * also increased htab size to 1021, from a .h macro
* fixed trac #68 (incorrect buffer size for HID reports)pbr313Pete Batard2010-10-131-1/+1
| | | | | * this regression was introduced in pbr301 * reported by gorlik
* fixed missing malloc check in htab_hash()pbr312Pete Batard2010-10-121-1/+1
| | | | | * spotted by Michael Plante * also some cleanup
* bumped internal versionpbr311Pete Batard2010-10-121-1/+1
|
* bumped internal versionpbr310Pete Batard2010-10-061-1/+1
|
* bumped internal versionpbr309Pete Batard2010-10-051-1/+1
|
* bumped internal versionpbr308Pete Batard2010-10-051-1/+1
|
* Populate the pkg-config Libs.private fieldMike Frysinger2010-10-051-4/+11
|
* Update libtool version infoDaniel Drake2010-10-051-8/+11
| | | | | | | With input from various people on the mailing list, update the libtool versioning info and start to update this on every release. The next libusb release will not need a change here. All following ones will.
* bumped internal versionpbr307Pete Batard2010-10-041-1/+1
|
* bumped internal versionpbr306Pete Batard2010-09-211-1/+1
|
* bumped internal versionpbr305Pete Batard2010-09-211-1/+1
|
* handle versioning through libusb_version.hPete Batard2010-09-211-1/+1
| | | | | | * libusb_version.h.in is now used to generate libusb_version.h * removes the need for libusb-1.0.rc.in and libusbi.h.in * new LIBUSB_PACKAGE_VERSION added as .rc can't stringify macros
* merged latest official changesPete Batard2010-09-201-2/+2
| | | | * up to e65f69a7ef3de357c867ddaac9598efe407078b6
* added libusb version nanoPete Batard2010-09-201-1/+3
|
* creates MinGW and MS DLLs that are fully interchangeablepbr293Pete Batard2010-08-051-1/+4
| | | | | | | 1. because we use WINAPI, the def file MUST have the @n aliases - there's no way around as MinGW's .o use decoration always for __stdcall, and this can't be turned off 2. our "dumb" autogen create_def() script simply creates the whole range of aliases (we might improve on this in the future) 3. dlltool must be called manually to create the import lib from the def, *with the --kill-at option* 4. a CREATE_IMPORT_LIB autotools variable is introduced to selectively run dlltool or not
* reverted to using a (generated) .def file for DLL exportspbr291Pete Batard2010-08-021-2/+2
| | | | | | | | added libusb-1.0.def (plus reference in MS projects) removed LIBUSB_EXP/__declspec(dllexport) from libusb.h removed LIBUSB_DLL_BUILD macros added -Wl,--add-stdcall-alias linker option for MinGW/cygwin for DLL generation added sed script in autogen to update the libusb-1.0.def
* fix -Wshadow warnings for cywginpbr287Pete Batard2010-07-291-1/+5
| | | | does so by setting gcc to -std=c99 instead -std=gnu99 for MinGW/cygwin
* fixed residuals from official for autoconf/automakePete Batard2010-07-291-16/+12
|
* fix bashismsAurelien Jarno2010-07-291-4/+4
|
* bring autoconf/automake in line with officialDaniel Drake2010-07-291-6/+15
|
* add AM_MAINTAINER_MODELudovic Rousseau2010-06-111-0/+2
|
* added detection of -pthread option - only use when requiredPete Batard2010-05-111-3/+14
|
* removed further MS generated data + bump version to 1.0.8r274Pete Batard2010-05-051-1/+1
|
* autoconf needs to check for struct timespecr268Peter Stuge2010-04-201-0/+2
|
* merged official 1.0.6 -> 1.0.7 release changesPete Batard2010-04-201-1/+1
|
* configure creates libusb-1.0.rc to not duplicate the version numberPeter Stuge2010-04-181-2/+11
|
* MinGW/cygwin advapi32 library dependency (configure.ac)r256Pete Batard2010-04-161-2/+2
|
* more explicit toggable debug optionsMichael Plante2010-04-151-3/+3
| | | | also re-added usbi_dbg() default context creation message