[Python-checkins] python/dist/src/PCbuild readme.txt, 1.43.8.1, 1.43.8.2

theller at users.sourceforge.net theller at users.sourceforge.net
Fri Apr 16 16:09:59 EDT 2004


Update of /cvsroot/python/python/dist/src/PCbuild
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25116

Modified Files:
      Tag: release23-maint
	readme.txt 
Log Message:
Add tcl test results on Windows XP.

Add instructions how to build tix - will probably be included in Python 2.3.4.


Index: readme.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/PCbuild/readme.txt,v
retrieving revision 1.43.8.1
retrieving revision 1.43.8.2
diff -C2 -d -r1.43.8.1 -r1.43.8.2
*** readme.txt	23 Sep 2003 07:14:39 -0000	1.43.8.1
--- readme.txt	16 Apr 2004 20:09:57 -0000	1.43.8.2
***************
*** 105,108 ****
--- 105,111 ----
      XXX That was on Win98SE.  On Win2K:
      XXX all.tcl   Total 10480   Passed 9781    Skipped 698     Failed  1
+     XXX
+     XXX On WinXP:
+     XXX all.tcl:  Total 10480   Passed 9768    Skipped 710     Failed  2
  
      Build Tk
***************
*** 128,131 ****
--- 131,171 ----
      files into the Python distribution.
  
+ tix
+     Tix, the Tk Interface eXtension, is a powerful set of user
+     interface components that expands the capabilities of your Tcl/Tk
+     and Python applications.
+ 
+     Get source
+     ----------
+     Go to
+         http://tix.sourceforge.net/
+     and download tix-8.1.4.tar.gz from the files section.
+     Unpack into
+         dist\tix-8.1.4
+ 
+     Edit win\common.mak in this directory, to set the following variables:
+         TCL_VER=8.4
+ 	INSTALLDIR=..\..\tix-8.1.4
+ 	TCL_PATCH=3
+ 	RMDIR=$(TKDIR)\win\rmd.bat
+ 	MKDIR=$(TKDIR)\win\mkd.bat
+ 
+     Edit win\makefile.vc:
+         TOOLS32 = <directory of bin\cl.exe>
+ 	TOOLS32_rc = <directory of bin\rc.exe>
+ 
+     Edit win\tk8.4\pkgindex.tcl, to replace
+         lappend dirs ../../Dlls
+     with
+ 	lappend dirs [file join [file dirname [info nameofexe]] DLLs]
+ 
+     nmake -f makefile.vc
+     nmake -f makefile.vc install
+ 
+     The tix8184.dll goes to DLLs, the tix8.1 subdirectory goes to 
+     tcl. It differs from the standard tix8.1 subdirectory only in 
+     fixing the path to the DLLs directory.
+ 
+     To test whether this works, execute Demo/tix/tixwidgets.py.
  
  zlib
***************
*** 309,313 ****
  HTML Help
  ---------
- 
  The compiled HTML help file is built from the HTML pages by the script
  Doc/tools/prechm.py. This creates project files which must be compiled
--- 349,352 ----




More information about the Python-checkins mailing list