From: Abhishek T. <abh...@au...> - 2015-12-11 17:53:09
|
if { [lsearch $auto_path [file dirname [info script]]] == -1 } { lappend auto_path [file dirname [info script]] } lappend auto_path "C:/LM_120_with_unittests/dist/tclweb/lib" package require Tcl 8.3 package require base64 2.2 if { ![info exists tclModeEmbedded] } { package require httpd::threadmgr 1.0 #package require httpd::threadmgr } My code is above and its failing and giving error : can't find package httpd::threadmgr 1.0 package require Tcl 8.3 - What does this statement mean. is this the reason. I changed it to 8.5 or 8.4, did not work. I dont think I have 8.3 on my machine. Please help Regards Abhishek On Fri, Dec 11, 2015 at 10:04 PM, Abhishek Tiwari <abh...@au... > wrote: > ------------------------------------------ > $ tclsh mult_1_run.tcl > can't find package httpd::threadmgr 1.0 > while executing > "package require httpd::threadmgr 1.0" > invoked from within > "if { ![info exists tclModeEmbedded] } { > package require httpd::threadmgr 1.0 > }" > (file "C:/code-coverage/TCL.2/tclport.tcl" line 26) > invoked from within > "source C:/code-coverage/TCL.2/tclport.tcl" > ("package ifneeded tclport 1.0" script) > invoked from within > "package require tclport" > (file "C:/code-coverage/TCL.2/mf_look.tcl" line 13) > invoked from within > "source C:/code-coverage/TCL.2/mf_look.tcl" > ("package ifneeded mf_look 1.0" script) > invoked from within > "package require mf_look" > (file "mult_1_run.tcl" line 18) > ------------------------------------------ > > I am facing this error. > Please help > Regards > Abhishek > |