home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / less373.zip / acconfig.h next >
Text File  |  2002-01-14  |  2KB  |  77 lines

  1. /*
  2.  * Copyright (C) 1984-2000  Mark Nudelman
  3.  *
  4.  * You may distribute under the terms of either the GNU General Public
  5.  * License or the Less License, as specified in the README file.
  6.  *
  7.  * For more information about less, or for information on how to 
  8.  * contact the author, see the README file.
  9.  */
  10.  
  11.  
  12. /*
  13.  * Regular expression library.
  14.  * Define exactly one of the following to be 1:
  15.  * HAVE_POSIX_REGCOMP: POSIX regcomp() and regex.h
  16.  * HAVE_PCRE: PCRE (Perl-compatible regular expression) library
  17.  * HAVE_RE_COMP: BSD re_comp()
  18.  * HAVE_REGCMP: System V regcmp()
  19.  * HAVE_V8_REGCOMP: Henry Spencer V8 regcomp() and regexp.h
  20.  * NO_REGEX: pattern matching is supported, but without metacharacters.
  21.  */
  22. #undef HAVE_POSIX_REGCOMP
  23. #undef HAVE_PCRE
  24. #undef HAVE_RE_COMP
  25. #undef HAVE_REGCMP
  26. #undef HAVE_V8_REGCOMP
  27. #undef NO_REGEX
  28. #undef HAVE_REGEXEC2
  29.  
  30. /* Define HAVE_VOID if your compiler supports the "void" type. */
  31. #undef HAVE_VOID
  32.  
  33. /* Define HAVE_CONST if your compiler supports the "const" modifier. */
  34. #undef HAVE_CONST
  35.  
  36. /* Define HAVE_TIME_T if your system supports the "time_t" type. */
  37. #undef HAVE_TIME_T
  38.  
  39. /* Define HAVE_STRERROR if you have the strerror() function. */
  40. #undef HAVE_STRERROR
  41.  
  42. /* Define HAVE_FILENO if you have the fileno() macro. */
  43. #undef HAVE_FILENO
  44.  
  45. /* Define HAVE_ERRNO if you have the errno variable */
  46. /* Define MUST_DEFINE_ERRNO if you have errno but it is not define 
  47.  * in errno.h */
  48. #undef HAVE_ERRNO
  49. #undef MUST_DEFINE_ERRNO
  50.  
  51. /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */
  52. #undef HAVE_SYS_ERRLIST
  53.  
  54. /* Define HAVE_OSPEED if your termcap library has the ospeed variable */
  55. /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined
  56.  * in termcap.h. */
  57. #undef HAVE_OSPEED
  58. #undef MUST_DEFINE_OSPEED
  59.  
  60. /* Define HAVE_LOCALE if you have locale.h and setlocale. */
  61. #undef HAVE_LOCALE
  62.  
  63. /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr */
  64. #undef HAVE_TERMIOS_FUNCS
  65.  
  66. /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower */
  67. #undef HAVE_UPPER_LOWER
  68.  
  69. /* Define HAVE_SIGSET_T you have the sigset_t type */
  70. #undef HAVE_SIGSET_T
  71.  
  72. /* Define HAVE_SIGEMPTYSET if you have the sigemptyset macro */
  73. #undef HAVE_SIGEMPTYSET
  74.  
  75. /* Define EDIT_PGM to your editor. */
  76. #define EDIT_PGM    "vi"
  77.