Commit 419f983e authored by Tollef Fog Heen's avatar Tollef Fog Heen

Enable PCRE JIT-er by default

The JIT-er is generally safe to use, and faster, so use that.

Fixes: #1576, #1630
parent 9ea6149a
......@@ -614,9 +614,9 @@ AC_DEFINE_UNQUOTED([VCC_CC],"$VCC_CC",[C compiler command line for VCL code])
# --enable-pcre-jit
AC_ARG_ENABLE(pcre-jit,
AS_HELP_STRING([--enable-pcre-jit],
[use the PCRE JIT compiler (default is NO)]),
[use the PCRE JIT compiler (default is YES)]),
,
[enable_pcre_jit=no])
[enable_pcre_jit=yes])
if test "$enable_pcre_jit" = yes; then
AC_DEFINE([USE_PCRE_JIT],[1],[use the PCRE JIT compiler])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment