diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-04-28 21:13:26 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-04-28 14:13:26 -0700 |
commit | f60d62486ed0f3555859e1531c512b91ae6165e3 (patch) | |
tree | 5a8b61cf4c80eaace0afa9545ac1c4acd9639a99 /gcc | |
parent | bf931ec8298555022f74a00767dd00007a41cbf4 (diff) | |
download | gcc-f60d62486ed0f3555859e1531c512b91ae6165e3.zip gcc-f60d62486ed0f3555859e1531c512b91ae6165e3.tar.gz gcc-f60d62486ed0f3555859e1531c512b91ae6165e3.tar.bz2 |
Patch from Shigeya Suzuki to fix BSD/OS 3.1 build failure.
* ginclude/stddef.h: Add check for _MACHINE_ANSI_H_ for BSD/OS
when undefining macros at the end.
From-SVN: r19472
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/ginclude/stddef.h | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca79fe8..2ae95fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ Tue Apr 28 17:53:33 1998 Jim Wilson <wilson@cygnus.com> + * ginclude/stddef.h: Add check for _MACHINE_ANSI_H_ for BSD/OS + when undefining macros at the end. + * expr.c (expand_builtin, case BUILT_IN_MEMSET): Break if either val or len has TREE_SIDE_EFFECTS set. diff --git a/gcc/ginclude/stddef.h b/gcc/ginclude/stddef.h index 0fb5743..615052e 100644 --- a/gcc/ginclude/stddef.h +++ b/gcc/ginclude/stddef.h @@ -284,7 +284,9 @@ typedef __WINT_TYPE__ wint_t; /* In 4.3bsd-net2, leave these undefined to indicate that size_t, etc. are already defined. */ -#ifdef _ANSI_H_ +/* BSD/OS 3.1 requires the MACHINE_ANSI_H check here. FreeBSD 2.x apparently + does not, even though there is a check for MACHINE_ANSI_H above. */ +#if defined(_ANSI_H_) || (defined(__bsdi__) && defined(_MACHINE_ANSI_H_)) /* The references to _GCC_PTRDIFF_T_, _GCC_SIZE_T_, and _GCC_WCHAR_T_ are probably typos and should be removed before 2.8 is released. */ #ifdef _GCC_PTRDIFF_T_ @@ -312,7 +314,7 @@ typedef __WINT_TYPE__ wint_t; #undef _WCHAR_T_ #undef _BSD_WCHAR_T_ #endif -#endif /* _ANSI_H_ */ +#endif /* _ANSI_H_ || ( __bsdi__ && _MACHINE_ANSI_H_ ) */ #endif /* __sys_stdtypes_h */ |