changeset 262:afdeafb82c22

misc: fix build without NLS
author David Demelier <markand@malikania.fr>
date Mon, 07 Dec 2020 23:21:05 +0100
parents bfde372bf152
children cd5bdb995052
files libmlk-adventure/adventure/adventure_p.h libmlk-core/core/core_p.h libmlk-rpg/rpg/rpg_p.h libmlk-ui/ui/ui_p.h
diffstat 4 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libmlk-adventure/adventure/adventure_p.h	Sun Dec 06 23:06:34 2020 +0100
+++ b/libmlk-adventure/adventure/adventure_p.h	Mon Dec 07 23:21:05 2020 +0100
@@ -25,7 +25,7 @@
 #       include <libintl.h>
 #       define _(s) dgettext("libmlk-adventure", s)
 #else
-#       define _(s)
+#       define _(s) s
 #endif
 
 #endif /* !MOLKO_ADVENTURE_ADVENTURE_P_H */
--- a/libmlk-core/core/core_p.h	Sun Dec 06 23:06:34 2020 +0100
+++ b/libmlk-core/core/core_p.h	Mon Dec 07 23:21:05 2020 +0100
@@ -25,7 +25,7 @@
 #       include <libintl.h>
 #       define _(s) dgettext("libmlk-core", s)
 #else
-#       define _(s)
+#       define _(s) s
 #endif
 
 #endif /* !MOLKO_CORE_CORE_P_H */
--- a/libmlk-rpg/rpg/rpg_p.h	Sun Dec 06 23:06:34 2020 +0100
+++ b/libmlk-rpg/rpg/rpg_p.h	Mon Dec 07 23:21:05 2020 +0100
@@ -25,7 +25,7 @@
 #       include <libintl.h>
 #       define _(s) dgettext("libmlk-rpg", s)
 #else
-#       define _(s)
+#       define _(s) s
 #endif
 
 #endif /* !MOLKO_RPG_RPG_P_H */
--- a/libmlk-ui/ui/ui_p.h	Sun Dec 06 23:06:34 2020 +0100
+++ b/libmlk-ui/ui/ui_p.h	Mon Dec 07 23:21:05 2020 +0100
@@ -25,7 +25,7 @@
 #       include <libintl.h>
 #       define _(s) dgettext("libmlk-ui", s)
 #else
-#       define _(s)
+#       define _(s) s
 #endif
 
 #endif /* !MOLKO_UI_UI_P_H */