diff options
author | Remi Collet <fedora@famillecollet.com> | 2013-12-19 14:22:10 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2013-12-19 14:22:10 +0100 |
commit | 0b17e8bd93a7f81ebc3e21fdb27f1b7fb5fdc2b6 (patch) | |
tree | d6bb404dc84ce04e14bef916d993980c073b449e /pdflib-php54.patch | |
parent | 6b268a29f1ba5d91803814e05eef9aa252a32b18 (diff) |
php-pecl-pdflib: 3.0.2 (stable)
Diffstat (limited to 'pdflib-php54.patch')
-rw-r--r-- | pdflib-php54.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/pdflib-php54.patch b/pdflib-php54.patch deleted file mode 100644 index 96f8c8e..0000000 --- a/pdflib-php54.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff -up pdflib-2.1.8/pdf7.c.php54 pdflib-2.1.8/pdf7.c ---- pdflib-2.1.8/pdf7.c.php54 2011-11-27 08:55:33.068642986 +0100 -+++ pdflib-2.1.8/pdf7.c 2011-11-27 08:56:40.703860070 +0100 -@@ -332,10 +332,14 @@ pdflib_object_new_ex(zend_class_entry *c - - ALLOC_HASHTABLE(intern->std.properties); - zend_hash_init(intern->std.properties, 0, NULL, ZVAL_PTR_DTOR, 0); -+#if PHP_VERSION_ID < 50399 - zend_hash_copy(intern->std.properties, - &class_type->default_properties, - (copy_ctor_func_t) zval_add_ref, - (void *) &tmp, sizeof(zval *)); -+#else -+ object_properties_init( (zend_object*)intern, class_type ); -+#endif - - retval.handle = zend_objects_store_put(intern, NULL, - (zend_objects_free_object_storage_t)pdflib_object_dtor, -diff -up pdflib-2.1.8/pdf.c.php54 pdflib-2.1.8/pdf.c ---- pdflib-2.1.8/pdf.c.php54 2011-11-27 08:53:51.378310945 +0100 -+++ pdflib-2.1.8/pdf.c 2011-11-27 08:56:31.184829597 +0100 -@@ -766,10 +766,14 @@ pdflib_object_new_ex(zend_class_entry *c - - ALLOC_HASHTABLE(intern->std.properties); - zend_hash_init(intern->std.properties, 0, NULL, ZVAL_PTR_DTOR, 0); -+#if PHP_VERSION_ID < 50399 - zend_hash_copy(intern->std.properties, - &class_type->default_properties, - (copy_ctor_func_t) zval_add_ref, - (void *) &tmp, sizeof(zval *)); -+#else -+ object_properties_init( (zend_object*)intern, class_type ); -+#endif - - retval.handle = zend_objects_store_put(intern, NULL, - (zend_objects_free_object_storage_t)pdflib_object_dtor, |