1 |
|
2 |
/* On Unix systems config.in is converted by configure into config.h. PCRE is
|
3 |
written in Standard C, but there are a few non-standard things it can cope
|
4 |
with, allowing it to run on SunOS4 and other "close to standard" systems.
|
5 |
|
6 |
On a non-Unix system you should just copy this file into config.h and change
|
7 |
the definitions of HAVE_STRERROR and HAVE_MEMMOVE to 1. Unfortunately, because
|
8 |
of the way autoconf works, these cannot be made the defaults. */
|
9 |
|
10 |
/* Define to empty if the keyword does not work. */
|
11 |
|
12 |
#undef const
|
13 |
|
14 |
/* Define to `unsigned' if <stddef.h> doesn't define size_t. */
|
15 |
|
16 |
#undef size_t
|
17 |
|
18 |
/* The following two definitions are mainly for the benefit of SunOS4, which
|
19 |
doesn't have the strerror() or memmove() functions that should be present in
|
20 |
all Standard C libraries. The macros should normally be defined with the value
|
21 |
1 for other systems, but unfortunately we can't make this the default because
|
22 |
"configure" files generated by autoconf will only change 0 to 1; they won't
|
23 |
change 1 to 0 if the functions are not found. */
|
24 |
|
25 |
#define HAVE_STRERROR 0
|
26 |
#define HAVE_MEMMOVE 0
|
27 |
|
28 |
/* End */
|