freebsd-ports/games/libretro-uae/files/patch-sources_src_machdep_maccess.h
Piotr Kubaj 88a0fd3178 games/libretro-uae: fix build on powerpc*
ifdef powerpc needs to be added to prevent compiling code with bad assembly.

MFH:		2020Q3 (fix build blanket)
2020-08-25 11:38:17 +00:00

11 lines
328 B
C

--- sources/src/machdep/maccess.h.orig 2020-08-25 11:25:48 UTC
+++ sources/src/machdep/maccess.h
@@ -6,7 +6,7 @@
* Copyright 1996 Bernd Schmidt
*/
-#if defined(__CELLOS_LV2__) || defined(WIIU)
+#if defined(__CELLOS_LV2__) || defined(WIIU) || defined(__powerpc__)
STATIC_INLINE uae_u32 do_get_mem_long (uae_u32 *a)
{