FreeBSD: Add missing libusb-2.0 to pkg-config file.

This fixes bug #1033.
This commit is contained in:
Uwe Hermann 2017-09-13 15:04:35 +02:00
parent 6c8115820d
commit 2a6c24be33
2 changed files with 4 additions and 1 deletions

View File

@ -95,6 +95,9 @@ AM_CONDITIONAL([FREEBSD], [test -z "${host_os##freebsd*}"])
AM_COND_IF([WIN32], [SP_LIBS='-lsetupapi'], [SP_LIBS=])
AC_SUBST([SP_LIBS])
AM_COND_IF([FREEBSD], [SP_PKGLIBS='libusb-2.0'], [SP_PKGLIBS=])
AC_SUBST([SP_PKGLIBS])
AM_COND_IF([MACOSX], [AC_CHECK_HEADER([IOKit/IOKitLib.h], [],
[AC_MSG_ERROR([IOKit/IOKitLib.h not found])])])

View File

@ -6,7 +6,7 @@ includedir=@includedir@
Name: libserialport
Description: Cross-platform serial port access library.
URL: http://sigrok.org/wiki/Libserialport
Requires.private:
Requires.private: @SP_PKGLIBS@
Version: @SP_PACKAGE_VERSION@
Libs: -L${libdir} -lserialport
Libs.private: @SP_LIBS@