Skip to content

Commit

Permalink
multimedia/musikcube: fix build on powerpc64le
Browse files Browse the repository at this point in the history
Same issue as audio/deadbeef.
  • Loading branch information
pkubaj committed Apr 6, 2021
1 parent 792f2ab commit 2efdd7b
Showing 1 changed file with 13 additions and 0 deletions.
@@ -0,0 +1,13 @@
--- src/plugins/gmedecoder/gme/blargg_endian.h.orig 2021-04-05 20:58:30 UTC
+++ src/plugins/gmedecoder/gme/blargg_endian.h
@@ -34,9 +34,7 @@
#if defined (LSB_FIRST) || defined (__LITTLE_ENDIAN__) || BLARGG_CPU_X86 || \
(defined (LITTLE_ENDIAN) && LITTLE_ENDIAN+0 != 1234)
#define BLARGG_LITTLE_ENDIAN 1
-#endif
-
-#if defined (MSB_FIRST) || defined (__BIG_ENDIAN__) || defined (WORDS_BIGENDIAN) || \
+#elif defined (MSB_FIRST) || defined (__BIG_ENDIAN__) || defined (WORDS_BIGENDIAN) || \
defined (__sparc__) || BLARGG_CPU_POWERPC || \
(defined (BIG_ENDIAN) && BIG_ENDIAN+0 != 4321)
#define BLARGG_BIG_ENDIAN 1

0 comments on commit 2efdd7b

Please sign in to comment.