
Unpack the tar file *outside* the perl source tree for preference.

To install this package you need perl5.001 

In the distibution is a directory patches.001 which contains 
Larry Wall's patches to perl5.001 to fix various problems.
If you do not have them already
apply these to your perl5.001 and re-build & install perl.

Each patch should be applied like : 

cd .../perl5.001

patch -N < .../patches.001/xxxxx

------------------------------------------------------------------

When you have an up-to-date perl5.001

cd to the directory distribution unpacks to.

Then if you have dynamic linking :

perl Makefile.PL
make 
# Now built locally - if you have dynamic loading you can now say
perl ./basic_demo 

make install

You can now run the converted Tk4.0 demos:

./Tk/demos/widget

For static linking the following is how it is supposed to work 
(I think, but I don't use static linking normally, this scheme 
 worked as far as this on one trial under SunOS4.)

perl Makefile.PL
make perl 

This builds a perl with Tk statically linked in the Tk directory
thus:

./perl ./basic_demo 

should now work.

It is unclear to me whether 'make install' works and I don't want 
to try it on my system incase is breaks the dynamic version.


