home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / emacs-19.16 / src / s / hpux8.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-30  |  1.7 KB  |  50 lines

  1. /* system description file for hpux version 8.
  2.    This contains changes that were suggested "for the hp700".
  3.    They were not needed for the 800.
  4.    Our conjecture that they are needed for hpux version 8,
  5.    which is what runs on the 700.  */
  6.  
  7. #include "hpux.h"
  8.  
  9. #define HPUX8
  10.  
  11. /* dob@inel.gov says HPUX 8.07 needs this.  He was using X11R5, I think.  */
  12. #define LIBX11_SYSTEM -lXext
  13.  
  14. #define LIB_X11_LIB -L/usr/lib/X11R5 -L/usr/lib/X11R4 -lX11
  15. #define C_SWITCH_SYSTEM -I/usr/include/X11R5 -I/usr/include/X11R4
  16.  
  17. /* Don't use shared libraries.  unexec doesn't handle them.
  18.    Note GCC automatically passes -a archive to ld, and it has its own
  19.    conflicting -a.  */
  20. #ifdef __GNUC__
  21. #define LD_SWITCH_SYSTEM  -L/usr/lib/X11R5 -L/usr/lib/X11R4 -Xlinker -a -Xlinker archive
  22.  
  23. /* No need to specify roundabout way of linking temacs.  */
  24. #define ORDINARY_LINK
  25. #else
  26. #define LD_SWITCH_SYSTEM -a archive -L/usr/lib/X11R5 -L/usr/lib/X11R4
  27. #endif
  28.  
  29. /* Specify compiler options for compiling oldXMenu.  */
  30. #define OLDXMENU_OPTIONS CFLAGS="-I/usr/include/X11R5 -I/usr/include/X11R4"
  31.  
  32. /* Some hpux 8 machines seem to have TIOCGWINSZ,
  33.    and none have sioctl.h, so might as well define this.  */
  34. #define NO_SIOCTL_H
  35.  
  36. #if 0 /* autoconf should be detecting the presence or absence of 
  37.      random and srandom now.  */
  38. /* If you use X11R4 you must define this.  If you use
  39.    X11R5 you must comment this out */
  40. /* #define HAVE_RANDOM */
  41. #define random foo_random
  42. #define srandom foo_srandom
  43. #endif
  44.  
  45. #if 0  /* This seems to be spurious.  */
  46. /* "X11R5" on hpux8 doesn't have this function, which is supposed to exist
  47.    in X11R5.  Maybe things will work if we just don't call it.  */
  48. #define NO_XRM_SET_DATABASE
  49. #endif
  50.