From 54d8053ac5008efa122211b2aeec57a4931f5d56 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Fri, 23 Sep 2016 01:52:42 +0200 Subject: Fix bug #73121 Bundled PCRE doesn't compile because JIT isn't supported on s390 --- ext/pcre/php_pcre.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/pcre/php_pcre.h') 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; -- cgit v1.2.1