1
0
mirror of https://github.com/apache/httpd.git synced 2025-07-29 09:01:18 +03:00

BZ 52623: Fix building against PCRE 8.30.

PCRE dropped support for pcre_info() which is
deprecated since a long time. Use pcre_fullinfo()
instead, which exists since version 3.0 of PCRE.

Patch provided by Ruediger Pluem.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1243176 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Jung
2012-02-11 22:45:37 +00:00
parent 9a0981b88d
commit 0415804814
3 changed files with 5 additions and 3 deletions

View File

@ -88,7 +88,7 @@ enum {
/* The structure representing a compiled regular expression. */
typedef struct {
void *re_pcre;
apr_size_t re_nsub;
int re_nsub;
apr_size_t re_erroffset;
} ap_regex_t;