From 5439533394b5ec033055c55fe0b2cc2ef536999c Mon Sep 17 00:00:00 2001 From: pascal Date: Wed, 6 Mar 2024 14:18:02 +0100 Subject: [PATCH 1/3] Fix libusb not building on macOS --- externals/libusb/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externals/libusb/CMakeLists.txt b/externals/libusb/CMakeLists.txt index 1d50c9f8c8..dfce80b101 100644 --- a/externals/libusb/CMakeLists.txt +++ b/externals/libusb/CMakeLists.txt @@ -14,7 +14,7 @@ if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR APPLE) message(FATAL_ERROR "Required program `autoconf` not found.") endif() - find_program(LIBTOOLIZE libtoolize) + find_program(LIBTOOLIZE glibtoolize) if ("${LIBTOOLIZE}" STREQUAL "LIBTOOLIZE-NOTFOUND") message(FATAL_ERROR "Required program `libtoolize` not found.") endif() From bf5d74e94163234a323e81986dd350dd335a8c0b Mon Sep 17 00:00:00 2001 From: pascal Date: Wed, 6 Mar 2024 14:29:45 +0100 Subject: [PATCH 2/3] Revert "Fix libusb not building on macOS" This reverts commit 5439533394b5ec033055c55fe0b2cc2ef536999c. --- externals/libusb/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externals/libusb/CMakeLists.txt b/externals/libusb/CMakeLists.txt index dfce80b101..1d50c9f8c8 100644 --- a/externals/libusb/CMakeLists.txt +++ b/externals/libusb/CMakeLists.txt @@ -14,7 +14,7 @@ if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR APPLE) message(FATAL_ERROR "Required program `autoconf` not found.") endif() - find_program(LIBTOOLIZE glibtoolize) + find_program(LIBTOOLIZE libtoolize) if ("${LIBTOOLIZE}" STREQUAL "LIBTOOLIZE-NOTFOUND") message(FATAL_ERROR "Required program `libtoolize` not found.") endif() From 96bef45ac92b2cd18d291555e29839abe22c7bc2 Mon Sep 17 00:00:00 2001 From: pascal Date: Wed, 6 Mar 2024 14:33:55 +0100 Subject: [PATCH 3/3] Fix libusb not building on macOS --- externals/libusb/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externals/libusb/CMakeLists.txt b/externals/libusb/CMakeLists.txt index 1d50c9f8c8..dfce80b101 100644 --- a/externals/libusb/CMakeLists.txt +++ b/externals/libusb/CMakeLists.txt @@ -14,7 +14,7 @@ if (MINGW OR (${CMAKE_SYSTEM_NAME} MATCHES "Linux") OR APPLE) message(FATAL_ERROR "Required program `autoconf` not found.") endif() - find_program(LIBTOOLIZE libtoolize) + find_program(LIBTOOLIZE glibtoolize) if ("${LIBTOOLIZE}" STREQUAL "LIBTOOLIZE-NOTFOUND") message(FATAL_ERROR "Required program `libtoolize` not found.") endif()