# HG changeset patch # User Andreas Schwab # Date 1012690962 0 # Node ID 768349ffc7f77037488c85a13a186f36d088aa24 # Parent f1106407a9cc2c712b3ee2b84d72db7471d91c51 Check for __mc68000__ instead of __m68k__, the latter never being defined on GNU/Linux. diff -r f1106407a9cc -r 768349ffc7f7 src/s/gnu-linux.h --- 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