home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / less3292.zip / acconfig.h next >
Text File  |  1996-04-16  |  3KB  |  81 lines

  1. /*
  2.  * Copyright (c) 1984,1985,1989,1994,1995,1996  Mark Nudelman
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice in the documentation and/or other materials provided with 
  12.  *    the distribution.
  13.  *
  14.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
  15.  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
  17.  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
  18.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
  19.  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
  20.  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 
  21.  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
  22.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 
  23.  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 
  24.  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25.  */
  26.  
  27.  
  28. /*
  29.  * Regular expression library.
  30.  * Define exactly one of the following to be 1:
  31.  * HAVE_POSIX_REGCOMP: POSIX regcomp() and regex.h
  32.  * HAVE_RE_COMP: BSD re_comp()
  33.  * HAVE_REGCMP: System V regcmp()
  34.  * HAVE_V8_REGCOMP: Henry Spencer V8 regcomp() and regexp.h
  35.  * NO_REGEX: pattern matching is supported, but without metacharacters.
  36.  */
  37. #undef HAVE_POSIX_REGCOMP
  38. #undef HAVE_RE_COMP
  39. #undef HAVE_REGCMP
  40. #undef HAVE_V8_REGCOMP
  41. #undef NO_REGEX
  42.  
  43. /* Define HAVE_VOID if your compiler supports the "void" type. */
  44. #undef HAVE_VOID
  45.  
  46. /* Define HAVE_CONST if your compiler supports the "const" modifier. */
  47. #undef HAVE_CONST
  48.  
  49. /* Define HAVE_TIME_T if your system supports the "time_t" type. */
  50. #undef HAVE_TIME_T
  51.  
  52. /* Define HAVE_STRERROR if you have the strerror() function. */
  53. #undef HAVE_STRERROR
  54.  
  55. /* Define HAVE_FILENO if you have the fileno() macro. */
  56. #undef HAVE_FILENO
  57.  
  58. /* Define HAVE_ERRNO if you have the errno variable */
  59. /* Define MUST_DEFINE_ERRNO if you have errno but it is not define 
  60.  * in errno.h */
  61. #undef HAVE_ERRNO
  62. #undef MUST_DEFINE_ERRNO
  63.  
  64. /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */
  65. #undef HAVE_SYS_ERRLIST
  66.  
  67. /* Define HAVE_OSPEED if your termcap library has the ospeed variable */
  68. /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined
  69.  * in termcap.h. */
  70. #undef HAVE_OSPEED
  71. #undef MUST_DEFINE_OSPEED
  72.  
  73. /* Define HAVE_LOCALE if you have locale.h and setlocale. */
  74. #undef HAVE_LOCALE
  75.  
  76. /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr */
  77. #undef HAVE_TERMIOS_FUNCS
  78.  
  79. /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower */
  80. #undef HAVE_UPPER_LOWER
  81.