1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

graphics/libgfx: #include <cstring>

This is fallout from png upgrade.  Modern GCC needs <cstring> for memcpy,
although clang seems to be happy without it.
This commit is contained in:
John Marino 2015-01-03 01:07:50 +00:00
parent dc1f2c30da
commit 942e944991
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=376076

View File

@ -1,6 +1,14 @@
--- src/raster-png.cxx.orig 2004-09-27 06:45:31.000000000 +0200
+++ src/raster-png.cxx 2012-05-04 12:59:52.000000000 +0200
@@ -42,7 +42,7 @@
--- src/raster-png.cxx.orig 2004-09-27 04:45:31 UTC
+++ src/raster-png.cxx
@@ -9,6 +9,7 @@
************************************************************************/
+#include <cstring>
#include <vector>
#include <gfx/gfx.h>
#include <gfx/raster.h>
@@ -42,7 +43,7 @@ ByteRaster *read_png_image(const char *f
// Because we didn't set up any error handlers, we need to be
// prepared to handle longjmps out of the library on error
// conditions.
@ -9,7 +17,7 @@
{
png_destroy_read_struct(&png_ptr, &info_ptr, NULL);
fclose(fp);
@@ -132,7 +132,7 @@
@@ -132,7 +133,7 @@ bool write_png_image(const char *file_na
return false;
}