Tcl Source Code

Check-in [2372607d3e]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Quick workaround for busted branch tip.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-4-branch
Files: files | file ages | folders
SHA1: 2372607d3e7416892eef713a1f9af7b037bd1845
User & Date: dgp 2012-04-04 14:44:52
Context
2012-04-04
18:52
tclStubInit.c: move up #undef, so it is clear that this macro is conflicting with another definition... check-in: 206b9b100a user: jan.nijtmans tags: core-8-4-branch
15:08
merge core-8-4-branch check-in: 62b7ba34b2 user: jan.nijtmans tags: bug-3508771
14:48
Quick workaround for busted branch tip. check-in: 9fc4ed3a6d user: dgp tags: core-8-5-branch
14:44
Quick workaround for busted branch tip. check-in: 2372607d3e user: dgp tags: core-8-4-branch
08:36
[Bug 510001]: TclSockMinimumBuffers needs plat imp check-in: cbf7dc0a31 user: jan.nijtmans tags: core-8-4-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tclStubInit.c.

55
56
57
58
59
60
61

62
63
64
65
66
67
68
    NULL
};

/* See bug 510001: TclSockMinimumBuffers needs plat imp */
#ifdef _WIN64
#   define TclSockMinimumBuffersOld 0
#else

int TclSockMinimumBuffersOld(sock, size)
    int sock;
    int size;
{
    return TclSockMinimumBuffers((void *) (size_t) sock, size);
}
#endif







>







55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
    NULL
};

/* See bug 510001: TclSockMinimumBuffers needs plat imp */
#ifdef _WIN64
#   define TclSockMinimumBuffersOld 0
#else
#undef TclSockMinimumBuffers
int TclSockMinimumBuffersOld(sock, size)
    int sock;
    int size;
{
    return TclSockMinimumBuffers((void *) (size_t) sock, size);
}
#endif