Blob Blame History Raw
--- src/tools/exploder_utils.cpp.libpng	2011-11-06 14:44:26.618711420 -0600
+++ src/tools/exploder_utils.cpp	2011-11-06 14:57:12.150006511 -0600
@@ -15,6 +15,7 @@
 #include "exploder_utils.hpp"
 #include "game_config.hpp"
 #include "serialization/string_utils.hpp"
+#include <zlib.h>
 #include <png.h>
 
 exploder_point::exploder_point(const std::string &s)
@@ -174,8 +175,8 @@
 	//TODO: review whether providing NULL error handlers is something
 	//sensible
 	png_struct* png_ptr = png_create_write_struct
-		(PNG_LIBPNG_VER_STRING, reinterpret_cast<png_voidp>(png_voidp_NULL),
-		 png_error_ptr_NULL, png_error_ptr_NULL);
+		(PNG_LIBPNG_VER_STRING, reinterpret_cast<png_voidp>(NULL),
+		 NULL, NULL);
 	if(!png_ptr)
 		throw exploder_failure("Unable to initialize the png write structure");