diff options
author | John Marino <marino@FreeBSD.org> | 2015-01-03 18:37:50 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2015-01-03 18:37:50 +0000 |
commit | a98bc0e1c0cef7a7fe1dbff1614eb3fbdc73bcc3 (patch) | |
tree | b942712b542329ce75bc37cf4ac053b52b33cb67 | |
parent | - Update to version 0.93.0 [1] (diff) |
x11/bbdock: #include <cstring>
This is fallout from png upgrade. Modern GCC needs <cstring> for several
functions, although clang seems to be happy without it.
Notes
Notes:
svn path=/head/; revision=376149
-rw-r--r-- | x11/bbdock/files/patch-src_Dock.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/x11/bbdock/files/patch-src_Dock.cc b/x11/bbdock/files/patch-src_Dock.cc new file mode 100644 index 000000000000..d5c9e83a3650 --- /dev/null +++ b/x11/bbdock/files/patch-src_Dock.cc @@ -0,0 +1,10 @@ +--- src/Dock.cc.orig 2011-03-29 19:48:36 UTC ++++ src/Dock.cc +@@ -32,6 +32,7 @@ + #include <stdio.h> + #include <unistd.h> + #include <iostream> ++#include <cstring> + #include <string> + + #include "Dock.hh" |