Differences From Artifact [ad8529fc60]:
- File
kitdll/buildsrc/kitdll-0.0/test.c
— part of check-in
[b11b735302]
at
2010-09-29 23:15:37
on branch trunk
— Created GNU autoconf script for KitDLL
Made KitDLL build a shared object
Added test driver (user: rkeene, size: 691) [annotate] [blame] [check-ins using]
To Artifact [0713d9aa46]:
- File kitdll/buildsrc/kitdll-0.0/tclsh.c — part of check-in [742f8f4178] at 2010-09-30 05:38:13 on branch trunk — Renamed test driver "tclsh" (user: rkeene, size: 220) [annotate] [blame] [check-ins using]
- File
kitdll/buildsrc/kitdll-0.0/test.c
— part of check-in
[8fde0c7fbf]
at
2010-09-30 05:35:48
on branch trunk
— Fixed test driver to call initialization routine -- changed to tclsh.
Updated to support determing encoding from environment
Removed debugging printfs/puts (user: rkeene, size: 220) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 | #ifdef HAVE_STDIO_H # include <stdio.h> #endif #include <tcl.h> | < | < < < < < < | | < < < | < < | < < < | < < < < < | 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> int Tcl_AppInit(Tcl_Interp *interp) { return(Tcl_Init(interp)); } int main(int argc, char **argv) { Tcl_Main(argc, argv, Tcl_AppInit); return(1); } |