home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume23 / rc / part01 / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-18  |  546 b   |  39 lines

  1. /*
  2.  * Suggested settings for Sun, NeXT and sgi (machines here at TAMU):
  3.  */
  4.  
  5. #ifdef NeXT
  6. #define NODIRENT
  7. #define    PROTECT_ENV
  8. #define PROTECT_JOB
  9. #define NOCMDARG
  10. #endif
  11.  
  12. #ifdef sgi
  13. #define NOSIGCLD
  14. #define    PROTECT_ENV
  15. #endif
  16.  
  17. #ifdef sun
  18. #define PROTECT_ENV
  19. #endif
  20.  
  21. /*
  22.  * Suggested settings for HP300 running 4.3BSD-utah (DWS):
  23.  */
  24.  
  25. #if defined(hp300) && !defined(hpux)
  26. #define NODIRENT
  27. #define NOCMDARG
  28. #define DEFAULTINTERP "/bin/sh"
  29. #define PROTECT_ENV
  30. #endif
  31.  
  32. /*
  33.  * Suggested settings for Ultrix
  34.  */
  35.  
  36. #ifdef ultrix
  37. #define PROTECT_ENV
  38. #endif
  39.