From c6c7b99fadba635b03653c784c5c03a3edd1ac25 Mon Sep 17 00:00:00 2001 From: "Anthony J. Bentley" Date: Fri, 10 Oct 2014 03:48:52 -0600 Subject: [PATCH] PATH_MAX is not exactly portable. Hack around it for now. --- src/asm/fstack.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/asm/fstack.c b/src/asm/fstack.c index a8d0ade5..79da9ccc 100644 --- a/src/asm/fstack.c +++ b/src/asm/fstack.c @@ -19,6 +19,10 @@ #include "extern/err.h" #include "extern/strl.h" +#ifndef PATH_MAX +#define PATH_MAX 256 +#endif + /* * RGBAsm - FSTACK.C (FileStack routines) *