diff options
author | Guido Falsi <madpilot@FreeBSD.org> | 2022-07-10 13:20:54 +0000 |
---|---|---|
committer | Guido Falsi <madpilot@FreeBSD.org> | 2022-07-10 13:20:54 +0000 |
commit | e2200a3df5076e07916496bf098065ac52efd3c4 (patch) | |
tree | 841635bd5c3605d5809ee40ffe1a9d6e5bd8be96 /multimedia/audacious/files | |
parent | 83b212db0c8613edaa2a09ef7a3470144b267ab8 (diff) |
Diffstat (limited to 'multimedia/audacious/files')
-rw-r--r-- | multimedia/audacious/files/patch-src_libaudcore_i18n.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/multimedia/audacious/files/patch-src_libaudcore_i18n.h b/multimedia/audacious/files/patch-src_libaudcore_i18n.h new file mode 100644 index 000000000000..de75cd1c038f --- /dev/null +++ b/multimedia/audacious/files/patch-src_libaudcore_i18n.h @@ -0,0 +1,13 @@ +--- src/libaudcore/i18n.h.orig 2022-07-10 01:11:00 UTC ++++ src/libaudcore/i18n.h +@@ -34,8 +34,9 @@ + + #else + +-#define _(String) (String) ++#define _(String) ((char *)String) + #define N_(String) (String) ++#define gettext(str) (str) + #define dgettext(package, str) (str) + #define dngettext(package, str1, str2, count) (count > 1 ? str2 : str1) + #define ngettext(str1, str2, count) (count > 1 ? str2 : str1) |