Skip to content

Commit 645e208

Browse files
ShadowNinjaest31
authored andcommittedSep 6, 2015
Use CUSTOM_LOCALEDIR if specified
1 parent 31b6d26 commit 645e208

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed
 

‎src/cmake_config.h.in

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#define VERSION_STRING "@VERSION_STRING@"
1313
#define PRODUCT_VERSION_STRING "@VERSION_MAJOR@.@VERSION_MINOR@"
1414
#define STATIC_SHAREDIR "@SHAREDIR@"
15+
#define STATIC_LOCALEDIR "@LOCALEDIR@"
1516
#define BUILD_TYPE "@CMAKE_BUILD_TYPE@"
1617
#cmakedefine01 RUN_IN_PLACE
1718
#cmakedefine01 USE_GETTEXT

‎src/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -472,10 +472,10 @@ static bool init_common(int *log_level, const Settings &cmd_args, int argc, char
472472
httpfetch_init(g_settings->getS32("curl_parallel_limit"));
473473

474474
#ifdef _MSC_VER
475-
init_gettext((porting::path_share + DIR_DELIM + "locale").c_str(),
475+
init_gettext(porting::path_locale.c_str(),
476476
g_settings->get("language"), argc, argv);
477477
#else
478-
init_gettext((porting::path_share + DIR_DELIM + "locale").c_str(),
478+
init_gettext(porting::path_locale.c_str(),
479479
g_settings->get("language"));
480480
#endif
481481

‎src/porting.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@ void signal_handler_init(void)
136136
// Default to RUN_IN_PLACE style relative paths
137137
std::string path_share = "..";
138138
std::string path_user = "..";
139+
std::string path_locale = path_share + DIR_DELIM + "locale";
140+
139141

140142
std::string getDataPath(const char *subpath)
141143
{
@@ -503,13 +505,17 @@ void initializePaths()
503505
path_share = execpath;
504506
path_user = execpath;
505507
}
506-
507508
#else
508509
infostream << "Using system-wide paths (NOT RUN_IN_PLACE)" << std::endl;
509510

510511
if (!setSystemPaths())
511512
errorstream << "Failed to get one or more system-wide path" << std::endl;
512513

514+
#endif
515+
#ifdef STATIC_LOCALEDIR
516+
path_locale = STATIC_LOCALEDIR[0] ? STATIC_LOCALEDIR : getDataPath("locale");
517+
#else
518+
path_locale = getDataPath("locale");
513519
#endif
514520

515521
infostream << "Detected share path: " << path_share << std::endl;

‎src/porting.h

+6-1
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,19 @@ extern std::string path_share;
142142
*/
143143
extern std::string path_user;
144144

145+
/*
146+
Path to gettext locale files
147+
*/
148+
extern std::string path_locale;
149+
145150
/*
146151
Get full path of stuff in data directory.
147152
Example: "stone.png" -> "../data/stone.png"
148153
*/
149154
std::string getDataPath(const char *subpath);
150155

151156
/*
152-
Initialize path_share and path_user.
157+
Initialize path_*.
153158
*/
154159
void initializePaths();
155160

0 commit comments

Comments
 (0)
Please sign in to comment.