home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / cli / tcsh.zoo / source / config.h next >
C/C++ Source or Header  |  1991-11-10  |  3KB  |  112 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.  
  9. #define __MINT__
  10.  
  11. /****************** System dependant compilation flags ****************/
  12. /*
  13.  * POSIX    This system supports IEEE Std 1003.1-1988 (POSIX).
  14.  */
  15. #undef POSIX
  16.  
  17. /*
  18.  * POSIXJOBS    This system supports the optional IEEE Std 1003.1-1988 (POSIX)
  19.  *        job control facilities.
  20.  */
  21. #undef POSIXJOBS
  22.  
  23. /*
  24.  * VFORK    This machine has a vfork().  
  25.  *        It used to be that for job control to work, this define
  26.  *        was mandatory. This is not the case any more.
  27.  *        If you think you still need it, but you don't have vfork, 
  28.  *        define this anyway and then do #define vfork fork.  
  29.  *        I do this anyway on a Sun because of yellow pages brain damage,
  30.  *        [should not be needed under 4.1]
  31.  *        and on the iris4d cause    SGI's fork is sufficiently "virtual" 
  32.  *        that vfork isn't necessary.  (Besides, SGI's vfork is weird).
  33.  *        Note that some machines eg. rs6000 have a vfork, but not
  34.  *        with the berkeley semantics, so we cannot use it there either.
  35.  */
  36. #define VFORK
  37.  
  38. /*
  39.  * BSDJOBS    You have BSD-style job control (both process groups and
  40.  *        a tty that deals correctly
  41.  */
  42. #define BSDJOBS
  43.  
  44. /*
  45.  * BSDSIGS    You have 4.2-style signals, rather than USG style.
  46.  *        Note: POSIX systems should not define this unless they
  47.  *        have sigvec() and friends (ie: 4.3BSD-RENO, HP-UX).
  48.  */
  49. #define BSDSIGS
  50.  
  51. /*
  52.  * BSDTIMES    You have BSD-style process time stuff (like rusage)
  53.  *        This may or may not be true.  For example, Apple Unix
  54.  *        (OREO) has BSDJOBS and BSDSIGS but not BSDTIMES.
  55.  */
  56. #define BSDTIMES
  57.  
  58. /*
  59.  * BSDNICE    Your system uses setpriority() instead of nice, to
  60.  *        change a processes scheduling priority
  61.  */
  62. #undef BSDNICE
  63.  
  64. /*
  65.  * TERMIO    You have struct termio instead of struct sgttyb.
  66.  *         This is usually the case for SVID systems, where
  67.  *        BSD uses sgttyb. POSIX systems should define this
  68.  *        anyway, even though they use struct termios.
  69.  */
  70. #undef TERMIO
  71.  
  72. /*
  73.  * SVID        Your machine is SVID complient (Sys V, HPUX, A/UX)
  74.  *        NOTE: don't do this if you are on a Pyramid -- tcsh is
  75.  *        built in a BSD universe.
  76.  *        Set SVID to 1, 2, or 3, depending the version of System V
  77.  *        you are running. Or set it to 0 if you are not SVID based
  78.  */
  79. #define SVID    0
  80.  
  81. /*
  82.  * YPBUGS    Work around Sun YP bugs that cause expansion of ~username
  83.  *        to send command output to /dev/null
  84.  *        do this for all flavors of SunOS and anything else that has YP.
  85.  */
  86. #undef YPBUGS
  87.  
  88. /*
  89.  * SIGVOID    Define this if your signal handlers return void.  On older
  90.  *        systems, signal returns int, but on newer ones, it returns void.
  91.  */
  92. #define SIGVOID 
  93.  
  94. /*
  95.  * HAVEDUP2    Define this if your system supports dup2().
  96.  */
  97. #define HAVEDUP2
  98.  
  99. /*
  100.  * UTHOST    Does the utmp file have a host field?
  101.  */
  102. #define UTHOST
  103.  
  104. /*
  105.  * DIRENT    Your system has <dirent.h> instead of <sys/dir.h>
  106.  */
  107. #define DIRENT
  108. /****************** local defines *********************/
  109. /****************** configurable hacks ****************/
  110. /* have been moved to config_f.h */
  111. #include "config_f.h"
  112.