Summary: | sci-libs/vtk fails to build with libpng-1.5 | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Diego Elio Pettenò (RETIRED) <flameeyes> |
Component: | New packages | Assignee: | Justin Lecher (RETIRED) <jlec> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | frp.bissey, java, sci |
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Bug Depends on: | |||
Bug Blocks: | 354479 |
Description
Diego Elio Pettenò (RETIRED)
![]() Any API changes that I should be aware off or will it just be an exercise in using pkg-config properly. Of course paraview will have the same problem. (In reply to comment #1) > Any API changes that I should be aware off or will it just be an exercise in > using pkg-config properly. Of course paraview will have the same problem. Small API change. --- VTK/IO/vtkPNGWriter.cxx +++ VTK/IO/vtkPNGWriter.cxx @@ -147,7 +147,7 @@ void vtkPNGWriteErrorFunction(png_structp png_ptr, png_const_charp vtkNotUsed(error_msg)) { - longjmp(png_ptr->jmpbuf, 1); + longjmp(png_jmpbuf(png_ptr), 1); } } @@ -223,7 +223,7 @@ png_init_io(png_ptr, this->TempFP); png_set_error_fn(png_ptr, png_ptr, vtkPNGWriteErrorFunction, vtkPNGWriteWarningFunction); - if (setjmp(png_ptr->jmpbuf)) + if (setjmp(png_jmpbuf(png_ptr))) { fclose(this->TempFP); this->SetErrorCode(vtkErrorCode::OutOfDiskSpaceError); + 13 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> vtk-5.6.1.ebuild, + +files/vtk-5.6.1-libpng15.patch: + Fix building with libpng15 wrt #378393 by Diego Elio Pettenò |