summaryrefslogtreecommitdiff
path: root/devel/gcvs
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2003-08-24 17:34:45 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2003-08-24 17:34:45 +0000
commit80a61153fa218ea2c9aae0a329c83fe86c089e36 (patch)
treeadb3c2d5e81c6c612c14a0ba26bc618e68c41f8a /devel/gcvs
parentFix COMMENT. (diff)
- Fix gcc33 problems on CURRENT
Notes
Notes: svn path=/head/; revision=87615
Diffstat (limited to 'devel/gcvs')
-rw-r--r--devel/gcvs/Makefile2
-rw-r--r--devel/gcvs/files/patch-common-UCvsFiles.cpp20
-rw-r--r--devel/gcvs/files/patch-common-UCvsFolders.cpp11
3 files changed, 32 insertions, 1 deletions
diff --git a/devel/gcvs/Makefile b/devel/gcvs/Makefile
index 8b768b7c7c4b..5a7e58fada35 100644
--- a/devel/gcvs/Makefile
+++ b/devel/gcvs/Makefile
@@ -7,7 +7,7 @@
PORTNAME= gcvs
PORTVERSION= 1.0
-PORTREVISION= 2
+PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= devel tk84
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
diff --git a/devel/gcvs/files/patch-common-UCvsFiles.cpp b/devel/gcvs/files/patch-common-UCvsFiles.cpp
new file mode 100644
index 000000000000..5e3a1be42966
--- /dev/null
+++ b/devel/gcvs/files/patch-common-UCvsFiles.cpp
@@ -0,0 +1,20 @@
+--- common/UCvsFiles.cpp.orig Tue Aug 13 13:46:40 2002
++++ common/UCvsFiles.cpp Sun Aug 24 13:47:21 2003
+@@ -1214,7 +1214,7 @@
+ {
+ UStr uppath, filename;
+ SplitPath(m_path, uppath, filename);
+- ResetView(uppath, true);
++ ResetView( (const char *)uppath, true);
+ return 0;
+ }
+
+@@ -1895,7 +1895,7 @@
+ fullpath << (*data)[EntnodeData::kName];
+ if(data->GetType() == ENT_SUBDIR)
+ {
+- ResetView(fullpath, true);
++ ResetView( (const char *)fullpath, true);
+ }
+ else
+ {
diff --git a/devel/gcvs/files/patch-common-UCvsFolders.cpp b/devel/gcvs/files/patch-common-UCvsFolders.cpp
new file mode 100644
index 000000000000..26d6f1fd7a25
--- /dev/null
+++ b/devel/gcvs/files/patch-common-UCvsFolders.cpp
@@ -0,0 +1,11 @@
+--- common/UCvsFolders.cpp.orig Fri Aug 2 17:05:02 2002
++++ common/UCvsFolders.cpp Sun Aug 24 13:42:55 2003
+@@ -828,7 +828,7 @@
+ if(fileView != 0L)
+ {
+ ASSERT(fileView->IsKindOf(URUNTIME_CLASS(UCvsFiles)));
+- fileView->ResetView(path);
++ fileView->ResetView( (const char *)path);
+ }
+ }
+