mirror of
https://github.com/GOSTSec/sgminer
synced 2025-09-01 16:52:18 +00:00
configure.ac: Don't use pkg-config to search for libusb-1.0 on FreeBSD
This commit is contained in:
parent
171c3d0c72
commit
d0c10b78be
10
configure.ac
10
configure.ac
@ -346,7 +346,15 @@ AM_CONDITIONAL([HAVE_LIBUDEV], [test x$libudev != xno])
|
|||||||
PKG_PROG_PKG_CONFIG()
|
PKG_PROG_PKG_CONFIG()
|
||||||
|
|
||||||
if test "x$ztex" != xno; then
|
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])])
|
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_LIBS="$LIBUSB_LIBS"
|
||||||
USB_FLAGS="$LIBUSB_CFLAGS"
|
USB_FLAGS="$LIBUSB_CFLAGS"
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user