Overview
Comment: | Fixed test driver to call initialization routine -- changed to tclsh.
Updated to support determing encoding from environment Removed debugging printfs/puts |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8fde0c7fbf3fed112ce5d75afd8b09c4 |
User & Date: | rkeene on 2010-09-30 05:35:48 |
Other Links: | manifest | tags |
Context
2010-09-30
| ||
05:38 | Renamed test driver "tclsh" check-in: 742f8f4178 user: rkeene tags: trunk | |
05:35 |
Fixed test driver to call initialization routine -- changed to tclsh.
Updated to support determing encoding from environment Removed debugging printfs/puts check-in: 8fde0c7fbf user: rkeene tags: trunk | |
2010-09-29
| ||
23:19 | Updated clean target check-in: 50190b3c1d user: rkeene tags: trunk | |
Changes
Modified kitdll/buildsrc/kitdll-0.0/Makefile.in from [5dbeeca9bd] to [0d3b835065].
︙ | |||
18 19 20 21 22 23 24 25 26 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | + - - + + | ## Tclkit Build kitInit.o: kitInit.c vfs_kitdll.tcl.h vfs_kitdll.tcl.h: vfs_kitdll.tcl ./stringify.tcl vfs_kitdll.tcl > vfs_kitdll.tcl.h ## Extensions rechan.o: rechan.c pwb.o: pwb.c ## DLL Build |
︙ |
Modified kitdll/buildsrc/kitdll-0.0/boot.tcl from [72fbb06cf9] to [05bce6a79b].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | - - + + - - - - - - + + - | proc tclInit {} { rename tclInit {} global auto_path tcl_library tcl_libPath global tcl_version tcl_rcFileName |
︙ |
Modified kitdll/buildsrc/kitdll-0.0/kitInit.c from [278881bf35] to [9b8845772e].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | - + + + + + + + + + + - + - - + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - |
|
Modified kitdll/buildsrc/kitdll-0.0/test.c from [ad8529fc60] to [0713d9aa46].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | - - + - - - - - - - - + + - - - - + - - - + - - - - + - - - - - | #ifdef HAVE_STDIO_H # include <stdio.h> #endif #include <tcl.h> |