Yes, I have stumbled onto this page; however, looking over Togl again, I think I don't have it properly set up.
Togl is a libary and I need to input it into my tcl8.5 and tk8.5 folder; however, I'm not entirely sure how to do this (I'm very new to Linux). When I try to move the library over, it says Permission Denied. Also, I don't fully understand the instructions of the ./configure that can supposedly solve the problem. The instructions I have been given are the following:
(1) To intstall Togl, download it from this site on SourceForge. As of July 2007, Version 1.7 is fine.
After unpacking the tarball, installing it on my Linux box was as simple as:
./configure; make; sudo make install
(2) To build Tck/Tk libraries with Togl support, go to this site on SourceForce to download the latest versions of Tcl and Tk.
As of July 2007, I was unable to build version 8.4.15 on my Redhat Linux box due to an odd error, but 8.4.7 built fine. After unpacking the two tarballs I did the following:
cd tcl8.4.7/unix
./configure; make; sudo make install
cd tk8.4.7/unix
./configure; make; sudo make install
This build should find the Togl library previously installed under /usr/local.
(3) Now you can re-build Python and it should find the correct Tcl/Tk libraries under /usr/local. Note that when you run ./configure as the first step in building Python, it will tell you what it found for Tcl/Tk.
-------------------------------
So, I have the tarball unpacked, but I don't know how to configure and install it in the proper directories (which I know where the directories are, but putting anything in them leads to a Permission Denied error).
I really appreciate your help with this. Thanks.