]> git.eshelyaron.com Git - emacs.git/commitdiff
Check for __mc68000__ instead of __m68k__, the latter never being defined
authorAndreas Schwab <schwab@suse.de>
Sat, 2 Feb 2002 23:05:59 +0000 (23:05 +0000)
committerAndreas Schwab <schwab@suse.de>
Sat, 2 Feb 2002 23:05:59 +0000 (23:05 +0000)
on GNU/Linux.

src/ChangeLog
src/s/gnu-linux.h

index 40e9c51caf55eaf9fa943178479ba9f0030661b2..ca75452db36cf3acf3d3e95373ff2f975bde2926 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-03  Andreas Schwab  <schwab@suse.de>
+
+       * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
+       latter never being defined on GNU/Linux.
+
 2002-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * xfaces.c (realize_default_face): Don't set the weight and slant
index 3623fd7e70202255f683328b15727c9159131d18..3a7c05eee34d6fa5f18f704839b963c51ed85aa6 100644 (file)
@@ -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