From ee466d0b94320d5041dd34a2659d93c5c900ee3a Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sat, 2 Feb 2002 23:05:59 +0000 Subject: [PATCH] Check for __mc68000__ instead of __m68k__, the latter never being defined on GNU/Linux. --- src/ChangeLog | 5 +++++ src/s/gnu-linux.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 40e9c51caf5..ca75452db36 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-02-03 Andreas Schwab + + * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the + latter never being defined on GNU/Linux. + 2002-02-02 Eli Zaretskii * xfaces.c (realize_default_face): Don't set the weight and slant diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index 3623fd7e702..3a7c05eee34 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h @@ -338,7 +338,7 @@ Boston, MA 02111-1307, USA. */ /* 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 -- 2.39.2