aboutsummaryrefslogtreecommitdiff
path: root/jim-file.c
diff options
context:
space:
mode:
Diffstat (limited to 'jim-file.c')
-rw-r--r--jim-file.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/jim-file.c b/jim-file.c
index 8c4450d..a53de58 100644
--- a/jim-file.c
+++ b/jim-file.c
@@ -58,6 +58,10 @@
#include "jim.h"
#include "jim-subcmd.h"
+#ifndef MAXPATHLEN
+#define MAXPATHLEN JIM_PATH_LEN
+#endif
+
/*
*----------------------------------------------------------------------
*
@@ -588,7 +592,7 @@ static int file_cmd_owned(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
}
#endif
-#ifdef S_IFLNK
+#if defined(HAVE_READLINK)
static int file_cmd_readlink(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
{
const char *path = Jim_GetString(argv[0], NULL);
@@ -760,7 +764,7 @@ static const jim_subcmd_type file_command_table[] = {
.maxargs = 3,
.description = "Renames a file"
},
-#ifdef S_IFLNK
+#if defined(HAVE_READLINK)
{ .cmd = "readlink",
.args = "name",
.function = file_cmd_readlink,