Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2005-10-07 12:06:25
Size: 495
Editor: linuxerw
Comment:
Revision 4 as of 2009-07-15 14:32:38
Size: 1457
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Prerequisites =
Line 3: Line 5:

Required YAST modules:
 * xorg-x11-devel - Include Files and Libraries mandatory for Development
Line 7: Line 12:
 * thread2.6.2.tar.gz # TCL thread extension
Line 9: Line 15:
= Installing TCL = Place all four source tar balls into the same directory and also start each installation step from this directory.

= Installing TCL 8.4.11 =
Line 19: Line 27:

= 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"
}}}

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)