while compiling from source on Xubuntu, there were some small issues. On errors of type :
UCvsFolders.cpp: In member function void UCvsFolders::OnTreeSelecting(int, void*):
UCvsFolders.cpp:831: error: call of overloaded ResetView(UStr&) is ambiguous
UCvsFiles.h:38: note: candidates are: void UCvsFiles::ResetView(const char*, bool)
UCvsFiles.h:41: note: void UCvsFiles::ResetView(bool, bool)
change source on the specified lines :
ResetView(fullpath, true);
with :
ResetView((char *)fullpath, true);
it happens 5 or 6 times...
on error :
checking for gtk-config... no
checking for GTK - version >= 1.2.0... no
*** The gtk-config script installed by GTK could not be found
*** If GTK was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the GTK_CONFIG environment variable to the
*** full path to gtk-config.
configure: error: Cannot find GTK: Is gtk-config in path?
use : Synaptic Package manager to add package :
libgtk1.2-dev
on error :
checking whether gcc accepts -g... yes
checking for c++... no
checking for g++... no
checking for gcc... gcc
checking whether the C++ compiler (gcc ) works... no
configure: error: installation or configuration problem: C++ compiler cannot
create executables.
configure: error: /bin/sh './configure' failed for cvsunix
use : Synaptic Package manager to add package :
g++
then it works...
Gwendal