We want to move a project from CVS Repository to SVN Repository ?
For this we have installed cvs2svn-2.4.0 in our unix tomcat server. We are having python utility 2.3.3 under /usr/local/bin and libstdc++.so.6 under /usr/local/lib.
Now when we are running cvs2svn command from cvs2svn-2.4.0, we are getting the below error:- ld.so.1: python: fatal: libstdc++.so.5: open failed: No such file or directory.
My Questions are :-
Is only python 2.4 required for CVS2SVN or any higher ver of Python can also be installed ?
Presently Python 2.3.3 is present under /usr/local/bin, is it to be placed under /usr/bin? both the paths /usr/local/bin and /usr/bin are set as PATH Environment Variable ?
Will libstdc++.so.6 compatible with python 2.4 or higher or do we have to install libstdc++.so.5 ?
libstdc++.so.6 is placed under usr/local/lib, do we have to place it under /usr/lib, then can it work ?
In Env Variable PATH, both /usr/local/lib and /usr/lib are not present , do we have to export these directories under Env Path Variable ?
Thanks in Advance