Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.gitattributes | 21-Aug-2018 | 307 | |
.private/ | 21-Aug-2018 | ||
.travis.yml | 21-Aug-2018 | 615 | |
android/ | 21-Aug-2018 | ||
Android.bp | 21-Aug-2018 | 1.9K | |
Android.mk | 21-Aug-2018 | 90 | |
appveyor.yml | 21-Aug-2018 | 962 | |
appveyor_cygwin.bat | 21-Aug-2018 | 475 | |
appveyor_minGW.bat | 21-Aug-2018 | 992 | |
AUTHORS | 21-Aug-2018 | 1.8K | |
autogen.sh | 21-Aug-2018 | 140 | |
bootstrap.sh | 21-Aug-2018 | 76 | |
ChangeLog | 21-Aug-2018 | 9.9K | |
configure.ac | 21-Aug-2018 | 10.6K | |
COPYING | 21-Aug-2018 | 25.8K | |
darwin/ | 21-Aug-2018 | ||
doc/ | 21-Aug-2018 | ||
examples/ | 21-Aug-2018 | ||
include/ | 21-Aug-2018 | ||
INSTALL | 21-Aug-2018 | 9.2K | |
INSTALL_WIN.txt | 21-Aug-2018 | 2.9K | |
libusb/ | 21-Aug-2018 | ||
libusb-1.0.pc.in | 21-Aug-2018 | 312 | |
linux/ | 21-Aug-2018 | ||
Makefile.am | 21-Aug-2018 | 672 | |
MODULE_LICENSE_LGPL | 21-Aug-2018 | 0 | |
msvc/ | 21-Aug-2018 | ||
NEWS | 21-Aug-2018 | 95 | |
NOTICE | 21-Aug-2018 | 25.8K | |
PORTING | 21-Aug-2018 | 3.8K | |
README | 21-Aug-2018 | 1.3K | |
README.git | 21-Aug-2018 | 1.8K | |
README.md | 21-Aug-2018 | 1.3K | |
README.version | 21-Aug-2018 | 112 | |
tests/ | 21-Aug-2018 | ||
TODO | 21-Aug-2018 | 126 | |
travis-autogen.sh | 21-Aug-2018 | 971 | |
windows/ | 21-Aug-2018 | ||
Xcode/ | 21-Aug-2018 |
1 # libusb 2 3 [![Build Status](https://travis-ci.org/libusb/libusb.svg?branch=master)](https://travis-ci.org/libusb/libusb) 4 [![Build status](https://ci.appveyor.com/api/projects/status/xvrfam94jii4a6lw?svg=true)](https://ci.appveyor.com/project/LudovicRousseau/libusb) 5 [![Coverity Scan Build Status](https://scan.coverity.com/projects/2180/badge.svg)](https://scan.coverity.com/projects/libusb-libusb) 6 7 libusb is a library for USB device access from Linux, Mac OS X, 8 Windows, OpenBSD/NetBSD and Haiku userspace. 9 It is written in C (Haiku backend in C++) and licensed under the GNU 10 Lesser General Public License version 2.1 or, at your option, any later 11 version (see [COPYING](COPYING)). 12 13 libusb is abstracted internally in such a way that it can hopefully 14 be ported to other operating systems. Please see the [PORTING](PORTING) 15 file for more information. 16 17 libusb homepage: 18 http://libusb.info/ 19 20 Developers will wish to consult the API documentation: 21 http://api.libusb.info 22 23 Use the mailing list for questions, comments, etc: 24 http://mailing-list.libusb.info 25 26 - Pete Batard <pete (a] akeo.ie> 27 - Hans de Goede <hdegoede (a] redhat.com> 28 - Xiaofan Chen <xiaofanc (a] gmail.com> 29 - Ludovic Rousseau <ludovic.rousseau (a] gmail.com> 30 - Nathan Hjelm <hjelmn (a] cs.unm.edu> 31 - Chris Dickens <christopher.a.dickens (a] gmail.com> 32 33 (Please use the mailing list rather than mailing developers directly) 34
1 Notes related to git compilation: 2 -------------------------------- 3 4 If you retrieved the libusb repository from git and are using a gcc based 5 toolchain, be mindful that you should have the autotools installed (autoconf, 6 automake) and will need to run either ./autogen.sh or ./bootstrap.sh to produce 7 the configure file. 8 9 The difference between autogen.sh and bootstrap.sh is that the former invokes 10 configure with a default set of options, and will therefore generate a Makefile, 11 whereas the latter does not invoke configure at all. If using autogen.sh, note 12 that you can also append options, that will be passed as is to configure. 13 14 OS X-specific notes: 15 ------------------- 16 17 Starting with Xcode 4.3, neither Xcode.app nor the Xcode 'command line tools' 18 includes autotools and so running either autogen.sh or bootstrap.sh will result 19 in the message: 20 21 libtoolize or glibtoolize was not found! Please install libtool. 22 23 To proceed, you must find and install it from somewhere. 24 25 Alternatively, you can use the Xcode project at Xcode/libusb.xcodeproj. 26 27 Notes related to submitting new developments: 28 -------------------------------------------- 29 30 If you submit a new development to libusb (eg: new backend), that is unlikely 31 to fit in a couple of small patches, we would kindly suggest that you create a 32 public account on github, if you don't have one already, and then fork a new 33 libusb repository under this account from https://github.com/libusb/libusb. 34 35 Then you can create a git branch for your work, that we will be able to better 36 reference and test. 37 38 We also suggest that, if you are planning to bring in a large development, you 39 try to involve the libusb community early by letting the mailing list know, as 40 you may find that other people might be eager to help you out. 41 See http://mailing-list.libusb.info for details on how to join the mailing list.
1 # libusb 2 3 [![Build Status](https://travis-ci.org/libusb/libusb.svg?branch=master)](https://travis-ci.org/libusb/libusb) 4 [![Build status](https://ci.appveyor.com/api/projects/status/xvrfam94jii4a6lw?svg=true)](https://ci.appveyor.com/project/LudovicRousseau/libusb) 5 [![Coverity Scan Build Status](https://scan.coverity.com/projects/2180/badge.svg)](https://scan.coverity.com/projects/libusb-libusb) 6 7 libusb is a library for USB device access from Linux, Mac OS X, 8 Windows, OpenBSD/NetBSD and Haiku userspace. 9 It is written in C (Haiku backend in C++) and licensed under the GNU 10 Lesser General Public License version 2.1 or, at your option, any later 11 version (see [COPYING](COPYING)). 12 13 libusb is abstracted internally in such a way that it can hopefully 14 be ported to other operating systems. Please see the [PORTING](PORTING) 15 file for more information. 16 17 libusb homepage: 18 http://libusb.info/ 19 20 Developers will wish to consult the API documentation: 21 http://api.libusb.info 22 23 Use the mailing list for questions, comments, etc: 24 http://mailing-list.libusb.info 25 26 - Pete Batard <pete (a] akeo.ie> 27 - Hans de Goede <hdegoede (a] redhat.com> 28 - Xiaofan Chen <xiaofanc (a] gmail.com> 29 - Ludovic Rousseau <ludovic.rousseau (a] gmail.com> 30 - Nathan Hjelm <hjelmn (a] cs.unm.edu> 31 - Chris Dickens <christopher.a.dickens (a] gmail.com> 32 33 (Please use the mailing list rather than mailing developers directly) 34