[BACK]Return to acconfig.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / less

Annotation of src/usr.bin/less/acconfig.h, Revision 1.2

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