aboutsummaryrefslogtreecommitdiffstats
path: root/libusb/libusb-1.0.rc
Commit message (Collapse)AuthorAgeFilesLines
* Misc: Revert all references to libusb/libusb.infohjelmn@cs.unm.edu2014-01-081-1/+1
|
* WinCE: Add support for WinCE (sources)Toby Gray2013-01-231-0/+2
|
* Core: Add get_version() callPete Batard2012-04-101-3/+6
| | | | * Also some formatting/typo improvements
* Misc: Rebrand to libusbxPete Batard2012-04-031-1/+1
| | | | | * Mentions of 'libusb' in doxygen are changed to 'libusbx' * Also update copyright notices and remove unneeded EOF LFs
* Windows: Fix MSVC6 IDE warning on line continuation in libusb-1.0.rcMichael Plante2012-02-121-6/+2
| | | | | | | | | | | * libusb\libusb-1.0.rc(21): Could not find the file LIBUSB_RC. * only shows up first time after opening workspace. * shows up on either build or clean. * not actually due to rc.exe, but prior to it. * probably an IDE bug. * does not show up when running an exported makefile. Signed-off-by: Michael Plante <michael.plante@gmail.com>
* Support release candidate versions in configure.ac and libusb-1.0.rcPeter Stuge2011-10-171-2/+2
|
* Move library version number from configure.ac to libusb/version.hPeter Stuge2011-06-131-0/+60
This is neccessary to support native MS builds. The Windows resource file libusb/libusb-1.0.rc must include the release version, which was previously only available after configure had run and had substituted the numbers into a generated libusb/libusb-1.0.rc file. The version atoms are now stored as CPP style #defines in libusb/version.h so that the .rc no longer needs to be generated but can simply include the header file and access the version information directly. The m4 macro LU_DEFINE_VERSION_ATOM() was added to configure.ac to get version atoms from libusb/version.h for use in AC_INIT(). The macro handles C and C++ style comments in version.h, but can easily be made to fail by obscuring the file. Please don't do that. Tested with MinGW using autoconf, and manual compile of libusb-1.0.rc using RC.EXE Version 5.2.3690.0 from Visual C++ 2005 Express Edition.