1 /*
2  * Copyright (c) 1984,1985,1989,1994,1995  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_TIME_T if your system supports the "time_t" type. */
47 #undef HAVE_TIME_T
48 
49 /* Define HAVE_STRERROR if you have the strerror() function. */
50 #undef HAVE_STRERROR
51 
52 /* Define HAVE_FILENO if you have the fileno() macro. */
53 #undef HAVE_FILENO
54 
55 /* Define HAVE_ERRNO if you have the errno variable */
56 #undef HAVE_ERRNO
57 
58 /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */
59 #undef HAVE_SYS_ERRLIST
60 
61 /* Define HAVE_OSPEED if your termcap library has the ospeed variable */
62 #undef HAVE_OSPEED
63 /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined
64  * in termcap.h. */
65 #undef MUST_DEFINE_OSPEED
66 
67 /* Define HAVE_LOCALE if you have locale.h and setlocale. */
68 #undef HAVE_LOCALE
69 
70 /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr */
71 #undef HAVE_TERMIOS_FUNCS
72 
73 /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower */
74 #undef HAVE_UPPER_LOWER
75