Mercurial > emacs
changeset 43071:768349ffc7f7
Check for __mc68000__ instead of __m68k__, the latter never being defined
on GNU/Linux.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sat, 02 Feb 2002 23:02:42 +0000 |
parents | f1106407a9cc |
children | 6a9c037fa34a |
files | src/s/gnu-linux.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/s/gnu-linux.h Sat Feb 02 18:16:37 2002 +0000 +++ b/src/s/gnu-linux.h Sat Feb 02 23:02:42 2002 +0000 @@ -338,7 +338,7 @@ /* Don't use #cpu here since in newest development versions of GCC, we must call cpp with -traditional, and that disables #cpu. */ -#if defined __i386__ || defined __sparc__ || defined __m68k__ || defined __alpha__ +#if defined __i386__ || defined __sparc__ || defined __mc68000__ || defined __alpha__ #define GC_SETJMP_WORKS 1 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS #endif