home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / CLISP / CLISPSRC.TAR / clisp-1995-01-01 / src / readline / config.h.in < prev    next >
Encoding:
Text File  |  1994-06-19  |  2.8 KB  |  113 lines

  1. /* Bruno Haible 1.2.1994 */
  2.  
  3.  
  4. /* UNIX variants */
  5.  
  6. /* AC_AIX */
  7. /* Define if on AIX 3. */
  8. #undef _ALL_SOURCE
  9.  
  10. /* AC_ISC_POSIX */
  11. /* Define if you need to in order for stat and other things to work. */
  12. #ifndef _POSIX_SOURCE
  13. #undef _POSIX_SOURCE
  14. #endif
  15.  
  16.  
  17. /* compiler characteristics */
  18.  
  19. /* AC_CONST */
  20. /* Define this as empty if your compiler doesn't support the `const' keyword. */
  21. #undef const
  22.  
  23. /* AC_INLINE */
  24. /* Define as __inline if that's what the C compiler calls it. */
  25. #undef inline
  26.  
  27. /* RL_VOID */
  28. /* Define this as `char' if your compiler doesn't understand the void type. */
  29. #undef void
  30.  
  31.  
  32. /* header files */
  33.  
  34. /* CL_STDC_HEADERS */
  35. /* Define if you have the ANSI C header files
  36.    <stdlib.h>, <stdarg.h>, <string.h>, <float.h>, <limits.h>. */
  37. #undef STDC_HEADERS
  38.  
  39. /* CL_UNISTD_H */
  40. /* Define if you have <unistd.h>. */
  41. #undef HAVE_UNISTD_H
  42.  
  43. /* CL_OPENFLAGS */
  44. /* Define if you need <sys/file.h> for using open() flags like O_RDWR. */
  45. #undef NEED_SYS_FILE_H
  46.  
  47. /* AC_DIR_HEADER, AC_XENIX_DIR */
  48. /* How to read directories: */
  49. /* Define if you have <dirent.h>. */
  50. #undef DIRENT   /* use <dirent.h> */
  51. /* Define if you don't have <dirent.h>, but have <sys/ndir.h>. */
  52. #undef SYSNDIR  /* use <sys/ndir.h> */
  53. /* Define if you don't have <dirent.h>, but have <ndir.h>. */
  54. #undef NDIR  /* use <ndir.h> */
  55. /* Define if you don't have <dirent.h>, but have <sys/dir.h>. */
  56. #undef SYSDIR   /* use <sys/dir.h> */
  57.  
  58. /* RL_TERM */
  59. /* Define if you have <termios.h>. */
  60. #undef HAVE_TERMIOS_H
  61. /* Define if you have the tcgetattr() function. */
  62. #undef HAVE_TCGETATTR
  63. /* Define if you have the tcflow() function. */
  64. #undef HAVE_TCFLOW
  65. /* Define if you have <termio.h>. */
  66. #undef HAVE_TERMIO_H
  67. /* Define if you have <sys/termio.h>. */
  68. #undef HAVE_SYS_TERMIO_H
  69. /* Define if you have <sgtty.h>. */
  70. #undef HAVE_SGTTY_H
  71. /* Define if you have <sys/stream.h>. */
  72. #undef HAVE_SYS_STREAM_H
  73. /* Define if you have <sys/ptem.h>. */
  74. #undef HAVE_SYS_PTEM_H
  75. /* Define if you have the FIONREAD ioctl(). */
  76. #undef HAVE_FIONREAD
  77. /* Define if you need <sys/filio.h> for using ioctl's like FIONREAD. */
  78. #undef NEED_SYS_FILIO_H
  79. /* Define if you need <sys/ioctl.h> for using ioctl's like FIONREAD. */
  80. #undef NEED_SYS_IOCTL_H
  81.  
  82.  
  83. /* typedefs */
  84.  
  85.  
  86. /* structures and structure members */
  87.  
  88.  
  89. /* functions */
  90.  
  91. /* AC_ALLOCA */
  92. /* Define if you have <alloca.h> and it should be used (not Ultrix). */
  93. #undef HAVE_ALLOCA_H
  94.  
  95. /* AC_HAVE_FUNCS(strchr strrchr strpbrk) */
  96. /* Define if you have the strchr() function. */
  97. #undef HAVE_STRCHR
  98. /* Define if you have the strrchr() function. */
  99. #undef HAVE_STRRCHR
  100. /* Define if you have the strpbrk() function. */
  101. #undef HAVE_STRPBRK
  102.  
  103. /* RL_RETSIGTYPE */
  104. /* Define if the return type of signal handlers is void. */
  105. #undef RETSIGTYPE_VOID
  106.  
  107. /* CL_SIGNALBLOCK */
  108. /* how to block and unblock signals */
  109. #undef SIGNALBLOCK_SYSV
  110. #undef SIGNALBLOCK_POSIX
  111. #undef SIGNALBLOCK_BSD
  112.  
  113.