summaryrefslogtreecommitdiffstats
path: root/txr.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-05-04 06:17:15 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-05-04 06:17:15 -0700
commit8ac435caf03bd91f4f73e62e57bcc9a2f31eaf4c (patch)
tree854a1cb903cedd928715ee2f169648c67a864856 /txr.c
parent742a7bf9408b976c84ad947f9b39637f184482fa (diff)
downloadtxr-8ac435caf03bd91f4f73e62e57bcc9a2f31eaf4c.tar.gz
txr-8ac435caf03bd91f4f73e62e57bcc9a2f31eaf4c.tar.bz2
txr-8ac435caf03bd91f4f73e62e57bcc9a2f31eaf4c.zip
bugfix: correcly obtain self path on Solaris.
* configure: Add detection for getexecname. * sysif.c (getcwd_wrap): Change static function to external. * sysif.h (getcwd_wrap): Declared. * txr.c (get_self_path): New implementation for Solaris using getexecname, which requires us to prepend the current directory name if the result is a relative path.
Diffstat (limited to 'txr.c')
-rw-r--r--txr.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/txr.c b/txr.c
index 428a0ff0..197f6515 100644
--- a/txr.c
+++ b/txr.c
@@ -243,6 +243,14 @@ static val get_self_path(void)
return nil;
return string_utf8(self);
}
+#elif HAVE_GETEXECNAME
+static val get_self_path(void)
+{
+ val execname = string_utf8(getexecname());
+ if (car(execname) == chr('/'))
+ return execname;
+ return format(nil, lit("~a/~a"), getcwd_wrap(), execname, nao);
+}
#else
static val get_self_path(void)
{