diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-11-15 12:14:34 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-11-15 12:14:34 +0900 |
commit | 2620b47794e3238ee5c7dd6b8a38f58732ace3a2 (patch) | |
tree | 5dad7d6e3d92d164f82f8bbe886ef000fa4f6d9d | |
parent | Merge branch 'tz/fsf-address-update' (diff) | |
parent | grep: fix NO_LIBPCRE1_JIT to fully disable JIT (diff) | |
download | tgif-2620b47794e3238ee5c7dd6b8a38f58732ace3a2.tar.xz |
Merge branch 'ab/pcre-v2'
Building with NO_LIBPCRE1_JIT did not disable it, which has been fixed.
* ab/pcre-v2:
grep: fix NO_LIBPCRE1_JIT to fully disable JIT
-rw-r--r-- | grep.c | 2 | ||||
-rw-r--r-- | grep.h | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -387,7 +387,7 @@ static void compile_pcre1_regexp(struct grep_pat *p, const struct grep_opt *opt) if (!p->pcre1_regexp) compile_regexp_failed(p, error); - p->pcre1_extra_info = pcre_study(p->pcre1_regexp, PCRE_STUDY_JIT_COMPILE, &error); + p->pcre1_extra_info = pcre_study(p->pcre1_regexp, GIT_PCRE_STUDY_JIT_COMPILE, &error); if (!p->pcre1_extra_info && error) die("%s", error); @@ -7,11 +7,12 @@ #if PCRE_MAJOR >= 8 && PCRE_MINOR >= 32 #ifndef NO_LIBPCRE1_JIT #define GIT_PCRE1_USE_JIT +#define GIT_PCRE_STUDY_JIT_COMPILE PCRE_STUDY_JIT_COMPILE #endif #endif #endif -#ifndef PCRE_STUDY_JIT_COMPILE -#define PCRE_STUDY_JIT_COMPILE 0 +#ifndef GIT_PCRE_STUDY_JIT_COMPILE +#define GIT_PCRE_STUDY_JIT_COMPILE 0 #endif #if PCRE_MAJOR <= 8 && PCRE_MINOR < 20 typedef int pcre_jit_stack; |