https://issues.apache.org/bugzilla/show_bug.cgi?id=56413
--- Comment #22 from Benji Taylor <[email protected]> --- If you apply this patch when you compile: Index: util_pcre.c =================================================================== --- util_pcre.c (revision 1612204) +++ util_pcre.c (working copy) @@ -125,7 +125,7 @@ const char *errorptr; int erroffset; int errcode = 0; - int options = PCRE_DUPNAMES; + int options = 0; if ((cflags & AP_REG_ICASE) != 0) options |= PCRE_CASELESS; It will fix the issue with: [Wed Jul 23 12:48:25.293419 2014] [core:crit] [pid 30025:tid 47707166380016] AH00102: [Wed Jul 23 12:48:25 2014] file mod_setenvif.c, line 637, assertion "is_header_regex_regex != NULL" failed I have checked both versions of PCRE and I have tried the build both ways with using Redhat PCRE and just grabbing PCRE source. I still get the above error in either case unless I manually apply the patch from above. I also verified that the installed apache 2.4 in both cases were using the same version of PCRE that it was compiled against. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
