GNOME Bugzilla – Bug 613156
cog can't be built against libpng 1.4.x
Last modified: 2010-03-17 14:32:15 UTC
Because confnigure checks for libpng12 instead of libpng >= 1.2 and because gstlogoinsert.c uses io_ptr directly. And because it uses png_infopp_NULL which is not supported in libpng 1.4.x
Created attachment 156357 [details] [review] Check for libpng >= 1.2 instead of libpng12
Created attachment 156358 [details] [review] Use png_get_io_ptr() instead of accessing io_ptr directly
Created attachment 156359 [details] [review] Use "(png_infopp) NULL" instead of png_infopp_NULL
commit 20c1e3b6052723ee3c23d71791b77858defebd56 Author: Руслан Ижбулатов <lrn1986@gmail.com> Date: Wed Mar 17 14:29:31 2010 +0300 cog: Use "(png_infopp) NULL" instead of png_infopp_NULL commit e44da2ded0c23c6348383dd3d5bfd6955ba97df7 Author: Руслан Ижбулатов <lrn1986@gmail.com> Date: Wed Mar 17 14:23:41 2010 +0300 cog: Use png_get_io_ptr() instead of accessing io_ptr directly commit 12fb30749499382aa436802972d28cc888e78af4 Author: Руслан Ижбулатов <lrn1986@gmail.com> Date: Wed Mar 17 14:21:53 2010 +0300 cog: Check for libpng >= 1.2 instead of libpng12