--- 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
 	{
--- 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);
 		}
 	}
 
--- cvsunix/configure.orig	Wed Mar  7 04:02:21 2001
+++ cvsunix/configure	Mon Jan 21 16:24:32 2002
@@ -3423,7 +3423,7 @@
   includeopt="${includeopt} -I$GSSAPI/include"
   # FIXME: This is ugly, but these things don't seem to be standardized.
   if test "$ac_cv_header_gssapi_h" = "yes"; then
-    LIBS="$LIBS -L$GSSAPI/lib -lgssapi -lkrb5 -lasn1 -ldes -lroken"
+    LIBS="$LIBS -L$GSSAPI/lib -lgssapi -lkrb5 -lasn1 -lcrypto -lroken -lcrypt -lcom_err"
   else
     LIBS="$LIBS -L$GSSAPI/lib -lgssapi_krb5 -lkrb5 -lcrypto -lcom_err"
   fi
--- cvsunix/lib/Makefile.in.orig	Thu Nov  7 19:29:36 2002
+++ cvsunix/lib/Makefile.in	Tue Jul  1 04:38:17 2003
@@ -200,6 +200,7 @@
 regex.o: regex.h
 md5.o: md5.h
 argmatch.o: cvsgui.h
+hostname.o: cvsgui.h
 
 xlint:
 	@echo xlint does nothing
--- cvsunix/src/Makefile.in.orig	Sun Dec 22 16:59:11 2002
+++ cvsunix/src/Makefile.in	Wed Jan 15 04:57:13 2003
@@ -91,7 +91,7 @@
 install: installdirs
 	@for prog in $(PROGS); do \
 	  echo Installing $$prog in $(bindir); \
-	  $(INSTALL) $$prog $(bindir)/$$prog ; \
+	  $(INSTALL_PROGRAM) $$prog $(bindir)/$$prog ; \
 	done
 	@for script in $(SCRIPTS); do \
 	  echo Installing $$script in $(bindir); \
--- make_configure.orig	Thu Nov  7 19:42:00 2002
+++ make_configure	Fri Dec 20 19:23:07 2002
@@ -1,14 +1,14 @@
-aclocal
-autoheader
+aclocal14
+autoheader213
 
 list=`find . -name Makefile.am -exec dirname {} \;`
 
 for subdir in $list
 do
 	echo making $subdir/Makefile.in
-	automake --add-missing --gnu $subdir/Makefile
+	automake14 --add-missing --gnu $subdir/Makefile
 done
 
-autoconf 
+autoconf213
 
 ./configure $*
