1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-02 10:04:33 +00:00

Find libusb-1.0 using pkg-config and correct the libusb.h #include path

This commit is contained in:
Peter Stuge 2012-11-16 00:13:56 +01:00 committed by Denis Ahrens
parent d15515bea4
commit 171c3d0c72
3 changed files with 8 additions and 10 deletions

View File

@ -343,16 +343,14 @@ if test "x$bitforce$modminer" != xnono; then
fi
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()
if test "x$ztex" != xno; then
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])])
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])])
AC_SUBST(LIBCURL_LIBS)

View File

@ -22,7 +22,7 @@
#ifndef __LIBZTEX_H__
#define __LIBZTEX_H__
#include <libusb-1.0/libusb.h>
#include <libusb.h>
#define LIBZTEX_MAX_DESCRIPTORS 512
#define LIBZTEX_SNSTRING_LEN 10

View File

@ -103,7 +103,7 @@ static inline int fsync (int fd)
#endif
#ifdef HAVE_LIBUSB
#include <libusb-1.0/libusb.h>
#include <libusb.h>
#endif
#ifdef USE_ZTEX