]> git.pld-linux.org Git - packages/php-pecl-imagick.git/blame - skip_version_check.patch
run tests
[packages/php-pecl-imagick.git] / skip_version_check.patch
CommitLineData
4baa9e02
ER
1--- php55-pecl-imagick-3.4.2/./imagick.c~ 2016-04-25 01:51:17.000000000 +0300
2+++ php55-pecl-imagick-3.4.2/./imagick.c 2016-08-30 12:06:18.534956682 +0300
3@@ -3173,7 +3173,7 @@
4
5 PHP_INI_BEGIN()
6 STD_PHP_INI_ENTRY("imagick.locale_fix", "0", PHP_INI_ALL, OnUpdateBool, locale_fix, zend_imagick_globals, imagick_globals)
7- STD_PHP_INI_ENTRY("imagick.skip_version_check", "0", PHP_INI_ALL, OnUpdateBool, skip_version_check, zend_imagick_globals, imagick_globals)
8+ STD_PHP_INI_ENTRY("imagick.skip_version_check", "1", PHP_INI_ALL, OnUpdateBool, skip_version_check, zend_imagick_globals, imagick_globals)
9 STD_PHP_INI_ENTRY("imagick.progress_monitor", "0", PHP_INI_SYSTEM, OnUpdateBool, progress_monitor, zend_imagick_globals, imagick_globals)
10 PHP_INI_END()
11
12@@ -3181,7 +3181,7 @@
13 {
14 imagick_globals->locale_fix = 0;
15 imagick_globals->progress_monitor = 0;
16- imagick_globals->skip_version_check = 0;
17+ imagick_globals->skip_version_check = 1;
18 }
19
20
This page took 0.117784 seconds and 4 git commands to generate.