From df27b854325c1fe96b7bc9f8a1cc227b55896f57 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sat, 30 Jul 2011 14:38:41 +0300 Subject: [PATCH] quick fix to it not building with gettext on my visual studio environment --- src/gettext.h | 2 -- src/main.cpp | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gettext.h b/src/gettext.h index 8ddb95346..73b9f8986 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -2,8 +2,6 @@ #include #else #define gettext(String) String -#define bindtextdomain(domain, dir) /* */ -#define textdomain(domain) /* */ #endif #define _(String) gettext(String) diff --git a/src/main.cpp b/src/main.cpp index 09c299004..9a9b22f87 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1161,9 +1161,11 @@ int main(int argc, char *argv[]) // Create user data directory fs::CreateDir(porting::path_userdata); +#ifdef USE_GETTEXT setlocale(LC_MESSAGES, ""); bindtextdomain("minetest", (porting::path_userdata+"/locale").c_str()); textdomain("minetest"); +#endif // Initialize debug streams #ifdef RUN_IN_PLACE -- 2.25.1