git: 98705ae2cb67 - main - games/libretro-tyrquake: fix build on powerpc*
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Nov 2023 21:34:24 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=98705ae2cb67143fe24035c3df7f7c5aa99e29c1 commit 98705ae2cb67143fe24035c3df7f7c5aa99e29c1 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2023-11-21 21:32:18 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2023-11-21 21:34:22 +0000 games/libretro-tyrquake: fix build on powerpc* libretro-common/features/features_cpu.c:50:10: fatal error: 'ppu_intrinsics.h' file not found ^~~~~~~~~~~~~~~~~~ 1 error generated. --- .../patch-libretro-common_features_features__cpu.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/games/libretro-tyrquake/files/patch-libretro-common_features_features__cpu.c b/games/libretro-tyrquake/files/patch-libretro-common_features_features__cpu.c new file mode 100644 index 000000000000..a4d61092e763 --- /dev/null +++ b/games/libretro-tyrquake/files/patch-libretro-common_features_features__cpu.c @@ -0,0 +1,20 @@ +--- libretro-common/features/features_cpu.c.orig 2023-11-21 21:30:09 UTC ++++ libretro-common/features/features_cpu.c +@@ -45,7 +45,7 @@ + + #if defined(_XBOX360) + #include <PPCIntrinsics.h> +-#elif !defined(__MACH__) && (defined(__POWERPC__) || defined(__powerpc__) || defined(__ppc__) || defined(__PPC64__) || defined(__powerpc64__)) ++#elif !defined(__MACH__) && !defined(__FreeBSD__) && (defined(__POWERPC__) || defined(__powerpc__) || defined(__ppc__) || defined(__PPC64__) || defined(__powerpc64__)) + #ifndef _PPU_INTRINSICS_H + #include <ppu_intrinsics.h> + #endif +@@ -181,7 +181,7 @@ retro_perf_tick_t cpu_features_get_perf_counter(void) + time_ticks = (1000000 * tv_sec + tv_usec); + #elif defined(GEKKO) + time_ticks = gettime(); +-#elif !defined(__MACH__) && (defined(_XBOX360) || defined(__powerpc__) || defined(__ppc__) || defined(__POWERPC__) || defined(__PSL1GHT__) || defined(__PPC64__) || defined(__powerpc64__)) ++#elif !defined(__MACH__) && !defined(__FreeBSD__) && (defined(_XBOX360) || defined(__powerpc__) || defined(__ppc__) || defined(__POWERPC__) || defined(__PSL1GHT__) || defined(__PPC64__) || defined(__powerpc64__)) + time_ticks = __mftb(); + #elif (defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK > 0) || defined(__QNX__) || defined(ANDROID) + struct timespec tv;