diff options
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 9779afaa36..750e720d74 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -175,6 +175,10 @@ static PHP_MINFO_FUNCTION(pcre) php_info_print_table_row(2, "PCRE JIT Support", "not compiled in" ); #endif +#ifdef HAVE_PCRE_VALGRIND_SUPPORT + php_info_print_table_row(2, "PCRE Valgrind Support", "enabled" ); +#endif + php_info_print_table_end(); DISPLAY_INI_ENTRIES(); |