home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Shells / zsh-3.0.5-MIHS / src / acconfig.h next >
Encoding:
C/C++ Source or Header  |  1997-06-03  |  5.4 KB  |  179 lines

  1.  
  2. /***** begin user configuration section *****/
  3.  
  4. /* Define this to be the location of your password file */
  5. #define PASSWD_FILE "/etc/passwd"
  6.  
  7. /* Define this to be the name of your NIS/YP password *
  8.  * map (if applicable)                                */
  9. #define PASSWD_MAP "passwd.byname"
  10.  
  11. /* Define to 1 if you want user names to be cached */
  12. #define CACHE_USERNAMES 1
  13.  
  14. /* Define to 1 if system supports job control */
  15. #define JOB_CONTROL 1
  16.  
  17. /* Define this if you use "suspended" instead of "stopped" */
  18. #define USE_SUSPENDED 1
  19.  
  20. /* The default history buffer size in lines */
  21. #define DEFAULT_HISTSIZE 30
  22.  
  23. /* The default editor for the fc builtin */
  24. #define DEFAULT_FCEDIT "vi"
  25.  
  26. /* The default prefix for temporary files */
  27. #define DEFAULT_TMPPREFIX "/tmp/zsh"
  28.  
  29.  
  30. /***** end of user configuration section            *****/
  31. /***** shouldn't have to change anything below here *****/
  32. @TOP@
  33.  
  34. /* The global file to source absolutely first whenever zsh is run; *
  35.  * if undefined, don't source anything                             */
  36. #undef GLOBAL_ZSHENV
  37.  
  38. /* The global file to source whenever zsh is run; *
  39.  * if undefined, don't source anything            */
  40. #undef GLOBAL_ZSHRC
  41.  
  42. /* The global file to source whenever zsh is run as a login shell; *
  43.  * if undefined, don't source anything                             */
  44. #undef GLOBAL_ZLOGIN
  45.  
  46. /* The global file to source whenever zsh is run as a login shell, *
  47.  * before zshrc is read; if undefined, don't source anything       */
  48. #undef GLOBAL_ZPROFILE
  49.  
  50. /* The global file to source whenever zsh was run as a login shell.  *
  51.  * This is sourced right before exiting.  If undefined, don't source *
  52.  * anything                                                          */
  53. #undef GLOBAL_ZLOGOUT
  54.  
  55. /* Define to 1 if compiler could initialise a union */
  56. #undef HAVE_UNION_INIT
  57.  
  58. /* Define to 1 if compiler incorrectly cast signed to unsigned */
  59. #undef BROKEN_SIGNED_TO_UNSIGNED_CASTING
  60.  
  61. /* Define if your system defines TIOCGWINSZ in sys/ioctl.h.  */
  62. #undef GWINSZ_IN_SYS_IOCTL
  63.  
  64. /* Define to 1 if you have NIS */
  65. #undef HAVE_NIS
  66.  
  67. /* Define to 1 if you have NISPLUS */
  68. #undef HAVE_NIS_PLUS
  69.  
  70. /* Define to 1 if you have RFS superroot directory. */
  71. #undef HAVE_SUPERROOT
  72.  
  73. /* Define to the path of the /dev/fd filesystem */
  74. #undef PATH_DEV_FD
  75.  
  76. /* Define if sys/time.h and sys/select.h cannot be both included */
  77. #undef TIME_H_SELECT_H_CONFLICTS
  78.  
  79. /* Define if your system's struct utmp has a member named ut_host.  */
  80. #undef HAVE_UT_HOST
  81.  
  82. /* Define if you have the <utmpx.h> header file.  */
  83. #undef HAVE_UTMPX_H
  84.  
  85. /* Define to be the machine type (microprocessor class or machine model) */
  86. #undef MACHTYPE
  87.  
  88. /* Define to be the name of the operating system */
  89. #undef OSTYPE
  90.  
  91. /* Define to 1 if ANSI function prototypes are usable.  */
  92. #undef PROTOTYPES
  93.  
  94. /* Define to be location of utmp file.  This value is only used if UTMP_FILE, *
  95.  * UTMPX_FILE, or _PATH_UTMP are not defined in an include file.              */
  96. #undef UTMP_FILE_CONFIG
  97.  
  98. /* Define to be a string corresponding the vendor of the machine */
  99. #undef VENDOR
  100.  
  101. /* Define if your system defines `struct winsize' in sys/ptem.h.  */
  102. #undef WINSIZE_IN_PTEM
  103.  
  104. /* Define  to be location of wtmp file.  This value is only use if WTMP_FILE, *
  105.  * WTMPX_FILE, or _PATH_WTMP are not defined in an include file.              */
  106. #undef WTMP_FILE_CONFIG
  107.  
  108. /* Define to 1 if you want to debug zsh */
  109. #undef DEBUG
  110.  
  111. /* Define to 1 if you want to use zsh's own memory allocation routines */
  112. #undef ZSH_MEM
  113.  
  114. /* Define to 1 if you want to debug zsh memory allocation routines */
  115. #undef ZSH_MEM_DEBUG
  116.  
  117. /* Define to 1 if you want to turn on warnings of memory allocation errors */
  118. #undef ZSH_MEM_WARNING
  119.  
  120. /* Define to 1 if you want to turn on memory checking for free() */
  121. #undef ZSH_SECURE_FREE
  122.  
  123. /* Define to 1 if you want to get debugging information on internal *
  124.  * hash tables.  This turns on the `hashinfo' builtin.              */
  125. #undef ZSH_HASH_DEBUG
  126.  
  127. /* Define to 1 if your termcap library has the ospeed variable */
  128. #undef HAVE_OSPEED
  129. /* Define to 1 if you have ospeed, but it is not defined in termcap.h */
  130. #undef MUST_DEFINE_OSPEED
  131.  
  132. /* Define to 1 if tgetent() accepts NULL as a buffer */
  133. #undef TGETENT_ACCEPTS_NULL
  134.  
  135. /* Define to 1 if you use POSIX style signal handling */
  136. #undef POSIX_SIGNALS
  137.  
  138. /* Define to 1 if you use BSD style signal handling (and can block signals) */
  139. #undef BSD_SIGNALS
  140.  
  141. /* Define to 1 if you use SYS style signal handling (and can block signals) */
  142. #undef SYSV_SIGNALS
  143.  
  144. /* Define to 1 if you have no signal blocking at all (bummer) */
  145. #undef NO_SIGNAL_BLOCKING
  146.  
  147. /* Define to `unsigned int' if <sys/types.h> or <signal.h> doesn't define */
  148. #undef sigset_t
  149.  
  150. /* Define to 1 if struct timezone is defined by a system header */
  151. #undef HAVE_STRUCT_TIMEZONE
  152.  
  153. /* Define if your system's typeahead disappears from the shell editor. */
  154. #undef CLOBBERS_TYPEAHEAD
  155.  
  156. /* Define to 1 if there is a prototype defined for brk() on your system */
  157. #undef HAVE_BRK_PROTO
  158.  
  159. /* Define to 1 if there is a prototype defined for sbrk() on your system */
  160. #undef HAVE_SBRK_PROTO
  161.  
  162. /* Define to 1 if there is a prototype defined for ioctl() on your system */
  163. #undef HAVE_IOCTL_PROTO
  164.  
  165. /* Define to 1 if system has working FIFO's */
  166. #undef HAVE_FIFOS
  167.  
  168. /* Define to 1 if struct rlimit use quad_t */
  169. #undef RLIM_T_IS_QUAD_T
  170.  
  171. /* Define to 1 if rlimit use unsigned */
  172. #undef RLIM_T_IS_UNSIGNED
  173.  
  174. /* Define to the type used in struct rlimit */
  175. #undef rlim_t
  176.  
  177. /* Define to 1 if /bin/sh does not interpret \ escape sequences */
  178. #undef SH_USE_BSD_ECHO
  179.