summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-12-10 15:44:53 (GMT)
committernijtmans <nijtmans>2010-12-10 15:44:53 (GMT)
commit96632083236aaeac42d4555a1f9cc187d04da271 (patch)
treebcdbfc2eda856f5fabedc7b7e3c2f36825fdd8c7 /ChangeLog
parentd055274c794c67a534165fc7d8f9dee04cdc8204 (diff)
downloadtcl-96632083236aaeac42d4555a1f9cc187d04da271.zip
tcl-96632083236aaeac42d4555a1f9cc187d04da271.tar.gz
tcl-96632083236aaeac42d4555a1f9cc187d04da271.tar.bz2
Change first parameter of TclSockMinimumBuffers to ClientData, and TclWin(Get|Set)SockOpt to SOCKET, because on Win64 those are 64-bit, which does not fit.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index afc4c7e..d371790 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,15 @@
* generic/tclIndexObj.c:
* generic/tclIOCmd.c:
* generic/tclVar.c:
+ * win/tcl.m4: Fix manifest-generation for 64-bit gcc (mingw-w64)
+ * win/configure.in: Check for availability of intptr_t and uintptr_t
+ * win/configure: (autoconf-2.59)
+ * generic/tclInt.decls: Change first parameter of TclSockMinimumBuffers to
+ * generic/tclIntDecls.h: ClientData, and TclWin(Get|Set)SockOpt to SOCKET,
+ * generic/tclIntPlatDecls.h:because on Win64 those are 64-bit, which does not fit.
+ * generic/tclIOSock.c:
+ * win/tclWinSock.c:
+ * unix/tclUnixSock.c:
2010-12-09 Donal K. Fellows <dkf@users.sf.net>