Re: picoLCD improved key input

Martin T Jones <[email protected]> Tue, 15 Nov 2011 14:32:00 +0000
Newsgroups gmane.comp.sysutils.lcdproc
Message-ID <[email protected]>
On 05/11/11 20:40, Markus Dolze wrote:
> The libusb-1.0 implementation compiles surprisingly well on FreeBSD if I
> only were able to find out about how to make configure work. This system
> comes with an USB library compatible with libusb-0.1 _and_ libusb-1.0,
> but lacks any way of detecting it with pkg-config. I spent the whole
> afternoon fiddling with it and ended up hard-coding the values for my
> system within configure.in (this is missing from the attached patch).
>
>    
On Debian there is a package configuration file:

/usr/lib/pkgconfig/libusb-1.0.pc


On my system this contains:

prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include

Name: libusb-1.0
Description: C API for USB device access from Linux userspace
Version: 1.0.8
Libs: -L${libdir} -lusb-1.0
Cflags: -I${includedir}/libusb-1.0


Does BSD use the same system?

Regards,

Martin