Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/gnu/usr.bin/gzip Need to check for __m68k__ with the m68k EL...



details:   https://anonhg.NetBSD.org/src/rev/fc1b0b063f5f
branches:  trunk
changeset: 500022:fc1b0b063f5f
user:      scw <scw%NetBSD.org@localhost>
date:      Sun Dec 03 17:24:00 2000 +0000

description:
Need to check for __m68k__ with the m68k ELF toolchain...

diffstat:

 gnu/usr.bin/gzip/match.S |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r dc4f0d86efcc -r fc1b0b063f5f gnu/usr.bin/gzip/match.S
--- a/gnu/usr.bin/gzip/match.S  Sun Dec 03 15:51:53 2000 +0000
+++ b/gnu/usr.bin/gzip/match.S  Sun Dec 03 17:24:00 2000 +0000
@@ -9,7 +9,7 @@
  * Kristoffer Eriksson <ske%pkmab.se@localhost>
  */
  
-/* $Id: match.S,v 1.7 1999/11/10 16:54:10 thorpej Exp $ */
+/* $Id: match.S,v 1.8 2000/12/03 17:24:00 scw Exp $ */
 
 /* Preprocess with -DNO_UNDERLINE if your C compiler does not prefix
  * external symbols with an underline character '_'.
@@ -158,7 +158,8 @@
 
 /* ======================== 680x0 version ================================= */
 
-#if defined(m68k)||defined(mc68k)||defined(__mc68000__)||defined(__MC68000__)
+#if defined(m68k)||defined(mc68k)||defined(__mc68000__)||\
+    defined(__MC68000__)||defined(__m68k__)
 #  ifndef mc68000
 #    define mc68000
 #  endif



Home | Main Index | Thread Index | Old Index