diff --git a/src/constants.h b/src/constants.h index 14ca58b43..21ab2a64c 100644 --- a/src/constants.h +++ b/src/constants.h @@ -28,8 +28,6 @@ with this program; if not, write to the Free Software Foundation, Inc., //#define HAXMODE 0 -#define APPNAME "minetest" - #define DEBUGFILE "debug.txt" #define WATER_ALPHA 160 diff --git a/src/porting.cpp b/src/porting.cpp index 3dd9b43c3..39b2c5705 100644 --- a/src/porting.cpp +++ b/src/porting.cpp @@ -189,12 +189,12 @@ void initializePaths() // Use "./bin/../data" path_data = std::string(buf) + "/../data"; - //path_data = std::string(buf) + "/../share/" + APPNAME; + //path_data = std::string(buf) + "/../share/" + PROJECT_NAME; - // Use "C:\Documents and Settings\user\Application Data\" + // Use "C:\Documents and Settings\user\Application Data\" len = GetEnvironmentVariable("APPDATA", buf, buflen); assert(len < buflen); - path_userdata = std::string(buf) + "/" + APPNAME; + path_userdata = std::string(buf) + "/" + PROJECT_NAME; /* Linux @@ -209,15 +209,15 @@ void initializePaths() pathRemoveFile(buf, '/'); - path_data = std::string(buf) + "/../share/" + APPNAME; - //path_data = std::string(INSTALL_PREFIX) + "/share/" + APPNAME; + path_data = std::string(buf) + "/../share/" + PROJECT_NAME; + //path_data = std::string(INSTALL_PREFIX) + "/share/" + PROJECT_NAME; if (!fs::PathExists(path_data)) { dstream<<"WARNING: data path " << path_data << " not found!"; path_data = std::string(buf) + "/../data"; dstream<<" Trying " << path_data << std::endl; } - path_userdata = std::string(getenv("HOME")) + "/." + APPNAME; + path_userdata = std::string(getenv("HOME")) + "/." + PROJECT_NAME; /* OS X @@ -243,12 +243,12 @@ void initializePaths() } CFRelease(resources_url); - path_userdata = std::string(getenv("HOME")) + "/Library/Application Support/" + APPNAME; + path_userdata = std::string(getenv("HOME")) + "/Library/Application Support/" + PROJECT_NAME; #elif defined(__FreeBSD__) - path_data = std::string(INSTALL_PREFIX) + "/share/" + APPNAME; - path_userdata = std::string(getenv("HOME")) + "/." + APPNAME; + path_data = std::string(INSTALL_PREFIX) + "/share/" + PROJECT_NAME; + path_userdata = std::string(getenv("HOME")) + "/." + PROJECT_NAME; #endif diff --git a/src/porting.h b/src/porting.h index 3cf8df594..3f9486b63 100644 --- a/src/porting.h +++ b/src/porting.h @@ -63,9 +63,9 @@ extern std::string path_data; /* Directory for storing user data. Examples: - Windows: "C:\Documents and Settings\user\Application Data\" - Linux: "~/." - Mac: "~/Library/Application Support/" + Windows: "C:\Documents and Settings\user\Application Data\" + Linux: "~/." + Mac: "~/Library/Application Support/" */ extern std::string path_userdata;