Differences From Artifact [c03d384773]:
- File generic/tclIntPlatDecls.h — part of check-in [ebd606c56f] at 2012-12-05 13:31:22 on branch trunk — Fix gcc warning in cygwin build: implicitely declared function TclUnixOpenTemporaryFile. Move the function to slot 30, and define it (as 0) for win32 as well. (user: jan.nijtmans size: 20897) [more...]
To Artifact [b3d6eca597]:
- File generic/tclIntPlatDecls.h — part of check-in [390eff66e1] at 2013-06-21 11:57:59 on branch trunk — Don't use TclpInetNtoa any more, use inet_ntoa in stead. Since IP6 support it's even not necessary any more (except for fake-rfc2553, but mutexes are used here already) , but it's in the internal stub table so we cannot remove it until 9.0 (user: jan.nijtmans size: 20948) [more...]
| ︙ | |||
541 542 543 544 545 546 547 548 549 550 551 552 553 554 | 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 | + + | #undef TCL_STORAGE_CLASS #define TCL_STORAGE_CLASS DLLIMPORT #undef TclpLocaltime_unix #undef TclpGmtime_unix #undef TclWinConvertWSAError #define TclWinConvertWSAError TclWinConvertError #undef TclpInetNtoa #define TclpInetNtoa inet_ntoa #if defined(__WIN32__) || defined(__CYGWIN__) # undef TclWinNToHS # define TclWinNToHS ntohs #else # undef TclpGetPid # define TclpGetPid(pid) ((unsigned long) (pid)) |
| ︙ |