aboutsummaryrefslogtreecommitdiff
path: root/multimedia/audacious/files
diff options
context:
space:
mode:
authorGuido Falsi <madpilot@FreeBSD.org>2022-07-10 13:20:54 +0000
committerGuido Falsi <madpilot@FreeBSD.org>2022-07-10 13:20:54 +0000
commite2200a3df5076e07916496bf098065ac52efd3c4 (patch)
tree841635bd5c3605d5809ee40ffe1a9d6e5bd8be96 /multimedia/audacious/files
parent83b212db0c8613edaa2a09ef7a3470144b267ab8 (diff)
Diffstat (limited to 'multimedia/audacious/files')
-rw-r--r--multimedia/audacious/files/patch-src_libaudcore_i18n.h13
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)