aferrero2707 / PhotoFlow

A fully non-destructive photo retouching program providing a complete layer-based workflow including RAW image development.
http://aferrero2707.github.io/PhotoFlow
GNU General Public License v3.0
309 stars 36 forks source link

PhotoFlow doesn't build with recent vips releases #206

Closed alexdupre closed 4 years ago

alexdupre commented 4 years ago

Many calls to vips_image_get_blob fail because the signature of the third parameter changed from void ** to const void **:


    if( vips_image_get_blob( parents[i], "pf-image-hierarchy", (void**)&parray, &length) ) {
        ^~~~~~~~~~~~~~~~~~~
/usr/local/include/vips/header.h:203:5: note: candidate function not viable: no known conversion from 'void **' to 'const void **' for 3rd argument```
aferrero2707 commented 4 years ago

@alexdupre I am working to fix this, I should be able to merge the new code in few hours.

aferrero2707 commented 4 years ago

@alexdupre the compilation problem with recent VIPS versions should now be fixed in the stable branch. Could you please confirm?

Thanks!

alexdupre commented 4 years ago

I confirm it worked, thanks!