diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-04-09 21:44:57 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-04-09 21:44:57 (GMT) |
commit | e838bdf0780956d1a38698d488f40b5262dc457e (patch) | |
tree | 3ebdbc4f9e77682937b3cccc8cade65b73afa966 /ChangeLog | |
parent | 2f4dbc92d9400613c34d96550cda0da27404b84d (diff) | |
download | tcl-e838bdf0780956d1a38698d488f40b5262dc457e.zip tcl-e838bdf0780956d1a38698d488f40b5262dc457e.tar.gz tcl-e838bdf0780956d1a38698d488f40b5262dc457e.tar.bz2 |
Added 'make html' support for people on Windows, inspired by Pat Thoyts.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 152 |
1 files changed, 76 insertions, 76 deletions
@@ -1,17 +1,21 @@ +2008-04-09 Donal K. Fellows <dkf@users.sf.net> + + * win/Makefile.in (html): Added target for doing convenient + documentation builds, mirroring the one from unix/Makefile. + 2008-04-09 Andreas Kupries <andreask@activestate.com> * tests/chanio.test (chan-io-52.5): Removed '-size -1' from test, - * tests/io.test (io-52.5): does not seem to have any bearing, and - was an illegal value. Test case is not affected by the value of - -size, test flag restoration and that evrything was properly - copied. - - * generic/tclIOCmd.c (Tcl_FcopyObjCmd): Added checking of -size - * tests/ioCmd.test (iocmd-15.{13,14}): value to reject negative - values, and values overflowing 32-bit signed. [Bug 1557855]. Basic - patch by Alexandre Ferrieux <ferrieux@users.sourceforge.net>, with - modifications from me to separate overflow from true negative - value. Extended testsuite. + * tests/io.test (io-52.5): does not seem to have any bearing, and was + an illegal value. Test case is not affected by the value of -size, + test flag restoration and that evrything was properly copied. + + * generic/tclIOCmd.c (Tcl_FcopyObjCmd): Added checking of -size value + * tests/ioCmd.test (iocmd-15.{13,14}): to reject negative values, and + values overflowing 32-bit signed. [Bug 1557855]. Basic patch by + Alexandre Ferrieux <ferrieux@users.sourceforge.net>, with + modifications from me to separate overflow from true negative value. + Extended testsuite. 2008-04-09 Daniel Steffen <das@users.sourceforge.net> @@ -20,9 +24,9 @@ 2008-04-08 Miguel Sofer <msofer@users.sf.net> - * generic/tclExecute.c: added comments to the alignment macros - used in GrowEvaluationStack() and friends. - + * generic/tclExecute.c: added comments to the alignment macros used in + GrowEvaluationStack() and friends. + 2008-04-08 Daniel Steffen <das@users.sourceforge.net> * tools/genStubs.tcl: revert erroneous 2008-04-02 change marking @@ -36,18 +40,17 @@ 2008-04-07 Andreas Kupries <andreask@activestate.com> - * tests/io.test (io-53.10): Testcase for bi-directionaly fcopy. + * tests/io.test (io-53.10): Testcase for bi-directional fcopy. * tests/chanio.test: - * generic/tclIO.c: Additional changes to data structures for fcopy - * generic/tclIO.h: and channels to perform proper cleanup in case - of a channel having two background copy operations running as is - now possible. - - * generic/tclIO.c (BUSY_STATE, CheckChannelErrors, - TclCopyChannel): New macro, and the places using it. This change - allows for bi-directional fcopy on channels. [Bug 1350564]. Thanks - to Alexandre Ferrieux <ferrieux@users.sourceforge.net> for the - patch. + * generic/tclIO.c: Additional changes to data structures for fcopy and + * generic/tclIO.h: channels to perform proper cleanup in case of a + channel having two background copy operations running as is now + possible. + + * generic/tclIO.c (BUSY_STATE, CheckChannelErrors, TclCopyChannel): + New macro, and the places using it. This change allows for + bi-directional fcopy on channels. [Bug 1350564]. Thanks to Alexandre + Ferrieux <ferrieux@users.sourceforge.net> for the patch. 2008-04-07 Reinhard Max <max@suse.de> @@ -56,47 +59,43 @@ * tests/format.test: Add a test for '% d' and '%+d'. 2008-04-05 Kevin B. Kenny <kennykb@acm.org> - - * win/tclWinFile.c: (WinSymLinkDirectory): Fixed a problem that - Tcl was creating an NTFS junction point (IO_REPARSE_TAG_MOUNT_POINT) - but filling in the union member for a Vista symbolic link. - We had gotten away with this error because the union member - (SymbolicLinkReparseBuffer) was misdefined in this file - and in the 'winnt.h' in early versions of MinGW. MinGW 3.4.2 - has the correct definition of SymbolicLinkReparseBuffer, exposing - the mismatch, and making tests cmdAH-19.4.1, fCmd-28.*, and - filename-11.* fail. + + * win/tclWinFile.c: (WinSymLinkDirectory): Fixed a problem that Tcl + was creating an NTFS junction point (IO_REPARSE_TAG_MOUNT_POINT) but + filling in the union member for a Vista symbolic link. We had gotten + away with this error because the union member + (SymbolicLinkReparseBuffer) was misdefined in this file and in the + 'winnt.h' in early versions of MinGW. MinGW 3.4.2 has the correct + definition of SymbolicLinkReparseBuffer, exposing the mismatch, and + making tests cmdAH-19.4.1, fCmd-28.*, and filename-11.* fail. * tests/chanio.test (chan-io-53.9): - * tests/io.test (io-53.9): Made test cleanup robust against - the possibility of slow process shutdown on Windows. + * tests/io.test (io-53.9): Made test cleanup robust against the + possibility of slow process shutdown on Windows. - * win/tcl.m4: Added -D_CRT_SECURE_NO_DEPRECATE and - -DCRT_NONSTDC_NO_DEPRECATE to the MSVC compilation flags - so that the compilation doesn't barf on perfectly reasonable - Posix system calls. - * win/configure: Manually patched (don't have the right autoconf - to hand). + * win/tcl.m4: Added -D_CRT_SECURE_NO_DEPRECATE and + -DCRT_NONSTDC_NO_DEPRECATE to the MSVC compilation flags so that the + compilation doesn't barf on perfectly reasonable Posix system calls. + * win/configure: Manually patched (don't have the right autoconf to + hand). 2008-04-04 Andreas Kupries <andreask@activestate.com> * tests/io.test (io-53.9): Added testcase for [Bug 780533], based - * tests/chanio.test: on Alexandre's test script. Also fixed - problem with timer in preceding test, was not canceled properly in - the ok case. + * tests/chanio.test: on Alexandre's test script. Also fixed problem + with timer in preceding test, was not canceled properly in the ok case 2008-04-04 Andreas Kupries <andreask@activestate.com> - * generic/tclIORChan.c (ReflectOutput): Allow zero return from - write when input was zero-length anyway. Otherwise keept it an - error, and separate the message from 'written too much'. + * generic/tclIORChan.c (ReflectOutput): Allow zero return from write + when input was zero-length anyway. Otherwise keept it an error, and + separate the message from 'written too much'. - * tests/ioCmd.test (iocmd-24.6): Testcase updated for changed - message. + * tests/ioCmd.test (iocmd-24.6): Testcase updated for changed message. - * generic/tclIORChan.c (ReflectClose): Added missing removal of - the now closed channel from the reflection map. Before we could - crash the system by invoking 'chan postevent' on a closed - reflected channel, dereferencing the dangling pointer in the map. + * generic/tclIORChan.c (ReflectClose): Added missing removal of the + now closed channel from the reflection map. Before we could crash the + system by invoking 'chan postevent' on a closed reflected channel, + dereferencing the dangling pointer in the map. * tests/ioCmd.test (iocmd-31.8): Testcase for the above. @@ -111,7 +110,7 @@ * generic/tcl.decls: remove 'export' declarations of symbols now only in libtclstub and no longer in libtcl. - + * generic/tclStubLib.c: make symbols in libtclstub.a MODULE_SCOPE to * tools/genStubs.tcl: avoid exporting them from libraries that link with -ltclstub; constify tcl*StubsPtr and stub @@ -126,16 +125,17 @@ 2008-04-02 Andreas Kupries <andreask@activestate.com> - * generic/tclIO.c (CopyData): Applied patch for fcopy problem - [Bug 780533], with many thanks to Alexandre Ferrieux + * generic/tclIO.c (CopyData): Applied patch for fcopy problem [Bug + 780533], with many thanks to Alexandre Ferrieux <ferrieux@users.sourceforge.net> for tracking it down and providing a - solution. Still have to convert his test script into a proper test case + solution. Still have to convert his test script into a proper test + case. 2008-04-01 Andreas Kupries <andreask@activestate.com> - * generic/tclStrToD.c: Applied patch for [Bug 1839067] (fp - * unix/tcl.m4: rounding setup on solaris x86, native cc), provided - by Michael Schlenker. + * generic/tclStrToD.c: Applied patch for [Bug 1839067] (fp rounding + * unix/tcl.m4: setup on solaris x86, native cc), provided by + Michael Schlenker. 2008-04-01 Don Porter <dgp@users.sourceforge.net> @@ -163,7 +163,7 @@ * generic/tclBasic.c: Revised stubs-generation tool and interp * tools/genStubs.tcl: creation so that "tclStubsPtr" is not present - * unix/Makefile.in: in libtcl.so, but is present only in + * unix/Makefile.in: in libtcl.so, but is present only in * win/Makefile.in: libtclstub.a. This tightens up the rules for * win/makefile.bc: users of the stubs interfaces. [Bug 1819422] * win/makefile.vc: @@ -177,20 +177,20 @@ 2008-03-30 Kevin Kenny <kennykb@acm.org> * generic/tclInt.h (TclIsNaN): - * unix/configure.in: Added code to the configurator to check for - a standard isnan() macro and use it if one - is found. This change avoids bugs where - the test of ((d) != (d)) is optimized away - by an overaggressive compiler. [Bug 1783544] - * generic/tclObj.c: Added missing #include <math.h> needed to - locate isnan() after the above change. - + * unix/configure.in: Added code to the configurator to check for a + standard isnan() macro and use it if one is + found. This change avoids bugs where the test of + ((d) != (d)) is optimized away by an + overaggressive compiler. [Bug 1783544] + * generic/tclObj.c: Added missing #include <math.h> needed to locate + isnan() after the above change. + * unix/configure: autoconf-2.61 - - * tests/mathop.test (mathop-25.9, mathop-25.14): Modified tests - to deal with (slightly buggy) math libraries in which pow() - returns an incorrectly rounded result. [Bug 1808174] - + + * tests/mathop.test (mathop-25.9, mathop-25.14): Modified tests to + deal with (slightly buggy) math libraries in which pow() returns an + incorrectly rounded result. [Bug 1808174] + 2008-03-26 Don Porter <dgp@users.sourceforge.net> *** 8.5.2 TAGGED FOR RELEASE *** |