You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-puzzle/pingus/files/pingus-0.7.3-libpng15.patch

16 lines
370 B

$NetBSD: patch-ac,v 1.1 2011/01/20 23:41:02 wiz Exp $
Fix build with png-1.5.
--- src/screenshot.cpp.orig
+++ src/screenshot.cpp
@@ -159,7 +159,7 @@ Screenshot::save_png(const std::string&
return;
}
- if (setjmp(png_ptr->jmpbuf))
+ if (setjmp(png_jmpbuf(png_ptr)))
{
// If we get here, we had a problem reading the file
fclose(fp);