Merge pull request #9665 from devnexen/get_executable_path_fix
get_executable_path slight change to make it work under OpenBSD
This commit is contained in:
commit
40ab9adec3
1 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@
|
||||||
#include <mach-o/dyld.h>
|
#include <mach-o/dyld.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __FreeBSD__
|
#if defined(__FreeBSD__) || defined(__OpenBSD__)
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#endif
|
#endif
|
||||||
#include "global_config.h"
|
#include "global_config.h"
|
||||||
|
@ -532,7 +532,7 @@ String OS_Unix::get_executable_path() const {
|
||||||
return OS::get_executable_path();
|
return OS::get_executable_path();
|
||||||
}
|
}
|
||||||
return b;
|
return b;
|
||||||
#elif defined(__FreeBSD__)
|
#elif defined(__FreeBSD__) || defined(__OpenBSD__)
|
||||||
char resolved_path[MAXPATHLEN];
|
char resolved_path[MAXPATHLEN];
|
||||||
|
|
||||||
realpath(OS::get_executable_path().utf8().get_data(), resolved_path);
|
realpath(OS::get_executable_path().utf8().get_data(), resolved_path);
|
||||||
|
|
Loading…
Add table
Reference in a new issue