packages: cinelerra-cv/cinelerra-cv-libpng.patch (NEW) - fixes for newer li...

ankry ankry at pld-linux.org
Tue Feb 16 15:18:02 CET 2010


Author: ankry                        Date: Tue Feb 16 14:18:02 2010 GMT
Module: packages                      Tag: HEAD
---- Log message:
- fixes for newer libpng

---- Files affected:
packages/cinelerra-cv:
   cinelerra-cv-libpng.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: packages/cinelerra-cv/cinelerra-cv-libpng.patch
diff -u /dev/null packages/cinelerra-cv/cinelerra-cv-libpng.patch:1.1
--- /dev/null	Tue Feb 16 15:18:02 2010
+++ packages/cinelerra-cv/cinelerra-cv-libpng.patch	Tue Feb 16 15:17:56 2010
@@ -0,0 +1,28 @@
+--- cinelerra-cv/plugins/shapewipe/shapewipe.C~	2010-01-09 15:12:21.000000000 +0100
++++ cinelerra-cv/plugins/shapewipe/shapewipe.C	2010-02-16 15:03:37.044711032 +0100
+@@ -386,7 +386,7 @@
+ 	}
+ 
+ 	png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING,
+-		png_voidp_NULL, png_error_ptr_NULL, png_error_ptr_NULL);
++		NULL, NULL, NULL);
+ 
+ 	if (!png_ptr)
+ 	{
+@@ -399,14 +399,14 @@
+ 	info_ptr = png_create_info_struct(png_ptr);
+ 	if (!info_ptr)
+ 	{
+-		png_destroy_read_struct(&png_ptr, png_infopp_NULL, png_infopp_NULL);
++		png_destroy_read_struct(&png_ptr, NULL, NULL);
+ 		return 1;
+ 	}
+ 
+ 	end_info = png_create_info_struct(png_ptr);
+ 	if (!end_info)
+ 	{
+-		png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL);
++		png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
+ 		return 1;
+ 	}
+ 
================================================================


More information about the pld-cvs-commit mailing list