aboutsummaryrefslogtreecommitdiffstats
path: root/src/s/gnu-linux.h
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-20 19:45:24 +0000
committerGerd Moellmann2000-11-20 19:45:24 +0000
commita8f77aaa34829ac461aca8c3715fa8fed5237d92 (patch)
treec886de1c7fb7b4e4c8711d0d1bdd5518a2c9f40a /src/s/gnu-linux.h
parentfb39bbbda1462ac3209d28b6e1af80381c1c89bf (diff)
downloademacs-a8f77aaa34829ac461aca8c3715fa8fed5237d92.tar.gz
emacs-a8f77aaa34829ac461aca8c3715fa8fed5237d92.zip
Don't use `#cpu'.
Diffstat (limited to 'src/s/gnu-linux.h')
-rw-r--r--src/s/gnu-linux.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h
index d7bd8b96645..786db29155d 100644
--- a/src/s/gnu-linux.h
+++ b/src/s/gnu-linux.h
@@ -329,6 +329,10 @@ Boston, MA 02111-1307, USA. */
329 jmp_buf. */ 329 jmp_buf. */
330/* m68k and alpha aren't tested, but there are Debian packages for SCM 330/* m68k and alpha aren't tested, but there are Debian packages for SCM
331 and/or Guile on them, so the technique must work. */ 331 and/or Guile on them, so the technique must work. */
332#if #cpu (i386) || #cpu (sparc) || #cpu (m68k) || #cpu (alpha) 332
333/* Don't use #cpu here since in newest development versions of GCC,
334 we must call cpp with -traditional, and that disables #cpu. */
335
336#if defined __i386__ || defined __sparc__ || defined __m68k__ || defined __alpha__
333#define GC_SETJMP_WORKS 1 337#define GC_SETJMP_WORKS 1
334#endif 338#endif