From 00e9b1417e446e9664c5b4db9216e09359f9aa2b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 22 Sep 2013 14:51:31 +0200 Subject: php-pecl-imagick: 3.1.1 --- imagick-zts.patch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 imagick-zts.patch (limited to 'imagick-zts.patch') diff --git a/imagick-zts.patch b/imagick-zts.patch new file mode 100644 index 0000000..271fdf4 --- /dev/null +++ b/imagick-zts.patch @@ -0,0 +1,20 @@ +--- imagick-3.1.1/imagick_class.c 2013-09-22 14:01:16.000000000 +0200 ++++ imagick-3.1.1-zts/imagick_class.c 2013-09-22 14:14:29.285128053 +0200 +@@ -6637,7 +6637,7 @@ + } + + static +-void s_add_named_strings (zval *array, const char *haystack) ++void s_add_named_strings (zval *array, const char *haystack TSRMLS_DC) + { + int done = 0; + char *line, *last_ptr = NULL, *buffer; +@@ -6714,7 +6714,7 @@ + + // Name of the image + s_add_assoc_str (return_value, "imageName", MagickGetImageFilename (intern->magick_wand), 1); +- s_add_named_strings (return_value, identify); ++ s_add_named_strings (return_value, identify TSRMLS_CC); + + // Geometry is an associative array + MAKE_STD_ZVAL (array); -- cgit