common: Require libusb/libusbx >= 1.0.13
We technically need 1.0.12 or newer, but there's no way to detect that at compile time since there was no VERSION definition in the libusb headers until 1.0.13master
parent
11cd411855
commit
2b867a323a
2
README
2
README
|
@ -93,7 +93,7 @@
|
|||
***************************************************************************
|
||||
Compilation:
|
||||
|
||||
You will need libusbx to build this tool.
|
||||
You will need libusb/libusbx v1.0.13 (or newer) to build this tool.
|
||||
|
||||
Fedora/RedHat:
|
||||
yum install libusbx-devel
|
||||
|
|
|
@ -27,11 +27,15 @@
|
|||
|
||||
#include "backend_common.h"
|
||||
|
||||
#define BACKEND_VERSION "0.31"
|
||||
#define BACKEND_VERSION "0.32"
|
||||
#ifndef URI_PREFIX
|
||||
#error "Must Define URI_PREFIX"
|
||||
#endif
|
||||
|
||||
#ifndef LIBUSBX_API_VERSION
|
||||
#error "We need libusb >= 1.0.13!"
|
||||
#endif
|
||||
|
||||
/* Support Functions */
|
||||
|
||||
#define ID_BUF_SIZE 2048
|
||||
|
|
Loading…
Reference in New Issue