summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-11-15 20:21:40 +0100
committerAnatol Belski <ab@php.net>2017-11-15 20:21:40 +0100
commitce85d0f24f067421fe79f2dec5cbefc2602dc59a (patch)
treee5a9491e324d91d1e2ecb9a79fb821a4d87f6ba0 /ext
parent9acbab30ccb4d7a55a6b2685db0f251e8c997d6d (diff)
downloadphp-git-ce85d0f24f067421fe79f2dec5cbefc2602dc59a.tar.gz
Add missing ifdef
Diffstat (limited to 'ext')
-rw-r--r--ext/pcre/php_pcre.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c
index d94b1b3faa..5386077f8c 100644
--- a/ext/pcre/php_pcre.c
+++ b/ext/pcre/php_pcre.c
@@ -243,7 +243,9 @@ static PHP_GINIT_FUNCTION(pcre) /* {{{ */
pcre_globals->backtrack_limit = 0;
pcre_globals->recursion_limit = 0;
pcre_globals->error_code = PHP_PCRE_NO_ERROR;
+#ifdef HAVE_PCRE_JIT_SUPPORT
pcre_globals->jit = 1;
+#endif
php_pcre_init_pcre2(1);
}