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/net-analyzer/bwbar/files/bwbar-1.2.3-libpng15.patch

20 lines
345 B

--- a/bwbar.c
+++ b/bwbar.c
@@ -30,6 +30,7 @@
#include <alloca.h>
#include <getopt.h>
#include <png.h>
+#include <zlib.h>
void skipline(FILE *f)
{
@@ -79,7 +80,7 @@
if ( !info_ptr )
goto barf;
- if ( setjmp(png_ptr->jmpbuf) ) {
+ if ( setjmp(png_jmpbuf(png_ptr)) ) {
status = 1;
goto barf; /* libpng abort */
}