aboutsummaryrefslogtreecommitdiff
path: root/src/navigator.c
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2019-01-14 19:54:26 +0000
committerHarry Jeffery <harry@exec64.co.uk>2019-01-14 19:54:26 +0000
commite1669f881ea3e17b0ea522a99acf423b200179f6 (patch)
tree1b9dceaf36bd975485ef2c079401bf83c4d32fa8 /src/navigator.c
parent8d29adeab985ba41af0f4317d3ad0be9ada3212e (diff)
downloadimv-e1669f881ea3e17b0ea522a99acf423b200179f6.tar.gz
Provide backup PATH_MAX value for Hurd
Diffstat (limited to 'src/navigator.c')
-rw-r--r--src/navigator.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/navigator.c b/src/navigator.c
index 6fa884b..e100224 100644
--- a/src/navigator.c
+++ b/src/navigator.c
@@ -8,6 +8,11 @@
#include <stdio.h>
#include <time.h>
+/* Some systems like GNU/Hurd don't define PATH_MAX */
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
+
struct imv_navigator {
int num_paths;
int cur_path;