From e389276874426b949a835cfd50f34f54de522884 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Wed, 6 Dec 2023 20:07:55 +0100 Subject: emulators/yuzu: unbreak build after 455717ffde60 CMake Warning at CMakeLists.txt:313 (find_package): Could not find a configuration file for package "xbyak" that is compatible with requested version "6". The following configuration files were considered but not accepted: /usr/local/lib/cmake/xbyak/xbyak-config.cmake, version: 7.0 CMake Error at externals/CMakeLists.txt:19 (add_subdirectory): The source directory externals/xbyak does not contain a CMakeLists.txt file. --- emulators/yuzu/files/patch-xbyak7 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 emulators/yuzu/files/patch-xbyak7 diff --git a/emulators/yuzu/files/patch-xbyak7 b/emulators/yuzu/files/patch-xbyak7 new file mode 100644 index 000000000000..55ee08d293b0 --- /dev/null +++ b/emulators/yuzu/files/patch-xbyak7 @@ -0,0 +1,26 @@ +CMake Warning at CMakeLists.txt:313 (find_package): + Could not find a configuration file for package "xbyak" that is compatible + with requested version "6". + + The following configuration files were considered but not accepted: + + /usr/local/lib/cmake/xbyak/xbyak-config.cmake, version: 7.0 + +CMake Error at externals/CMakeLists.txt:19 (add_subdirectory): + The source directory + + externals/xbyak + + does not contain a CMakeLists.txt file. + +--- CMakeLists.txt.orig 2023-12-04 02:59:11 UTC ++++ CMakeLists.txt +@@ -310,7 +310,7 @@ + endif() + + if (ARCHITECTURE_x86 OR ARCHITECTURE_x86_64) +- find_package(xbyak 6 CONFIG) ++ find_package(xbyak CONFIG) + endif() + + if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64) -- cgit v1.2.3