Hi,

If you have a capability to build WinCvs from source, there is a simple way 
to make it working with new TCL8.3 - all you have to do is to find the 
cvsgui\common\TclGlue.cpp, and modify:

bool CTcl_Interp::IsAvail(void) [line 666]

from:
**********************************************************
#       ifdef WIN32
                tclAvail = CompatLoadLibrary(&connID, "tcl82.dll") != 0 ||
                        CompatLoadLibrary(&connID, "tcl81.dll") != 0;
#       else /* !WIN32 */

**********************************************************
to:
**********************************************************
#       ifdef WIN32
                tclAvail = CompatLoadLibrary(&connID, "tcl83.dll") != 0 ||
                        CompatLoadLibrary(&connID, "tcl82.dll") != 0 ||
                        CompatLoadLibrary(&connID, "tcl81.dll") != 0;
#       else /* !WIN32 */
**********************************************************

I think that since TCL is changing the ".dll" name from version to version 
it might be good to let the user to setup the path to TCL to be looked for 
if the default names will not work... I might do it later and send to Alex.

BR,
Jerzy

The first thing they don't teach you at school: "Never say never".
All the issues not related to the list please send to me in private, thanks.

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

Reply via email to