Skip to content

Commit 558d715

Browse files
committedApr 27, 2015
Revert "Only lowercase project name at compile time"
This reverts commit 3be9787.
1 parent 415167b commit 558d715

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed
 

‎src/cmake_config.h.in

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#define CMAKE_CONFIG_H
55

66
#define PROJECT_NAME "@PROJECT_NAME@"
7-
#define PROJECT_NAME_LOWER "@PROJECT_NAME_LOWER@"
87
#define VERSION_MAJOR @VERSION_MAJOR@
98
#define VERSION_MINOR @VERSION_MINOR@
109
#define VERSION_PATCH @VERSION_PATCH@

‎src/config.h

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#include "cmake_config.h"
1515
#elif defined (__ANDROID__) || defined (ANDROID)
1616
#define PROJECT_NAME "Minetest"
17-
#define PROJECT_NAME_LOWER "minetest"
1817
#define STATIC_SHAREDIR ""
1918
#include "android_version.h"
2019
#ifdef NDEBUG

‎src/gettext.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,9 @@ void init_gettext(const char *path, const std::string &configured_language) {
236236
#endif
237237
#endif
238238

239-
bindtextdomain(PROJECT_NAME_LOWER, path);
240-
textdomain(PROJECT_NAME_LOWER);
239+
static std::string name = lowercase(PROJECT_NAME);
240+
bindtextdomain(name.c_str(), path);
241+
textdomain(name.c_str());
241242

242243
#if defined(_WIN32)
243244
// Set character encoding for Win32

‎src/porting.cpp

+8-7
Original file line numberDiff line numberDiff line change
@@ -475,11 +475,11 @@ bool setSystemPaths()
475475
// Use ".\bin\.."
476476
path_share = std::string(buf) + "\\..";
477477

478-
// Use "C:\Documents and Settings\user\Application Data\<PROJECT_NAME_LOWER>"
478+
// Use "C:\Documents and Settings\user\Application Data\<PROJECT_NAME>"
479479
DWORD len = GetEnvironmentVariable("APPDATA", buf, sizeof(buf));
480480
FATAL_ERROR_IF(len == 0 || len > sizeof(buf), "Failed to get APPDATA");
481481

482-
path_user = std::string(buf) + DIR_DELIM PROJECT_NAME_LOWER;
482+
path_user = std::string(buf) + DIR_DELIM + lowercase(PROJECT_NAME);
483483
return true;
484484
}
485485

@@ -511,7 +511,7 @@ bool setSystemPaths()
511511
trylist.push_back(static_sharedir);
512512

513513
trylist.push_back(bindir + DIR_DELIM ".." DIR_DELIM "share"
514-
DIR_DELIM PROJECT_NAME_LOWER);
514+
DIR_DELIM + lowercase(PROJECT_NAME));
515515
trylist.push_back(bindir + DIR_DELIM "..");
516516

517517
#ifdef __ANDROID__
@@ -540,7 +540,7 @@ bool setSystemPaths()
540540

541541
#ifndef __ANDROID__
542542
path_user = std::string(getenv("HOME")) + DIR_DELIM "."
543-
PROJECT_NAME_LOWER;
543+
+ lowercase(PROJECT_NAME);
544544
#endif
545545

546546
return true;
@@ -563,8 +563,9 @@ bool setSystemPaths()
563563
}
564564
CFRelease(resources_url);
565565

566-
path_user = std::string(getenv("HOME")) +
567-
"/Library/Application Support/" PROJECT_NAME_LOWER;
566+
path_user = std::string(getenv("HOME"))
567+
+ "/Library/Application Support/"
568+
+ lowercase(PROJECT_NAME);
568569
return true;
569570
}
570571

@@ -575,7 +576,7 @@ bool setSystemPaths()
575576
{
576577
path_share = STATIC_SHAREDIR;
577578
path_user = std::string(getenv("HOME")) + DIR_DELIM "."
578-
PROJECT_NAME_LOWER;
579+
+ lowercase(PROJECT_NAME);
579580
return true;
580581
}
581582

0 commit comments

Comments
 (0)
Please sign in to comment.