aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1998-12-16 21:43:35 +0000
committerKarl Heuer1998-12-16 21:43:35 +0000
commita6851a5bab3e197de98bbcbef15a7218b1f306c5 (patch)
tree9d0d262acb8f64634772c4ce41e20fc25a875c7f /src
parenta187fb8085cb686d7b1df0da990804feed23b78e (diff)
downloademacs-a6851a5bab3e197de98bbcbef15a7218b1f306c5.tar.gz
emacs-a6851a5bab3e197de98bbcbef15a7218b1f306c5.zip
(LIBS_MACHINE): Leave this blank if irix6.5.
(C_SWITCH_MACHINE): New value for irix6.5.
Diffstat (limited to 'src')
-rw-r--r--src/m/iris4d.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/m/iris4d.h b/src/m/iris4d.h
index 129206d0e80..85d0ea90221 100644
--- a/src/m/iris4d.h
+++ b/src/m/iris4d.h
@@ -134,7 +134,11 @@ Boston, MA 02111-1307, USA. */
134#if defined(__GNUC__) && defined(_ABIN32) 134#if defined(__GNUC__) && defined(_ABIN32)
135#define LIBS_MACHINE 135#define LIBS_MACHINE
136#else 136#else
137#ifndef IRIX6_5
137#define LIBS_MACHINE -lmld 138#define LIBS_MACHINE -lmld
139#else
140#define LIBS_MACHINE
141#endif
138#endif 142#endif
139#define LIBS_DEBUG 143#define LIBS_DEBUG
140 144
@@ -187,7 +191,11 @@ Boston, MA 02111-1307, USA. */
187 that we can't fix without breaking other machines. */ 191 that we can't fix without breaking other machines. */
188#ifdef IRIX_FORCE_32_BITS 192#ifdef IRIX_FORCE_32_BITS
189#ifdef THIS_IS_MAKEFILE 193#ifdef THIS_IS_MAKEFILE
194#ifndef IRIX6_5
190#define C_SWITCH_MACHINE -32 195#define C_SWITCH_MACHINE -32
196#else
197#define C_SWITCH_MACHINE -n32 -G0
198#endif
191#endif 199#endif
192#endif 200#endif
193 201