diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-12-16 21:43:35 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-12-16 21:43:35 +0000 |
commit | a6851a5bab3e197de98bbcbef15a7218b1f306c5 (patch) | |
tree | 9d0d262acb8f64634772c4ce41e20fc25a875c7f /src/m | |
parent | a187fb8085cb686d7b1df0da990804feed23b78e (diff) | |
download | emacs-a6851a5bab3e197de98bbcbef15a7218b1f306c5.tar.gz |
(LIBS_MACHINE): Leave this blank if irix6.5.
(C_SWITCH_MACHINE): New value for irix6.5.
Diffstat (limited to 'src/m')
-rw-r--r-- | src/m/iris4d.h | 8 |
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. */ #if defined(__GNUC__) && defined(_ABIN32) #define LIBS_MACHINE #else +#ifndef IRIX6_5 #define LIBS_MACHINE -lmld +#else +#define LIBS_MACHINE +#endif #endif #define LIBS_DEBUG @@ -187,7 +191,11 @@ Boston, MA 02111-1307, USA. */ that we can't fix without breaking other machines. */ #ifdef IRIX_FORCE_32_BITS #ifdef THIS_IS_MAKEFILE +#ifndef IRIX6_5 #define C_SWITCH_MACHINE -32 +#else +#define C_SWITCH_MACHINE -n32 -G0 +#endif #endif #endif |