Posted to tcl by mjanssen at Tue Jan 20 16:52:17 GMT 2009view pretty

# Make sure cygwin is not in the path, it will lead to all kinds of problems.
# also start with clean directories, tkimg doesn't clean up after itself
ls /c/src
tcl
tk
tkimg
cd /c/src/tcl/win
./configure --prefix=/c/Tcl
make
cd /c/src/tk/win
./configure --prefix=/c/Tcl
make
cd /c/src/tkimg
mkdir build
cd build
../configure --prefix=/c/Tcl --with-tcl=/c/src/tcl/win --with-tk=/c/src/tk/win
make
make install