From 2577afed5595a659d4be53907b7978cd2268e432 Mon Sep 17 00:00:00 2001 From: Jef Driesen Date: Thu, 24 Nov 2022 21:14:07 +0100 Subject: [PATCH] Update libusb and hidapi in the CI builds The current hidapi version (v0.10.1) fails to build with newer autoconf versions (v2.70) due to a duplicated AC_CONFIG_MACRO_DIR macro in the configure.ac file. This is fixed in newer versions. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a2bee25..4b2a3b1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,7 +83,7 @@ jobs: run: sudo apt-get install gcc-mingw-w64 binutils-mingw-w64 mingw-w64-tools - name: Install libusb env: - LIBUSB_VERSION: 1.0.24 + LIBUSB_VERSION: 1.0.26 run: | wget -c https://github.com/libusb/libusb/archive/refs/tags/v${LIBUSB_VERSION}.tar.gz tar xzf v${LIBUSB_VERSION}.tar.gz @@ -95,7 +95,7 @@ jobs: popd - name: Install hidapi env: - HIDAPI_VERSION: 0.10.1 + HIDAPI_VERSION: 0.12.0 run: | wget -c https://github.com/libusb/hidapi/archive/refs/tags/hidapi-${HIDAPI_VERSION}.tar.gz tar xzf hidapi-${HIDAPI_VERSION}.tar.gz