summaryrefslogtreecommitdiffstats
path: root/abs/core/apache/pcre_info.patch
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2014-04-16 00:11:20 (GMT)
committerBritney Fransen <brfransen@gmail.com>2014-04-16 00:11:20 (GMT)
commit1a3bd510dd4dc4f85bbde399d983e94745869473 (patch)
tree5001162b7865b992bd747f51a355fd91bda166b7 /abs/core/apache/pcre_info.patch
parentb90e9ef668828634480e31a3286b7e626b8a7bd1 (diff)
downloadlinhes_pkgbuild-1a3bd510dd4dc4f85bbde399d983e94745869473.zip
linhes_pkgbuild-1a3bd510dd4dc4f85bbde399d983e94745869473.tar.gz
linhes_pkgbuild-1a3bd510dd4dc4f85bbde399d983e94745869473.tar.bz2
apache: update to 2.4.9. refs #961
Diffstat (limited to 'abs/core/apache/pcre_info.patch')
-rw-r--r--abs/core/apache/pcre_info.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/abs/core/apache/pcre_info.patch b/abs/core/apache/pcre_info.patch
deleted file mode 100644
index 906a315..0000000
--- a/abs/core/apache/pcre_info.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- httpd-2.2.22/server/util_pcre.c 2005-11-10 16:20:05.000000000 +0100
-+++ httpd-2.2.22/server/util_pcre.c 2012-02-08 11:23:56.273855663 +0100
-@@ -128,6 +128,7 @@
- const char *errorptr;
- int erroffset;
- int options = 0;
-+int nsub;
-
- if ((cflags & AP_REG_ICASE) != 0) options |= PCRE_CASELESS;
- if ((cflags & AP_REG_NEWLINE) != 0) options |= PCRE_MULTILINE;
-@@ -136,8 +137,9 @@
- preg->re_erroffset = erroffset;
-
- if (preg->re_pcre == NULL) return AP_REG_INVARG;
--
--preg->re_nsub = pcre_info((const pcre *)preg->re_pcre, NULL, NULL);
-+pcre_fullinfo((const pcre *)preg->re_pcre, NULL,
-+ PCRE_INFO_CAPTURECOUNT, &nsub);
-+preg->re_nsub = nsub;
- return 0;
- }
-