1 |
|
|
2 |
/* config.in is converted by configure into config.h. PCRE is written in |
/* On Unix systems config.in is converted by configure into config.h. PCRE is |
3 |
Standard C, but there are a few non-standard things it can cope with, allowing |
written in Standard C, but there are a few non-standard things it can cope |
4 |
it to run on SunOS4 and other "close to standard" systems. The defaults below |
with, allowing it to run on SunOS4 and other "close to standard" systems. |
5 |
are the correct ones on a Standard C system. On a non-Unix system you can just |
|
6 |
copy this file into config.h. */ |
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 |
|
|
|
/* Define to empty if the keyword does not work. */ |
|
12 |
#undef const |
#undef const |
13 |
|
|
14 |
/* Define to `unsigned' if <stddef.h> doesn't define size_t. */ |
/* Define to `unsigned' if <stddef.h> doesn't define size_t. */ |
15 |
|
|
16 |
#undef size_t |
#undef size_t |
17 |
|
|
18 |
/* Undefine if you don't have the strerror function. */ |
/* The following two definitions are mainly for the benefit of SunOS4, which |
19 |
#define HAVE_STRERROR |
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 |
/* Undefine if you don't have the memmove function. */ |
#define HAVE_STRERROR 0 |
26 |
#define HAVE_MEMMOVE |
#define HAVE_MEMMOVE 0 |
27 |
|
|
28 |
/* End */ |
/* End */ |