From: SZ Lin (林上智) Date: Mon, 24 Apr 2017 08:03:33 +0000 (+0800) Subject: MAX_PATH is not defined in some platforms, most notably GNU/Hurd. Therefore, I define... X-Git-Tag: v1.1~23^2 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=1ec5eb1231910f22528c6bea2ac6b47f45b8c27a;p=nnn.git 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. --- diff --git a/nnn.c b/nnn.c index dac7e676..e24f202c 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