mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
b76270bf9e
Wed May 19 08:58:23 UTC 2010 Slackware 13.1 x86_64 stable is released! Lots of thanks are due -- see the RELEASE_NOTES and the rest of the ChangeLog for credits. The ISOs are on their way to replication, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We are taking pre-orders now at store.slackware.com, and offering a discount if you sign up for a subscription. Consider picking up a copy to help support the project. Thanks again to the Slackware community for testing, contributing, and generally holding us to a high level of quality. :-) Enjoy!
96 lines
2.5 KiB
Diff
96 lines
2.5 KiB
Diff
--- ./src/pilot-read-veo.c.orig 2007-02-04 17:06:03.000000000 -0600
|
|
+++ ./src/pilot-read-veo.c 2010-02-19 12:52:30.000000000 -0600
|
|
@@ -41,10 +41,6 @@
|
|
|
|
#ifdef HAVE_PNG
|
|
# include "png.h"
|
|
-# if (PNG_LIBPNG_VER < 10201)
|
|
-# define png_voidp_NULL (png_voidp)NULL
|
|
-# define png_error_ptr_NULL (png_error_ptr)NULL
|
|
-# endif
|
|
#endif
|
|
|
|
#define pi_mktag(c1,c2,c3,c4) (((c1)<<24)|((c2)<<16)|((c3)<<8)|(c4))
|
|
@@ -856,8 +852,8 @@
|
|
png_infop info_ptr;
|
|
|
|
png_ptr = png_create_write_struct
|
|
- (PNG_LIBPNG_VER_STRING, png_voidp_NULL,
|
|
- png_error_ptr_NULL, png_error_ptr_NULL);
|
|
+ (PNG_LIBPNG_VER_STRING, NULL,
|
|
+ NULL, NULL);
|
|
|
|
if (!png_ptr)
|
|
return;
|
|
--- ./src/pilot-read-notepad.c.orig 2007-02-04 17:06:02.000000000 -0600
|
|
+++ ./src/pilot-read-notepad.c 2010-02-19 12:53:03.000000000 -0600
|
|
@@ -39,10 +39,6 @@
|
|
|
|
#ifdef HAVE_PNG
|
|
#include "png.h"
|
|
-#if (PNG_LIBPNG_VER < 10201)
|
|
- #define png_voidp_NULL (png_voidp)NULL
|
|
- #define png_error_ptr_NULL (png_error_ptr)NULL
|
|
-#endif
|
|
#endif
|
|
|
|
const char *progname;
|
|
@@ -166,8 +162,8 @@
|
|
width = n->body.width + 8;
|
|
|
|
png_ptr = png_create_write_struct
|
|
- ( PNG_LIBPNG_VER_STRING, png_voidp_NULL,
|
|
- png_error_ptr_NULL, png_error_ptr_NULL);
|
|
+ ( PNG_LIBPNG_VER_STRING, NULL,
|
|
+ NULL, NULL);
|
|
|
|
if(!png_ptr)
|
|
return;
|
|
--- ./src/pilot-read-screenshot.c.orig 2006-11-02 08:54:31.000000000 -0600
|
|
+++ ./src/pilot-read-screenshot.c 2010-02-19 12:50:44.000000000 -0600
|
|
@@ -40,10 +40,6 @@
|
|
|
|
#ifdef HAVE_PNG
|
|
# include "png.h"
|
|
-# if (PNG_LIBPNG_VER < 10201)
|
|
-# define png_voidp_NULL (png_voidp)NULL
|
|
-# define png_error_ptr_NULL (png_error_ptr)NULL
|
|
-# endif
|
|
#endif
|
|
|
|
#define pi_mktag(c1,c2,c3,c4) (((c1)<<24)|((c2)<<16)|((c3)<<8)|(c4))
|
|
@@ -87,8 +83,8 @@
|
|
gray_buf = malloc( state->w );
|
|
|
|
png_ptr = png_create_write_struct
|
|
- (PNG_LIBPNG_VER_STRING, png_voidp_NULL,
|
|
- png_error_ptr_NULL, png_error_ptr_NULL);
|
|
+ (PNG_LIBPNG_VER_STRING, NULL,
|
|
+ NULL, NULL);
|
|
|
|
if (!png_ptr)
|
|
return;
|
|
--- ./src/pilot-read-palmpix.c.orig 2007-02-04 17:06:03.000000000 -0600
|
|
+++ ./src/pilot-read-palmpix.c 2010-02-19 12:51:10.000000000 -0600
|
|
@@ -42,10 +42,6 @@
|
|
|
|
#ifdef HAVE_PNG
|
|
#include "png.h"
|
|
-#if (PNG_LIBPNG_VER < 10201)
|
|
- #define png_voidp_NULL (png_voidp)NULL
|
|
- #define png_error_ptr_NULL (png_error_ptr)NULL
|
|
-#endif
|
|
#endif
|
|
|
|
const char *progname;
|
|
@@ -223,8 +219,8 @@
|
|
png_infop info_ptr;
|
|
|
|
png_ptr = png_create_write_struct
|
|
- ( PNG_LIBPNG_VER_STRING, png_voidp_NULL,
|
|
- png_error_ptr_NULL, png_error_ptr_NULL);
|
|
+ ( PNG_LIBPNG_VER_STRING, NULL,
|
|
+ NULL, NULL);
|
|
|
|
if(!png_ptr)
|
|
return;
|