Overview
| Comment: | Updated to not build zlib package under Tcl 8.6+ as it is natively provided |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e6390165090667c7cca4f604a1b3af68 |
| User & Date: | rkeene on 2010-09-26 04:45:16 |
| Other Links: | manifest | tags |
Context
|
2010-09-26
| ||
| 04:45 | Corrected typo in ZipVFS check-in: 6e6c5fd01a user: rkeene tags: trunk | |
| 04:45 | Updated to not build zlib package under Tcl 8.6+ as it is natively provided check-in: e639016509 user: rkeene tags: trunk | |
| 04:45 | KitCreator 0.3.4.x check-in: 3f98704439 user: rkeene tags: trunk, 0.3.4 | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/kitInit.c from [87800da22f] to [a26486a2c9].
| ︙ | ︙ | |||
35 36 37 38 39 40 41 | #ifdef KIT_INCLUDES_ITCL Tcl_AppInitProc Itcl_Init; #endif #ifdef KIT_INCLUDES_MK4TCL Tcl_AppInitProc Mk4tcl_Init; #endif | | > > > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | #ifdef KIT_INCLUDES_ITCL Tcl_AppInitProc Itcl_Init; #endif #ifdef KIT_INCLUDES_MK4TCL Tcl_AppInitProc Mk4tcl_Init; #endif Tcl_AppInitProc Vfs_Init, Rechan_Init; #if 10 * TCL_MAJOR_VERSION + TCL_MINOR_VERSION < 85 Tcl_AppInitProc Pwb_Init; #endif #if 10 * TCL_MAJOR_VERSION + TCL_MINOR_VERSION < 86 Tcl_AppInitProc Zlib_Init; #endif #ifdef TCL_THREADS Tcl_AppInitProc Thread_Init; #endif #ifdef _WIN32 Tcl_AppInitProc Dde_Init, Registry_Init; #endif |
| ︙ | ︙ | |||
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | Tcl_StaticPackage(0, "Mk4tcl", Mk4tcl_Init, NULL); #endif #if 10 * TCL_MAJOR_VERSION + TCL_MINOR_VERSION < 85 Tcl_StaticPackage(0, "pwb", Pwb_Init, NULL); #endif Tcl_StaticPackage(0, "rechan", Rechan_Init, NULL); Tcl_StaticPackage(0, "vfs", Vfs_Init, NULL); Tcl_StaticPackage(0, "zlib", Zlib_Init, NULL); #ifdef TCL_THREADS Tcl_StaticPackage(0, "Thread", Thread_Init, NULL); #endif #ifdef _WIN32 Tcl_StaticPackage(0, "dde", Dde_Init, NULL); Tcl_StaticPackage(0, "registry", Registry_Init, NULL); #endif | > > | 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | Tcl_StaticPackage(0, "Mk4tcl", Mk4tcl_Init, NULL); #endif #if 10 * TCL_MAJOR_VERSION + TCL_MINOR_VERSION < 85 Tcl_StaticPackage(0, "pwb", Pwb_Init, NULL); #endif Tcl_StaticPackage(0, "rechan", Rechan_Init, NULL); Tcl_StaticPackage(0, "vfs", Vfs_Init, NULL); #if 10 * TCL_MAJOR_VERSION + TCL_MINOR_VERSION < 86 Tcl_StaticPackage(0, "zlib", Zlib_Init, NULL); #endif #ifdef TCL_THREADS Tcl_StaticPackage(0, "Thread", Thread_Init, NULL); #endif #ifdef _WIN32 Tcl_StaticPackage(0, "dde", Dde_Init, NULL); Tcl_StaticPackage(0, "registry", Registry_Init, NULL); #endif |
| ︙ | ︙ |
Modified kitsh/buildsrc/kitsh-0.0/zlib.c from [84ad9e9f88] to [d3ecfd237b].
1 2 3 4 5 6 | /* Written by Jean-Claude Wippler, as part of Tclkit. * March 2003 - placed in the public domain by the author. * * Interface to the "zlib" compression library */ | | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/* Written by Jean-Claude Wippler, as part of Tclkit.
* March 2003 - placed in the public domain by the author.
*
* Interface to the "zlib" compression library
*/
#include <tcl.h>
#if 10 * TCL_MAJOR_VERSION + TCL_MINOR_VERSION < 86
#include "zlib.h"
typedef struct {
z_stream stream;
Tcl_Obj *indata;
} zlibstream;
static int
|
| ︙ | ︙ | |||
205 206 207 208 209 210 211 |
}
int Zlib_Init(Tcl_Interp *interp)
{
Tcl_CreateObjCommand(interp, "zlib", ZlibCmd, 0, 0);
return Tcl_PkgProvide( interp, "zlib", "1.1");
}
| > | 206 207 208 209 210 211 212 213 |
}
int Zlib_Init(Tcl_Interp *interp)
{
Tcl_CreateObjCommand(interp, "zlib", ZlibCmd, 0, 0);
return Tcl_PkgProvide( interp, "zlib", "1.1");
}
#endif /* Tcl version less than 8.6 */
|