void-packages/srcpkgs/pcsxr/patches/02_disable-ppc-auto-dynarec.patch
q66 cabbb8a1ca pcsxr: update to 1.9.94
This switches distfiles source as the original does ńot have the
new version. It also adds a bunch of patches, including fixes for
ppc and so on, from Debian.
2019-06-25 21:53:05 +02:00

17 lines
510 B
Diff

Description: Do not enable dynarec on ppc when built with --enable-dynarec=auto
PowerPC dynarec code seems unsupported and not working.
Author: Andrey Rahmatullin <wrar@wrar.name>
Forwarded: not-needed
Last-Update: 2012-03-03
--- a/configure.ac
+++ b/configure.ac
@@ -220,8 +220,6 @@ if test "x$DYNARECSEL" = xauto; then
DYNARECSEL="x86"
elif expr x"$build_cpu" : 'xx86_64' > /dev/null; then
DYNARECSEL="x86_64"
- elif expr x"$build_cpu" : 'xpowerpc' > /dev/null; then
- DYNARECSEL="ppc"
fi
fi