summaryrefslogtreecommitdiff
path: root/src/base.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-11-22 00:43:13 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2021-11-22 02:50:26 -0500
commit7512d82ca49f1b579819c2974c61de4e3137c70b (patch)
tree955ad40637d6fb5577427beb15e9c8c82f43dfc7 /src/base.h
parent7db817c59a89375ece9c3ec3b4ef7e4302e64549 (diff)
downloadlighttpd-git-7512d82ca49f1b579819c2974c61de4e3137c70b.tar.gz
[core] pcre2 support (--with-pcre2)
x-ref: "lighttpd: depends on obsolete pcre3 library" https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1000063
Diffstat (limited to 'src/base.h')
-rw-r--r--src/base.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/base.h b/src/base.h
index d0cc761a..a8e0d3e6 100644
--- a/src/base.h
+++ b/src/base.h
@@ -194,6 +194,9 @@ struct server {
int stdin_fd;
char **argv;
+ #ifdef HAVE_PCRE2_H
+ void *match_data; /*(shared and reused)*/
+ #endif
};