aboutsummaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authormi <mi@FreeBSD.org>2013-04-25 06:52:16 +0800
committermi <mi@FreeBSD.org>2013-04-25 06:52:16 +0800
commitfd32f79e63b73a37ad36d13ec0ef0327c09608c6 (patch)
tree3b56fd329e9a6271923f198aa34096c30844edd4 /audio
parentbf739c4112db591ecd4921ef58cf23b010ad9e51 (diff)
downloadfreebsd-ports-gnome-fd32f79e63b73a37ad36d13ec0ef0327c09608c6.tar.gz
freebsd-ports-gnome-fd32f79e63b73a37ad36d13ec0ef0327c09608c6.tar.zst
freebsd-ports-gnome-fd32f79e63b73a37ad36d13ec0ef0327c09608c6.zip
Add a collection of patches to explicitly include some
headers, that g++48 does not include implicitly (any more). This allows compiling arts with g++48.
Diffstat (limited to 'audio')
-rw-r--r--audio/arts/files/patch-g++4836
1 files changed, 36 insertions, 0 deletions
diff --git a/audio/arts/files/patch-g++48 b/audio/arts/files/patch-g++48
new file mode 100644
index 000000000000..188e6e5d88bb
--- /dev/null
+++ b/audio/arts/files/patch-g++48
@@ -0,0 +1,36 @@
+Explicitly include certain things, because g++48 requires it.
+
+ -mi
+
+--- mcop/tcpconnection.cc 2008-02-13 04:35:23.000000000 -0500
++++ mcop/tcpconnection.cc 2013-04-24 18:32:16.000000000 -0400
+@@ -36,4 +36,5 @@
+ #include "debug.h"
+ #include <stdlib.h>
++#include <string.h>
+
+ using namespace std;
+--- mcop/unixconnection.cc 2008-02-13 04:35:23.000000000 -0500
++++ mcop/unixconnection.cc 2013-04-24 18:32:25.000000000 -0400
+@@ -30,4 +30,5 @@
+ #include <errno.h>
+ #include <stdlib.h>
++#include <string.h>
+
+ using namespace std;
+--- mcop/unixserver.cc 2007-10-08 05:47:08.000000000 -0400
++++ mcop/unixserver.cc 2013-04-24 18:33:33.000000000 -0400
+@@ -41,4 +41,5 @@
+ #include <stdio.h>
+ #include <errno.h>
++#include <string.h>
+
+ using namespace std;
+--- mcop/mcoputils.cc 2008-02-13 04:35:23.000000000 -0500
++++ mcop/mcoputils.cc 2013-04-24 18:35:58.000000000 -0400
+@@ -24,4 +24,5 @@
+ #include "mcopconfig.h"
+ #include "debug.h"
++#include <limits.h>
+ #include <pwd.h>
+ #include <sys/stat.h>