From 073ffd04238d8c7068ea14a44e561d48ca28cd11 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Thu, 12 Oct 2017 23:48:28 -0500 Subject: [PATCH] roken: Make sure we have MAX_PATH --- lib/roken/roken-common.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/roken/roken-common.h b/lib/roken/roken-common.h index 4766538a0..9810862ac 100644 --- a/lib/roken/roken-common.h +++ b/lib/roken/roken-common.h @@ -166,6 +166,10 @@ #endif #endif +#ifndef MAX_PATH +#define MAX_PATH PATH_MAX +#endif + #ifndef RETSIGTYPE #define RETSIGTYPE void #endif