mirror of
https://github.com/GOSTSec/sgminer
synced 2025-02-05 03:24:26 +00:00
Merge pull request #329 from denis2342/master
Find libusb-1.0 using pkg-config and correct the libusb.h #include path
This commit is contained in:
commit
09a526959b
22
configure.ac
22
configure.ac
@ -343,16 +343,22 @@ if test "x$bitforce$modminer" != xnono; then
|
|||||||
fi
|
fi
|
||||||
AM_CONDITIONAL([HAVE_LIBUDEV], [test x$libudev != xno])
|
AM_CONDITIONAL([HAVE_LIBUDEV], [test x$libudev != xno])
|
||||||
|
|
||||||
if test "x$ztex" != xno; then
|
|
||||||
AC_CHECK_LIB(usb-1.0, libusb_init, ,
|
|
||||||
AC_MSG_ERROR([Could not find usb library - please install libusb]))
|
|
||||||
AC_DEFINE([HAVE_LIBUSB], [1], [Defined to 1 if libusb is wanted])
|
|
||||||
USB_LIBS="-lusb-1.0"
|
|
||||||
USB_FLAGS=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
PKG_PROG_PKG_CONFIG()
|
PKG_PROG_PKG_CONFIG()
|
||||||
|
|
||||||
|
if test "x$ztex" != xno; then
|
||||||
|
case $target in
|
||||||
|
*-*-freebsd*)
|
||||||
|
LIBUSB_LIBS="-lusb"
|
||||||
|
LIBUSB_CFLAGS=""
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
PKG_CHECK_MODULES(LIBUSB, libusb-1.0, [AC_DEFINE(HAVE_LIBUSB, 1, [Define if you have libusb-1.0])], [AC_MSG_ERROR([Could not find usb library - please install libusb-1.0])])
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
USB_LIBS="$LIBUSB_LIBS"
|
||||||
|
USB_FLAGS="$LIBUSB_CFLAGS"
|
||||||
|
fi
|
||||||
|
|
||||||
PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.18.2], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.18.2])])
|
PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.18.2], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.18.2])])
|
||||||
AC_SUBST(LIBCURL_LIBS)
|
AC_SUBST(LIBCURL_LIBS)
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#ifndef __LIBZTEX_H__
|
#ifndef __LIBZTEX_H__
|
||||||
#define __LIBZTEX_H__
|
#define __LIBZTEX_H__
|
||||||
|
|
||||||
#include <libusb-1.0/libusb.h>
|
#include <libusb.h>
|
||||||
|
|
||||||
#define LIBZTEX_MAX_DESCRIPTORS 512
|
#define LIBZTEX_MAX_DESCRIPTORS 512
|
||||||
#define LIBZTEX_SNSTRING_LEN 10
|
#define LIBZTEX_SNSTRING_LEN 10
|
||||||
|
Loading…
x
Reference in New Issue
Block a user