
Raymond Toy pushed to branch issue-373-handle-temp-files at cmucl / cmucl Commits: aef4de54 by Raymond Toy at 2025-02-19T18:30:00-08:00 Define PATH_MAX on Macos - - - - - 1 changed file: - src/lisp/os-common.c Changes: ===================================== src/lisp/os-common.c ===================================== @@ -21,6 +21,9 @@ #include <sys/utsname.h> #include <unistd.h> #include <time.h> +#if defined(DARWIN) +#include <sys/syslimits.h> +#endif #include "os.h" #include "internals.h" View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/aef4de542dbedde35088c147... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/aef4de542dbedde35088c147... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)