1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 23:27:12 +00:00

MacOS and FreeBSD have similar configurations, define WAITINT because status uses int status now.

This commit is contained in:
Nick Briggs 2017-05-24 17:20:23 -07:00
parent 5412639397
commit 72c8cd14af

View File

@ -399,10 +399,11 @@ typedef signed char s_char;
/********************************************************/
/* */
/********************************************************/
#ifdef MACOSX
#if defined(MACOSX) || defined(FREEBSD)
/* MACOSX, mostly POSIX-compliant Unix */
#define NOETHER 1
#define XWINDOWS 1
#define WAITINT 1
/* JDS trial 12/22/01 #define USETIMEFN 1 */
#undef REGISTER
@ -414,7 +415,7 @@ typedef signed char s_char;
#define MAXNAMLEN NAME_MAX
#endif /* MACOSX */
#endif /* MACOSX || FREEBSD */