Add support for some BSDs and Solaris to SDL_GetBasePath().
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
diff --git a/src/filesystem/unix/SDL_sysfilesystem.c b/src/filesystem/unix/SDL_sysfilesystem.c
index 09db1e5..1798f3e 100644
--- a/src/filesystem/unix/SDL_sysfilesystem.c
+++ b/src/filesystem/unix/SDL_sysfilesystem.c
@@ -26,9 +26,14 @@
/* System dependent filesystem routines */
#include <unistd.h>
+#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
+#ifdef __FREEBSD__
+#include <sys/sysctl.h>
+#endif
+
#include "SDL_error.h"
#include "SDL_stdinc.h"
#include "SDL_filesystem.h"
@@ -73,9 +78,41 @@ SDL_GetBasePath(void)
{
char *retval = NULL;
+#if defined(__FREEBSD__)
+ char fullpath[PATH_MAX];
+ size_t buflen = sizeof (fullpath);
+ int mib[4];
+ mib[0] = CTL_KERN;
+ mib[1] = KERN_PROC;
+ mib[2] = KERN_PROC_PATHNAME;
+ mib[3] = -1;
+ if (sysctl(mib, 4, fullpath, &buflen, NULL, 0) != -1) {
+ retval = SDL_strdup(fullpath);
+ if (!retval) {
+ SDL_OutOfMemory();
+ return NULL;
+ }
+ }
+#elif defined(__SOLARIS__)
+ const char *path = getexecname();
+ if ((path != NULL) && (path[0] == '/')) { /* must be absolute path... */
+ retval = SDL_strdup(fullpath);
+ if (!retval) {
+ SDL_OutOfMemory();
+ return NULL;
+ }
+ }
+#endif
+
/* is a Linux-style /proc filesystem available? */
- if (access("/proc", F_OK) == 0) {
- retval = readSymLink("/proc/self/exe");
+ if (!retval && (access("/proc", F_OK) == 0)) {
+ #if defined(__FREEBSD__)
+ retval = readSymLink("/proc/curproc/file");
+ #elif defined(__NETBSD__)
+ retval = readSymLink("/proc/curproc/exe");
+ #else
+ retval = readSymLink("/proc/self/exe"); /* linux. */
+ #endif
if (retval == NULL) {
/* older kernels don't have /proc/self ... try PID version... */
char path[64];