From: Fred T. Hamster Date: Thu, 2 Jun 2022 10:56:16 +0000 (-0400) Subject: mac header fix for max filename length X-Git-Tag: 2.140.136^2~49 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=fa55fa348c9cd110e19bc6292bc125e9a176e749;p=feisty_meow.git mac header fix for max filename length --- diff --git a/nucleus/library/filesystem/filename.h b/nucleus/library/filesystem/filename.h index ffbde48e..c4820ed7 100644 --- a/nucleus/library/filesystem/filename.h +++ b/nucleus/library/filesystem/filename.h @@ -29,6 +29,11 @@ class status_info; #ifdef __WIN32__ #define MAX_ABS_PATH MAX_PATH #else + #ifdef __APPLE__ + #include + #else + #include + #endif #define MAX_ABS_PATH PATH_MAX #endif /*