Skip to content

Commit

Permalink
Revert "Only lowercase project name at compile time"
Browse files Browse the repository at this point in the history
This reverts commit 3be9787.
  • Loading branch information
sfan5 committed Apr 27, 2015
1 parent 415167b commit 558d715
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
1 change: 0 additions & 1 deletion src/cmake_config.h.in
Expand Up @@ -4,7 +4,6 @@
#define CMAKE_CONFIG_H

#define PROJECT_NAME "@PROJECT_NAME@"
#define PROJECT_NAME_LOWER "@PROJECT_NAME_LOWER@"
#define VERSION_MAJOR @VERSION_MAJOR@
#define VERSION_MINOR @VERSION_MINOR@
#define VERSION_PATCH @VERSION_PATCH@
Expand Down
1 change: 0 additions & 1 deletion src/config.h
Expand Up @@ -14,7 +14,6 @@
#include "cmake_config.h"
#elif defined (__ANDROID__) || defined (ANDROID)
#define PROJECT_NAME "Minetest"
#define PROJECT_NAME_LOWER "minetest"
#define STATIC_SHAREDIR ""
#include "android_version.h"
#ifdef NDEBUG
Expand Down
5 changes: 3 additions & 2 deletions src/gettext.cpp
Expand Up @@ -236,8 +236,9 @@ void init_gettext(const char *path, const std::string &configured_language) {
#endif
#endif

bindtextdomain(PROJECT_NAME_LOWER, path);
textdomain(PROJECT_NAME_LOWER);
static std::string name = lowercase(PROJECT_NAME);
bindtextdomain(name.c_str(), path);
textdomain(name.c_str());

#if defined(_WIN32)
// Set character encoding for Win32
Expand Down
15 changes: 8 additions & 7 deletions src/porting.cpp
Expand Up @@ -475,11 +475,11 @@ bool setSystemPaths()
// Use ".\bin\.."
path_share = std::string(buf) + "\\..";

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

path_user = std::string(buf) + DIR_DELIM PROJECT_NAME_LOWER;
path_user = std::string(buf) + DIR_DELIM + lowercase(PROJECT_NAME);
return true;
}

Expand Down Expand Up @@ -511,7 +511,7 @@ bool setSystemPaths()
trylist.push_back(static_sharedir);

trylist.push_back(bindir + DIR_DELIM ".." DIR_DELIM "share"
DIR_DELIM PROJECT_NAME_LOWER);
DIR_DELIM + lowercase(PROJECT_NAME));
trylist.push_back(bindir + DIR_DELIM "..");

#ifdef __ANDROID__
Expand Down Expand Up @@ -540,7 +540,7 @@ bool setSystemPaths()

#ifndef __ANDROID__
path_user = std::string(getenv("HOME")) + DIR_DELIM "."
PROJECT_NAME_LOWER;
+ lowercase(PROJECT_NAME);
#endif

return true;
Expand All @@ -563,8 +563,9 @@ bool setSystemPaths()
}
CFRelease(resources_url);

path_user = std::string(getenv("HOME")) +
"/Library/Application Support/" PROJECT_NAME_LOWER;
path_user = std::string(getenv("HOME"))
+ "/Library/Application Support/"
+ lowercase(PROJECT_NAME);
return true;
}

Expand All @@ -575,7 +576,7 @@ bool setSystemPaths()
{
path_share = STATIC_SHAREDIR;
path_user = std::string(getenv("HOME")) + DIR_DELIM "."
PROJECT_NAME_LOWER;
+ lowercase(PROJECT_NAME);
return true;
}

Expand Down

0 comments on commit 558d715

Please sign in to comment.