mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
400b47840a
This is fallout from png upgrade. Modern GCC needs <cstring> for memcpy, although clang seems to be happy without it.
11 lines
262 B
C++
11 lines
262 B
C++
--- apngdis.cpp.orig 2015-01-03 02:18:00 UTC
|
|
+++ apngdis.cpp
|
|
@@ -30,6 +30,7 @@
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <vector>
|
|
+#include <cstring>
|
|
#include "png.h" /* original (unpatched) libpng is ok */
|
|
#include "zlib.h"
|
|
using namespace std;
|