[vtkusers] VTK 4 nightly build

Christian Uehara cuehara at uh.edu
Wed Oct 16 19:39:50 EDT 2002


Referencing Re: error compiling VTK40 on SuSE Linux 8.1 (Frank
Broicher):

	Your problem can be solved by type-casting the pointer
(static_cast) char** to const char**.

At the top of vtkCommonTCLInit.cxx, try changing

extern "C"
{
  typedef int (*vtkTclCommandType)(ClientData, Tcl_Interp *,int, char
*[]);
}	

to

extern "C"
{
  typedef int (*vtkTclCommandType)(ClientData, Tcl_Interp *,int, const
char *[]);
}                                                                


_____________________________________________
christian uehara, research associate
univ of houston
em: cuehara at uh.edu





More information about the vtkusers mailing list