diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2003-08-24 17:34:45 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2003-08-24 17:34:45 +0000 |
commit | 80a61153fa218ea2c9aae0a329c83fe86c089e36 (patch) | |
tree | adb3c2d5e81c6c612c14a0ba26bc618e68c41f8a /devel/gcvs | |
parent | ee9d9081d4c26e35e62406380835bf8959583b97 (diff) | |
download | ports-80a61153fa218ea2c9aae0a329c83fe86c089e36.tar.gz ports-80a61153fa218ea2c9aae0a329c83fe86c089e36.zip |
- Fix gcc33 problems on CURRENT
Notes
Notes:
svn path=/head/; revision=87615
Diffstat (limited to 'devel/gcvs')
-rw-r--r-- | devel/gcvs/Makefile | 2 | ||||
-rw-r--r-- | devel/gcvs/files/patch-common-UCvsFiles.cpp | 20 | ||||
-rw-r--r-- | devel/gcvs/files/patch-common-UCvsFolders.cpp | 11 |
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); + } + } + |