kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit 8bb4bb6c733e66f3f0370228f4d0cee0e08fb404
parent 972ba8e514452a0c78dc44b8cfbbd28e06e37a74
Author: St John Karp <contact@stjo.hn>
Date:   Tue, 14 Jun 2022 10:45:32 -0400

pcsc-lite: Disable libusb

If libusb is installed when building pcsc-lite, then gpg2 can't
seem to access USB smartcards even though pcscd is running correctly,
finding the drivers, and recognising the card. I'm assuming there's
some configuration related to libusb that's preventing the card being
accessible. Easier for now just to disable libusb when building pcsc-lite.

Diffstat:
Mextra/pcsc-lite/build | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/extra/pcsc-lite/build b/extra/pcsc-lite/build @@ -6,6 +6,7 @@ --sbindir=/usr/bin \ --enable-usbdropdir=/usr/lib/pcsc/drivers \ --disable-libsystemd \ - --disable-libudev + --disable-libudev \ + --disable-libusb make make install