Differences between revisions 2 and 3
Revision 2 as of 2005-10-07 13:12:40
Size: 1458
Editor: linuxerw
Comment:
Revision 3 as of 2006-11-17 14:04:19
Size: 1457
Comment:
Deletions are marked like this. Additions are marked like this.
Line 28: Line 28:
= Installing TCL 8.4.11 = = Installing TK 8.4.11 =

Prerequisites

The host pacs1 runs SuSE 9.3. The TCL package of this distribution does not contain the "threads" extension. Therefore TCL/TK must be reinstalled from their source packages.

Required YAST modules:

  • xorg-x11-devel - Include Files and Libraries mandatory for Development

Required source tar balls:

  • tcl8.4.11-src.tar.gz
  • tk8.4.11-src.tar.gz
  • thread2.6.2.tar.gz # TCL thread extension
  • tclBlend1.3.2.tar.gz

Place all four source tar balls into the same directory and also start each installation step from this directory.

Installing TCL 8.4.11

tar -xzf tcl8.4.11-src.tar.gz
cd tcl8.4.11/unix
./configure --enable-threads -enable-shared --enable-man-symlinks --prefix=/usr
make 
make test
su -c "/usr/bin/make install" 

Installing TK 8.4.11

tar -xzf tk8.4.11-src.tar.gz
cd tk8.4.11/unix
./configure --enable-threads -enable-shared --enable-man-symlinks --prefix=/usr --with-tcl=../../tcl8.4.11/unix
make 
#make test
su -c "/usr/bin/make install" 

Install TCL thread extension

tar -xzf thread2.6.2.tar.gz
cd thread2.6.2/unix
../configure --enable-threads --prefix=/usr
make
make test
su -c "/usr/bin/make install" 

Install TCLblend

tar -xzf tclBlend1.3.2.tar.gz
cd tclBlend1.3.2
./configure --prefix=/usr --with-tcl=../tcl8.4.11/unix --with-thread=../thread2.6.2/unix
make
make test
su -c "/usr/bin/make install"

Herschel: PACS/SoftwareInstallation/TCLblend1_3_2 (last edited 2009-07-15 14:32:38 by localhost)