aboutsummaryrefslogtreecommitdiff
path: root/mail/spamprobe
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2010-03-29 15:18:57 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2010-03-29 15:18:57 +0000
commitafcd0469e4d1ac0f99a56847d9e0a1436255f549 (patch)
tree06ca2347a7bb0fdc79a5c8ce025030bf5074f182 /mail/spamprobe
parent91219176128d438c630cb99da9f58300e537fa77 (diff)
downloadports-afcd0469e4d1ac0f99a56847d9e0a1436255f549.tar.gz
ports-afcd0469e4d1ac0f99a56847d9e0a1436255f549.zip
- fix build for png-1.4.1
Notes
Notes: svn path=/head/; revision=251734
Diffstat (limited to 'mail/spamprobe')
-rw-r--r--mail/spamprobe/files/patch-src_parser_PngParser.cc23
1 files changed, 23 insertions, 0 deletions
diff --git a/mail/spamprobe/files/patch-src_parser_PngParser.cc b/mail/spamprobe/files/patch-src_parser_PngParser.cc
new file mode 100644
index 000000000000..3f652ac81b26
--- /dev/null
+++ b/mail/spamprobe/files/patch-src_parser_PngParser.cc
@@ -0,0 +1,23 @@
+--- src/parser/PngParser.cc.orig 2006-11-17 08:11:10.000000000 +0100
++++ src/parser/PngParser.cc 2010-03-29 17:15:51.000000000 +0200
+@@ -53,9 +53,9 @@
+ {
+ if (m_initialized) {
+ if (m_infoPtr) {
+- png_destroy_read_struct(&m_pngPtr, &m_infoPtr, png_infopp_NULL);
++ png_destroy_read_struct(&m_pngPtr, &m_infoPtr, NULL);
+ } else {
+- png_destroy_read_struct(&m_pngPtr, png_infopp_NULL, png_infopp_NULL);
++ png_destroy_read_struct(&m_pngPtr, NULL, NULL);
+ }
+ }
+ }
+@@ -104,7 +104,7 @@
+ int bit_depth, color_type, interlace_type;
+
+ png_get_IHDR(m_pngPtr, m_infoPtr, &width, &height, &bit_depth, &color_type,
+- &interlace_type, int_p_NULL, int_p_NULL);
++ &interlace_type, NULL, NULL);
+
+ string base_token("image_0");
+ sendToken(base_token + "_height_" + num_to_string((int)width));