* rdi-share/unixcomm.c (SERIAL_PREFIX): Always provide a default.

* rdi-share/hostchan.h (__unix): Hack, provide a default value.
* rdi-share/host.h (__unix): Hack, define when __NetBSD__.
* TODO: Update.
* MAINTAINERS: Update.  arm-elf builds.
This commit is contained in:
Andrew Cagney
2001-06-29 01:19:23 +00:00
parent 5e91c3b431
commit a80163397d
6 changed files with 28 additions and 32 deletions

View File

@@ -37,13 +37,14 @@
#endif
#endif
#ifdef unix /* A temporary sop to older compilers */
/* A temporary sop to older compilers */
#if defined (__NetBSD__) || defined (unix)
# ifndef __unix /* (good for long-term portability?) */
# define __unix 1
# endif
#endif
#ifdef __unix
#if defined(__unix)
/* Generic unix -- hopefully a split into other variants will not be */
/* needed. However, beware the 'bsd' test above and safe_toupper etc. */
/* which cope with backwards (pre-posix/X/open) unix compatility. */