summaryrefslogtreecommitdiff
path: root/ext/pcre/php_pcre.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-09-23 01:52:42 +0200
committerAnatol Belski <ab@php.net>2016-09-23 01:52:42 +0200
commit54d8053ac5008efa122211b2aeec57a4931f5d56 (patch)
tree44b09037ccc84a8b089d711436b4c956c21546a6 /ext/pcre/php_pcre.h
parenta95caa29bfa4a3de334f74a13b31e246e076b529 (diff)
downloadphp-git-54d8053ac5008efa122211b2aeec57a4931f5d56.tar.gz
Fix bug #73121 Bundled PCRE doesn't compile because JIT isn't supported on s390
Diffstat (limited to 'ext/pcre/php_pcre.h')
-rw-r--r--ext/pcre/php_pcre.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.h b/ext/pcre/php_pcre.h
index 7515726449..5ce3cedcda 100644
--- a/ext/pcre/php_pcre.h
+++ b/ext/pcre/php_pcre.h
@@ -75,7 +75,7 @@ ZEND_BEGIN_MODULE_GLOBALS(pcre)
HashTable pcre_cache;
zend_long backtrack_limit;
zend_long recursion_limit;
-#ifdef PCRE_STUDY_JIT_COMPILE
+#ifdef HAVE_PCRE_JIT_SUPPORT
zend_bool jit;
#endif
int error_code;