home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / tcsh / Source / config / config.tekXD88 < prev    next >
Encoding:
Text File  |  1994-02-21  |  3.6 KB  |  134 lines

  1. /*
  2.  * config.h -- configure various defines for tcsh
  3.  *
  4.  * All source files should #include this FIRST.
  5.  *
  6.  * Edit this to match your system type.
  7.  *
  8.  * Tektronix XD88/10 UTekV 3.2e config.h
  9.  * by Kaveh Ghazi (ghazi@caip.rutgers.edu)  9/23/92.
  10.  */
  11.  
  12. /****************** System dependant compilation flags ****************/
  13. /*
  14.  * POSIX    This system supports IEEE Std 1003.1-1988 (POSIX).
  15.  */
  16. #define POSIX
  17.  
  18. /*
  19.  * POSIXJOBS    This system supports the optional IEEE Std 1003.1-1988 (POSIX)
  20.  *        job control facilities.
  21.  */
  22. #define POSIXJOBS
  23.  
  24. /*
  25.  * POSIXSIGS    Use the POSIX signal facilities to emulate BSD signals.
  26.  */
  27. #undef POSIXSIGS
  28.  
  29. /*
  30.  * VFORK    This machine has a vfork().  
  31.  *        It used to be that for job control to work, this define
  32.  *        was mandatory. This is not the case any more.
  33.  *        If you think you still need it, but you don't have vfork, 
  34.  *        define this anyway and then do #define vfork fork.  
  35.  *        I do this anyway on a Sun because of yellow pages brain damage,
  36.  *        [should not be needed under 4.1]
  37.  *        and on the iris4d cause    SGI's fork is sufficiently "virtual" 
  38.  *        that vfork isn't necessary.  (Besides, SGI's vfork is weird).
  39.  *        Note that some machines eg. rs6000 have a vfork, but not
  40.  *        with the berkeley semantics, so we cannot use it there either.
  41.  */
  42. #undef VFORK
  43.  
  44. /*
  45.  * BSDJOBS    You have BSD-style job control (both process groups and
  46.  *        a tty that deals correctly
  47.  */
  48. #define BSDJOBS
  49.  
  50. /*
  51.  * BSDSIGS    You have 4.2-style signals, rather than USG style.
  52.  *        Note: POSIX systems should not define this unless they
  53.  *        have sigvec() and friends (ie: 4.3BSD-RENO, HP-UX).
  54.  */
  55. #undef BSDSIGS
  56.  
  57. /*
  58.  * BSDTIMES    You have BSD-style process time stuff (like rusage)
  59.  *        This may or may not be true.  For example, Apple Unix
  60.  *        (OREO) has BSDJOBS and BSDSIGS but not BSDTIMES.
  61.  */
  62. #undef BSDTIMES
  63.  
  64. /*
  65.  * BSDLIMIT    You have BSD-style resource limit stuff (getrlimit/setrlimit)
  66.  */
  67. #define BSDLIMIT
  68.  
  69. /*
  70.  * BSDNICE    Your system uses setpriority() instead of nice, to
  71.  *        change a processes scheduling priority
  72.  */
  73. #undef BSDNICE
  74.  
  75. /*
  76.  * TERMIO    You have struct termio instead of struct sgttyb.
  77.  *         This is usually the case for SYSV systems, where
  78.  *        BSD uses sgttyb. POSIX systems should define this
  79.  *        anyway, even though they use struct termios.
  80.  */
  81. #define TERMIO
  82.  
  83. /*
  84.  * SYSVREL    Your machine is SYSV based (HPUX, A/UX)
  85.  *        NOTE: don't do this if you are on a Pyramid -- tcsh is
  86.  *        built in a BSD universe.
  87.  *        Set SYSVREL to 1, 2, 3, or 4, depending the version of System V
  88.  *        you are running. Or set it to 0 if you are not SYSV based
  89.  */
  90. #define SYSVREL    3
  91.  
  92. /*
  93.  * YPBUGS    Work around Sun YP bugs that cause expansion of ~username
  94.  *        to send command output to /dev/null
  95.  */
  96. #undef YPBUGS
  97.  
  98. /*
  99.  * SIGVOID    Define this if your signal handlers return void.  On older
  100.  *        systems, signal returns int, but on newer ones, it returns void.
  101.  */
  102. #define SIGVOID 
  103.  
  104. /*
  105.  * HAVEDUP2    Define this if your system supports dup2().
  106.  */
  107. #define HAVEDUP2
  108.  
  109. /*
  110.  * UTHOST    Does the utmp file have a host field?
  111.  */
  112. #undef UTHOST
  113.  
  114. /*
  115.  * DIRENT    Your system has <dirent.h> instead of <sys/dir.h>
  116.  */
  117. #define DIRENT
  118.  
  119. /*
  120.  * ECHO_STYLE   Optionally change the behavior of the builtin echo
  121.  *              BOTH_ECHO: Support both bsd options (-n) and sysv escapes (\nnn)
  122.  *              BSD_ECHO:  Support only -n
  123.  *              SYSV_ECHO: Support only sysv escapes (\nnn)
  124.  *              NONE_ECHO: Pure echo.
  125.  */
  126. #define ECHO_STYLE BOTH_ECHO
  127.  
  128. /****************** local defines *********************/
  129. #define UTekV    /* There is no UTekV specific define, so I made one up */
  130. #define PW_SHADOW
  131. /****************** configurable hacks ****************/
  132. /* have been moved to config_f.h */
  133. #include "config_f.h"
  134.