summaryrefslogtreecommitdiffstats
path: root/win
Commit message (Collapse)AuthorAgeFilesLines
* * library/platform/platform.tcl: Fixed handling of cpu ia64,andreas_kupries2009-05-291-3/+3
| | | | | | * library/platform/pkgIndex.tcl: taking ia64_32 into account * unix/Makefile.in: now. Bumped version to 1.0.5. Updated the * win/Makefile.in: installation commands.
* Tcl icon upgraded and SVG file added.patthoyts2009-05-011-0/+0
| | | | | | | | Windows 7 makes significant use of large icon resources. An SVG version of the tcl feather is included and has been used to generate the set of icons recommended for use on Vista except for the 256x256 PNG version. Inclusion of this prevents building with MSVC6 and a number of other tools which cannot handle PNG in in ico files. Hence the largest icon included is 64x64 at 32bit depth.
* Fix 64-bit detection for zlib on Win64nijtmans2009-04-302-58/+58
|
* Removed newline appended to POST data.patthoyts2009-04-191-3/+3
| | | | Added tests to check that the data provided by a POST is as stated in the content-length [Bug 2715421]
* Improved HTTP/1.1 support and added specific HTTP/1.1 testing.patthoyts2009-04-104-15/+40
| | | | | | | | This patch makes use of the 8.6 zlib support to provide for deflate and gzip support and handles the -channel option with compression and chunked transfer encoding. For the -handler option we currently disable HTTP/1.1 features as we cannot properly pass the data through to the caller.
* * library/platform/platform.tcl: Extended the darwin sections toandreas_kupries2009-04-081-3/+3
| | | | | | | | | * library/platform/pkgIndex.tcl: add a kernel version number to * unix/Makefile.in: the identifier for anything from Leopard (10.5) * win/Makefile.in: on up. Extended patterns for same. Extended cpu * doc/platform.n: recognition for 64bit Tcl running on a 32bit kernel on a 64bit processor (By Daniel Steffen). Bumped version to 1.0.4. Updated Makefiles.
* * library/tcltest/tcltest.tcl: Converted [eval]s (some unsafe!) todgp2009-04-081-3/+3
| | | | | | * library/tcltest/pkgIndex.tcl: {*} in tcltest package. [Bug 2570363] * unix/Makefile.in: => tcltest 2.3.1 * win/Makefile.in:
* * win/tclWinFile.c (TclpObjNormalizePath): Corrected Tcl_Obj leak.dgp2009-03-181-2/+12
| | | | Thanks to Joe Mistachkin for detection and patch. [Bug 2688184].
* Update to installed module version numberdkf2009-02-241-3/+3
|
* * win/tcl.m4, win/configure: Check if cl groks _WIN64 already tohobbs2009-02-172-6/+183
| | | | | avoid CC manipulation that can screw up later configure checks. Use 'd'ebug runtime in 64-bit builds.
* fix [Feature Request 2605263] use officialnijtmans2009-02-163-8/+66
| | | | zlib build.
* fix [Bug 2605232] tdbc doesn't build whennijtmans2009-02-161-2/+2
| | | | Tcl is compiled with --disable-shared.
* - eliminate some unnessary type castsnijtmans2009-02-037-35/+35
| | | | | - some internal const decorations - spacing
* * win/makefile.vc: Allow nmake flags such as -a (rebuilddavygrvy2009-02-011-5/+5
| | | | all) to pass down to the pkgs targets, too.
* Fix [Bug 1028264]: WSACleanup() too early. The fix introduces "late exit ↵ferrieux2009-01-271-2/+2
| | | | handlers" for similar late process-wide cleanups.
* Fix [Bug 2446662]: resync Win behavior on RST with that of unix (EOF).ferrieux2009-01-261-2/+14
|
* Addressed the over-building nature of the htmlhelp target by moving from adavygrvy2009-01-191-10/+9
| | | | | pseudo target to a real target dependent on the entire docs/ directory contents.
* * win/build.vc.bat: Improved tools detection and error message.davygrvy2009-01-193-116/+67
| | | | | | | | | * win/makefile.vc: Reorganized the $(TCLOBJ) file list into seperate parts for easier maintenance. Matched all source built using -GL to both $(lib) and $(link) to use -LTCG and avoid a warning message. * win/nmakehlp.c: Removed -g option and GrepForDefine() func as it isn't being used anymore. The -V option method is much better.
* * generic/tcl.h: Bump patchlevel to 8.6b1.1 to distinguishdgp2009-01-162-3/+3
| | | | | | | | * library/init.tcl: CVS snapshots from the 8.6b1 and 8.6b2 releases * unix/configure.in: and to deal with the fact that the HEAD of * win/configure.in: init.tcl will not [source] in Tcl 8.6b1 . * unix/configure: autoconf-2.59
* Style fixes (unfouling whitespace, sorting comments, removing useless casts, ↵dkf2009-01-092-12/+29
| | | | etc.)
* fix build of zlib objects with msvcnijtmans2008-12-233-16/+16
|
* Fix [Bug 2459725]dkf2008-12-231-25/+25
|
* [Bug 2458395] Ensure pkgs directories are suitable and quote the paths.patthoyts2008-12-221-10/+27
|
* Support the pkgs treepatthoyts2008-12-221-10/+25
|
* Revised the zlib objects so that they are Kevin B Kenny2008-12-201-14/+49
| | | | | built directly into the build dir, without building an intermediate static library.
* * win/Makefile.in: Kevin B Kenny2008-12-203-23/+59
| | | | | | | | | | | | | | | | | * win/configure.in: Renamed the static library libtcl86s.a to have a name distinct from the import library libtcl86.a. This renaming dodges an ancient bug in the Makefile revealed by the last commit where the $(TCL_LIB_FILE) rule can fire to try to build the static library in a --enable-shared build (and create a static library that subsequently fails to link). *** POTENTIAL INCOMPATIBILITY *** for embedders who link to the static library, but I couldn't figure out how to sort this out any other way. * win/configure: Autoconf 2.59
* Minor updates to make building work better with msys on Windows.dkf2008-12-201-5/+5
| | | | (Apparently the gcc used doesn't like a / at the end of a -I argument...)
* Assign a base address for tdbcpatthoyts2008-12-201-5/+9
|
* More autoconf hacking; now seems to be working fully on Unix...dkf2008-12-191-7/+13
|
* * README: Bump version number to 8.6b1dgp2008-12-192-4/+4
| | | | | | | | | | | | * generic/tcl.h: * library/init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure:
* * win/configure.in:Kevin B Kenny2008-12-193-2510/+1872
| | | | | * win/Makefile.in: Added build of packages in the 'pkgs/' directory. * win/configure: Autoconf 2.59
* nmake build file support for zlibpatthoyts2008-12-191-10/+28
|
* Corrections to make things work with msysdkf2008-12-181-3/+3
|
* Try to do the wizardry again...dkf2008-12-183-428/+19
|
* TIP #332 IMPLEMENTATION - Half-Close for Bidirectional Channelsferrieux2008-12-181-2/+55
|
* eliminate -Wwrite-strings warnings in enable-threads build.nijtmans2008-12-161-2/+2
| | | | use TclNewLiteralStringObj()
* regendkf2008-12-141-1768/+2912
|
* Improve build rules on Win w.r.t. zlibdkf2008-12-144-18/+27
| | | | Improve autoconf magic on Unix and Win
* Eliminate warning: different 'const' qualifiersnijtmans2008-12-113-6/+6
| | | | | with msvc compiler. A few more 'const' optimizations. fix Windows build (msvc) for TIP #234 implementation
* start of zlib support for windowsdkf2008-12-111-1/+17
|
* *** empty log message ***nijtmans2008-12-111-3/+4
|
* Fix [Bug 2380318]dkf2008-12-031-6/+50
|
* Implementation of TIP #210.dkf2008-11-291-36/+86
|
* Eliminate warning: passing arg 4 of `Tcl_SplitList' fromnijtmans2008-11-112-2/+2
| | | | | | incompatible pointer type reverted change from 2008-11-06 (was under the impression that "-Wno-implicit-int" added an extra warning)
* * doc/platform_shell.n: Fixed [Bug 2255235], reported by Ulrichandreas_kupries2008-11-101-3/+3
| | | | | | | | | * library/platform/pkgIndex.tcl: Ring <uring@users.sourceforge.net>. * library/platform/shell.tcl: Updated the LOCATE command in the * library/tm.tcl: package 'platform::shell' to handle the new form * unix/Makefile.in: of 'provide' commands generated by tm.tcl. Bumped * win/Makefile.in: package to version 1.1.4. Added cross-references to the relevant parts of the code to avoid future desynchronization.
* add "-Wno-implicit-int" for gcc, as on UNIXnijtmans2008-11-062-2/+2
| | | | eliminate an 'array index out of bounds' warning on HP-UX'
* Style improvements - invoking callbacks without visual junk.dkf2008-10-2612-183/+184
|
* Fixed a failure to read SHOUTcast streams with the new 2.7patthoyts2008-10-231-3/+3
| | | | | package. Introduced a new intial state as the first response may not be HTTP*.
* Add "const" to many internalnijtmans2008-10-163-7/+7
| | | | | const tables. No functional or API change.
* * win/tclWinChan.c: Fix minor compiler warnings whennijtmans2008-10-145-37/+40
| | | | | | | * win/tclWinDde.c: compiling wit -Wwrite-strings * win/tclWinInit.c: * win/tclWinReg.c: * win/tclWinSerial.c: