Fix data paths for FreeBSD
parent
de868d24c1
commit
ff35014eff
|
@ -154,10 +154,10 @@ void initializePaths()
|
||||||
/*
|
/*
|
||||||
OS X
|
OS X
|
||||||
*/
|
*/
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__) || defined(__FreeBSD__)
|
||||||
|
|
||||||
//TODO: Get path of executable. This assumes working directory is bin/
|
//TODO: Get path of executable. This assumes working directory is bin/
|
||||||
dstream<<"WARNING: Relative path not properly supported on OS X"
|
dstream<<"WARNING: Relative path not properly supported on OS X and FreeBSD"
|
||||||
<<std::endl;
|
<<std::endl;
|
||||||
path_data = std::string("../data");
|
path_data = std::string("../data");
|
||||||
path_userdata = std::string("../");
|
path_userdata = std::string("../");
|
||||||
|
@ -245,6 +245,11 @@ void initializePaths()
|
||||||
|
|
||||||
path_userdata = std::string(getenv("HOME")) + "/Library/Application Support/" + APPNAME;
|
path_userdata = std::string(getenv("HOME")) + "/Library/Application Support/" + APPNAME;
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__)
|
||||||
|
|
||||||
|
path_data = std::string(INSTALL_PREFIX) + "/share/" + APPNAME;
|
||||||
|
path_userdata = std::string(getenv("HOME")) + "/." + APPNAME;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // RUN_IN_PLACE
|
#endif // RUN_IN_PLACE
|
||||||
|
|
Loading…
Reference in New Issue