-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
audacious*: update to 4.4.2, fix big-endian back
- Loading branch information
1 parent
16d8a43
commit 04e8d47
Showing
6 changed files
with
72 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Reverts https://github.com/audacious-media-player/audacious/commit/9e51ffa0c0ec79b537cc970158d51557273970ea | ||
|
||
--- src/config.h.meson 2024-11-04 04:00:44.000000000 +0800 | ||
+++ src/config.h.meson 2024-11-11 02:05:46.000000000 +0800 | ||
@@ -5,7 +5,6 @@ | ||
#mesondefine EXPORT | ||
#mesondefine PLUGIN_SUFFIX | ||
#mesondefine VALGRIND_FRIENDLY | ||
-#mesondefine WORDS_BIGENDIAN | ||
|
||
#define PACKAGE_VERSION VERSION | ||
#define ICONV_CONST |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...o/audacious-plugins/files/0001-xsf-desmume-types.h-ensure-LOCAL_BE-gets-defined-on-.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
From 343d20c6ece2d48dba06a8ba4f474499a8a3a1f0 Mon Sep 17 00:00:00 2001 | ||
From: Sergey Fedorov <[email protected]> | ||
Date: Thu, 25 Jul 2024 23:33:55 +0800 | ||
Subject: [PATCH] xsf/desmume/types.h: ensure LOCAL_BE gets defined on | ||
Big-endian platforms | ||
|
||
--- | ||
src/xsf/desmume/types.h | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git src/xsf/desmume/types.h src/xsf/desmume/types.h | ||
index 61d858cec..d3113fccd 100644 | ||
--- src/xsf/desmume/types.h | ||
+++ src/xsf/desmume/types.h | ||
@@ -96,7 +96,7 @@ using s8 = int8_t; | ||
|
||
/*----------------------*/ | ||
|
||
-#ifdef __BIG_ENDIAN__ | ||
+#if defined(__BIG_ENDIAN__) || (defined(__BYTE_ORDER__) && (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)) | ||
# ifndef WORDS_BIGENDIAN | ||
# define WORDS_BIGENDIAN | ||
# endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Reverts https://github.com/audacious-media-player/audacious-plugins/commit/c175d8b9cece8a53d86ce54fc252454287814e9e | ||
|
||
--- src/config.h.meson 2024-11-04 04:02:39.000000000 +0800 | ||
+++ src/config.h.meson 2024-11-11 02:06:51.000000000 +0800 | ||
@@ -3,7 +3,6 @@ | ||
#mesondefine COPYRIGHT | ||
#mesondefine EXPORT | ||
#mesondefine PLUGIN_SUFFIX | ||
-#mesondefine WORDS_BIGENDIAN | ||
|
||
#define PACKAGE_VERSION VERSION | ||
#define ICONV_CONST |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters