diff options
author | andreas_kupries <akupries@shaw.ca> | 2000-11-16 21:38:51 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2000-11-16 21:38:51 (GMT) |
commit | c3a45c0cdf91876b57a4f6b18dfacdafcf2e4577 (patch) | |
tree | c6577fab03642fb1ea39af70291d4213ad963332 /win | |
parent | 03d72697012a93aab4886499dc680516ec484845 (diff) | |
download | tcl-c3a45c0cdf91876b57a4f6b18dfacdafcf2e4577.zip tcl-c3a45c0cdf91876b57a4f6b18dfacdafcf2e4577.tar.gz tcl-c3a45c0cdf91876b57a4f6b18dfacdafcf2e4577.tar.bz2 |
2000-11-16 Andreas Kupries <a.kupries@westend.com>
* win/tclWinPort.h (line 69): Changed reference to winsock2.h into
winsock.h. This was a leftover from a foray into using winsock
version 2 (History lesson from Scott Redman and Jeff
Hobbs). This code was no problem when compiling Tcl itself, but
could trip extensions. Fixes bug 122568.
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinPort.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index a40681c..bb6ec27 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinPort.h,v 1.12 2000/03/31 08:52:31 hobbs Exp $ + * RCS: @(#) $Id: tclWinPort.h,v 1.13 2000/11/16 21:38:52 andreas_kupries Exp $ */ #ifndef _TCLWINPORT @@ -66,7 +66,7 @@ typedef float *TCHAR; #include <tchar.h> #include <time.h> -#include <winsock2.h> +#include <winsock.h> #define WIN32_LEAN_AND_MEAN #include <windows.h> |