Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Dec 2023 19:52:45 GMT
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: e38927687442 - main - emulators/yuzu: unbreak build after 455717ffde60
Message-ID:  <202312061952.3B6Jqj8j070091@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=e389276874426b949a835cfd50f34f54de522884

commit e389276874426b949a835cfd50f34f54de522884
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2023-12-06 19:07:55 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2023-12-06 19:52:35 +0000

    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(+)

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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202312061952.3B6Jqj8j070091>