home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / e20313sr.zip / emacs / 20.3.1 / src / s / aix4-1.h < prev    next >
C/C++ Source or Header  |  1999-06-27  |  1KB  |  39 lines

  1. #define AIX4_1 
  2.  
  3. #include "aix4.h"
  4.  
  5. /* olson@mcs.anl.gov says -li18n is needed by -lXm.  */
  6. #undef LIB_MOTIF
  7. #define LIB_MOTIF -lXm -li18n
  8.  
  9. #ifdef __GNUC__
  10. #undef _NO_PROTO
  11. #endif
  12.  
  13. /* For AIX, it turns out compiling emacs under AIX 3.2.4 REQUIRES "cc -g"
  14.    because "cc -O" crashes.  Under AIX 3.2.5, "cc -O" is required because
  15.    "cc -g" crashes. Go figure.  --floppy@merlin.mit.edu.
  16.    4.1 seems to need -g again. -- larry@vaquita.mitra.com.  */
  17. /* David Edelsohn <dje@watson.ibm.com> says that this actually depends
  18.    on the version of XLC, which can't be predicted from the system version.
  19.    What a mess!  */
  20. #ifndef __GNUC__
  21. #undef C_DEBUG_SWITCH
  22. #undef C_OPTIMIZE_SWITCH
  23. #define C_DEBUG_SWITCH -g
  24. #endif
  25.  
  26. /* The X internationalization stuff is still broken in AIX 4.1, so
  27.    don't #undef X11R5_INHIBIT_I18N
  28.    It still causes shift, ctrl, and alt to resend the last character,
  29.    if it was a control character like tab, enter, backspace, or ESC.
  30.    Bill_Mann @ PraxisInt.com   */
  31. /* #undef X11R5_INHIBIT_I18N */
  32.  
  33. #ifndef HAVE_LIBXMU
  34. #define LIBXMU
  35.  
  36. /* Unfortunately without libXmu we cannot support EditRes.  */
  37. #define NO_EDITRES
  38. #endif
  39.