Commits

Ryan Schmidt authored 7dd9cd0ed5b
php-FreeImage: unified port; update patch for php 5.4

git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@93629 d073be05-634f-4543-b044-5fe20cf6d1d6
No tags

php/php-FreeImage/files/patch-freeimage.c.diff

Added
1 +--- freeimage.c.orig 2004-07-22 08:32:54.000000000 -0500
2 ++++ freeimage.c 2012-05-25 17:48:52.000000000 -0500
3 +@@ -134,7 +134,7 @@
4 + *
5 + * Every user visible function must have an entry in freeimage_functions[].
6 + */
7 +-function_entry freeimage_functions[] = {
8 ++zend_function_entry freeimage_functions[] = {
9 + /* Bitmap management functions */
10 + PHP_FE(freeimage_load, NULL)
11 + PHP_FE(freeimage_save, NULL)
12 +@@ -1828,7 +1828,7 @@
13 + if (zend_parse_parameters(argc TSRMLS_CC, "lsbb|b", &fif, &filename, &filename_len, &create_new, &read_only, &keep_cache_in_memory) == FAILURE)
14 + return;
15 + multibitmap = (FIMULTIBITMAP *)emalloc(sizeof(FIMULTIBITMAP));
16 +- multibitmap = FreeImage_OpenMultiBitmap((FREE_IMAGE_FORMAT)fif, filename, create_new, read_only, keep_cache_in_memory);
17 ++ multibitmap = FreeImage_OpenMultiBitmap((FREE_IMAGE_FORMAT)fif, filename, create_new, read_only, keep_cache_in_memory, /* int flags FI_DEFAULT(0) */ 0);
18 + if (multibitmap != NULL) {
19 + ZEND_REGISTER_RESOURCE(return_value, multibitmap, le_freeimage_multibitmap);
20 + } else {

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut