aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2015-09-20 23:22:52 +0800
committermarino <marino@FreeBSD.org>2015-09-20 23:22:52 +0800
commit57fb4297a56ab8c99d8270f6203eb0d33f52da7b (patch)
treeb77ae01593f62db50b5e7ec8e4778c4c4711bbb2
parente434a250b6633ad6da96d97eaa211312e17539dc (diff)
downloadfreebsd-ports-gnome-57fb4297a56ab8c99d8270f6203eb0d33f52da7b.tar.gz
freebsd-ports-gnome-57fb4297a56ab8c99d8270f6203eb0d33f52da7b.tar.zst
freebsd-ports-gnome-57fb4297a56ab8c99d8270f6203eb0d33f52da7b.zip
cad/meshdev: Support modern gcc by adding <cstring> header
-rw-r--r--cad/meshdev/files/patch-src_VectorT.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/cad/meshdev/files/patch-src_VectorT.h b/cad/meshdev/files/patch-src_VectorT.h
new file mode 100644
index 000000000000..b2a88aa39e89
--- /dev/null
+++ b/cad/meshdev/files/patch-src_VectorT.h
@@ -0,0 +1,10 @@
+--- src/VectorT.h.orig 2012-02-06 13:02:05 UTC
++++ src/VectorT.h
+@@ -22,6 +22,7 @@
+ #include <math.h>
+ #include <algorithm>
+ #include <iostream>
++#include <cstring>
+
+ template<typename Type, int Size>
+ class VectorT