From 4bf70f4d98cff6092694c4faddc4003df1f8dca1 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 7 Jul 2015 16:15:22 +0200 Subject: [PATCH] mention pcre.jit in the supplied php.ini-* --- php.ini-development | 4 ++++ php.ini-production | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/php.ini-development b/php.ini-development index e81f288a46..6b96d6b599 100644 --- a/php.ini-development +++ b/php.ini-development @@ -976,6 +976,10 @@ cli_server.color = On ; http://php.net/pcre.recursion-limit ;pcre.recursion_limit=100000 +;Enables or disables JIT compilation of patterns. This requires the PCRE +;library to be compiled with JIT support. +;pcre.jit=1 + [Pdo] ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" ; http://php.net/pdo-odbc.connection-pooling diff --git a/php.ini-production b/php.ini-production index f4bdf7bf7f..2c23acb47d 100644 --- a/php.ini-production +++ b/php.ini-production @@ -976,6 +976,10 @@ cli_server.color = On ; http://php.net/pcre.recursion-limit ;pcre.recursion_limit=100000 +;Enables or disables JIT compilation of patterns. This requires the PCRE +;library to be compiled with JIT support. +;pcre.jit=1 + [Pdo] ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" ; http://php.net/pdo-odbc.connection-pooling -- 2.50.1