Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Made the example extension "example" work again. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tea-update |
Files: | files | file ages | folders |
SHA1: |
21aeb4698d9d23e9d8d015b174be0c44 |
User & Date: | rolf 2013-07-21 16:32:41 |
Context
2013-07-21
| ||
16:36 | Updated TEA build system of tdom itself and the extensions (merged from branch "tea-update"). check-in: 67628d28e2 user: rolf tags: trunk | |
16:32 | Made the example extension "example" work again. Closed-Leaf check-in: 21aeb4698d user: rolf tags: tea-update | |
15:25 | Build of working tcldomsh finally restored. check-in: a95bf4cf89 user: rolf tags: tea-update | |
Changes
Changes to extensions/example/example.c.
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <tcl.h> #include <string.h> #include <expat.h> #include <tclexpat.h> /* * Beginning with 8.4, Tcl API is CONST'ified */ #if (TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION <= 3) # define CONST84 #endif |
| < < |
1 2 3 4 5 6 7 8 9 10 |
#include <tdom.h>
#include <string.h>
/*
* Beginning with 8.4, Tcl API is CONST'ified
*/
#if (TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION <= 3)
# define CONST84
#endif
|