diff options
author | ijliao <ijliao@FreeBSD.org> | 2004-01-25 22:25:59 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2004-01-25 22:25:59 +0800 |
commit | 3bc86728069f4f0abf310333baf71a3717bfb54d (patch) | |
tree | 9b7bbf0a86c0c48321399b9aa69a97b8a499168b /devel | |
parent | f62e15dcad5c176f9f9db23e00555793a75c63af (diff) | |
download | freebsd-ports-gnome-3bc86728069f4f0abf310333baf71a3717bfb54d.tar.gz freebsd-ports-gnome-3bc86728069f4f0abf310333baf71a3717bfb54d.tar.zst freebsd-ports-gnome-3bc86728069f4f0abf310333baf71a3717bfb54d.zip |
fix build on -stable
Noticed by: bento via kris
Diffstat (limited to 'devel')
-rw-r--r-- | devel/codeworker/Makefile | 1 | ||||
-rw-r--r-- | devel/codeworker/files/patch-DtaPatternScript.h | 10 | ||||
-rw-r--r-- | devel/codeworker/files/patch-ScpStream.h | 11 |
3 files changed, 22 insertions, 0 deletions
diff --git a/devel/codeworker/Makefile b/devel/codeworker/Makefile index 4ce3e4390de0..06d76c7f4190 100644 --- a/devel/codeworker/Makefile +++ b/devel/codeworker/Makefile @@ -26,6 +26,7 @@ post-patch: @${REINPLACE_CMD} -e "s|^CXXFLAGS|#CXXFLAGS|g" \ -e s"|LFLAGS|LDFLAGS|" -e "s|^LDFLAGS|#LDFLAGS|" \ -e "s|CC|CXX|g" -e "s|^CXX|#CXX|g" ${WRKSRC}/Makefile + @${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -e "s|
||" do-install: ${INSTALL_PROGRAM} ${WRKSRC}/codeworker ${PREFIX}/bin diff --git a/devel/codeworker/files/patch-DtaPatternScript.h b/devel/codeworker/files/patch-DtaPatternScript.h new file mode 100644 index 000000000000..700404749e3e --- /dev/null +++ b/devel/codeworker/files/patch-DtaPatternScript.h @@ -0,0 +1,10 @@ +--- DtaPatternScript.h.orig Sun Jan 25 21:36:50 2004 ++++ DtaPatternScript.h Sun Jan 25 21:40:17 2004 +@@ -24,6 +24,7 @@ +
+ #include "DtaScript.h"
+ #include <map>
++#include <memory> +
+ namespace CodeWorker {
+ #ifndef EXECUTE_FUNCTION_TYPE
diff --git a/devel/codeworker/files/patch-ScpStream.h b/devel/codeworker/files/patch-ScpStream.h new file mode 100644 index 000000000000..893bce5698b4 --- /dev/null +++ b/devel/codeworker/files/patch-ScpStream.h @@ -0,0 +1,11 @@ +--- ScpStream.h.orig Sun Jan 25 21:34:17 2004 ++++ ScpStream.h Sun Jan 25 21:34:40 2004 +@@ -34,6 +34,8 @@ + #include <map>
+ #include <set>
+
++#include <ctime>
++
+ namespace CodeWorker {
+
+ #ifdef IN
|