mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
David Carlier implemented SDL_GetBasePath() for OpenBSD
This commit is contained in:
parent
1fb30db048
commit
4249f4666c
@ -33,7 +33,7 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
||||||
#ifdef __FREEBSD__
|
#if defined(__FREEBSD__) || defined(__OPENBSD__)
|
||||||
#include <sys/sysctl.h>
|
#include <sys/sysctl.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -90,7 +90,26 @@ SDL_GetBasePath(void)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#elif defined(__SOLARIS__)
|
#endif
|
||||||
|
#if defined(__OPENBSD__)
|
||||||
|
char **retvalargs;
|
||||||
|
size_t len;
|
||||||
|
const int mib[] = { CTL_KERN, KERN_PROC_ARGS, getpid(), KERN_PROC_ARGV };
|
||||||
|
if (sysctl(mib, 4, NULL, &len, NULL, 0) != -1) {
|
||||||
|
retvalargs = SDL_malloc(len);
|
||||||
|
if (!retvalargs) {
|
||||||
|
SDL_OutOfMemory();
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
sysctl(mib, 4, retvalargs, &len, NULL, 0);
|
||||||
|
retval = SDL_malloc(PATH_MAX + 1);
|
||||||
|
if (retval)
|
||||||
|
realpath(retvalargs[0], retval);
|
||||||
|
|
||||||
|
SDL_free(retvalargs);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#if defined(__SOLARIS__)
|
||||||
const char *path = getexecname();
|
const char *path = getexecname();
|
||||||
if ((path != NULL) && (path[0] == '/')) { /* must be absolute path... */
|
if ((path != NULL) && (path[0] == '/')) { /* must be absolute path... */
|
||||||
retval = SDL_strdup(path);
|
retval = SDL_strdup(path);
|
||||||
|
Loading…
Reference in New Issue
Block a user