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

  1. # Make sure cygwin is not in the path, it will lead to all kinds of problems.
  2. # also start with clean directories, tkimg doesn't clean up after itself
  3. ls /c/src
  4. tcl
  5. tk
  6. tkimg
  7. cd /c/src/tcl/win
  8. ./configure --prefix=/c/Tcl
  9. make
  10. cd /c/src/tk/win
  11. ./configure --prefix=/c/Tcl
  12. make
  13. cd /c/src/tkimg
  14. mkdir build
  15. cd build
  16. ../configure --prefix=/c/Tcl --with-tcl=/c/src/tcl/win --with-tk=/c/src/tk/win
  17. make
  18. make install
  19.