diff options
author | marino <marino@FreeBSD.org> | 2015-09-21 02:59:19 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-09-21 02:59:19 +0800 |
commit | 0a356def49aec544cf5a41cf1631061b8ebe2296 (patch) | |
tree | 86040123565ac832e7de707e9154beb44d8aa503 /converters | |
parent | a9727b94f5ddcdc4d9a2d7e14c746fff892d52ab (diff) | |
download | freebsd-ports-gnome-0a356def49aec544cf5a41cf1631061b8ebe2296.tar.gz freebsd-ports-gnome-0a356def49aec544cf5a41cf1631061b8ebe2296.tar.zst freebsd-ports-gnome-0a356def49aec544cf5a41cf1631061b8ebe2296.zip |
Add <cstring> and/or <cstdlib> to support modern gcc
Four of these five patches should have been part of the previous
commit but I didn't notice them. The ampasCTL pach is to fix a
regression that I introduced by removing part of the post-patch
target.
Approved by: gcc5 support blanket
Diffstat (limited to 'converters')
-rw-r--r-- | converters/fix-mime-charset/files/patch-src_input.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/converters/fix-mime-charset/files/patch-src_input.cc b/converters/fix-mime-charset/files/patch-src_input.cc new file mode 100644 index 000000000000..cc4ba53852df --- /dev/null +++ b/converters/fix-mime-charset/files/patch-src_input.cc @@ -0,0 +1,10 @@ +--- src/input.cc.orig 2003-07-29 23:29:11 UTC ++++ src/input.cc +@@ -3,6 +3,7 @@ + #include "input.h" + #include <iostream> + #include <fstream> ++#include <cstring> + + /* Input */ + |