From 1ec5eb1231910f22528c6bea2ac6b47f45b8c27a Mon Sep 17 00:00:00 2001 From: "SZ Lin (林上智)" Date: Mon, 24 Apr 2017 16:03:33 +0800 Subject: MAX_PATH is not defined in some platforms, most notably GNU/Hurd. Therefore, I define it here to 4096 which is the same value in limits.h. --- nnn.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nnn.c b/nnn.c index dac7e67..e24f202 100644 --- a/nnn.c +++ b/nnn.c @@ -13,6 +13,9 @@ #include #include #include +#ifdef __gnu_hurd__ +#define PATH_MAX 4096 +#endif #include #include #include -- cgit v1.2.3-70-g09d2