Am 21.05.13 19:25, schrieb nivparsons:
> I've been using tcl 8.4.19 for ages, but just got
> moved to 8.5.11 at work, and now a lot of my scripts fail.
>
> For instance, I use:
>
> "package require aes"
>
> but this gets thrown out by 8.5
Is it "can't find package aes"?
> I need an idiots guide to upgrading, anyone help please?
There are no big syntax differences between 8.4 and 8.5 in the sense
that code will stop working that worked before. Can it be that you are
simply missing the modules you used to have? For instance, ActiveTcl
shipped 8.4 with a complete set of modules, whereas 8.5 comes with a
smaller installation. You can fetch a lot of stuff via teacup, see
http://wiki.tcl.tk/17305
For instance, try
teacup install ActiveState::ActiveTcl
Christian