diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-30 12:28:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-30 12:28:07 (GMT) |
commit | 258e927279e1a28d29a07a1c07ebee9a99890e69 (patch) | |
tree | 11e210aa0e7919af5650363fb760a2232fb46151 /win/tclWinPort.h | |
parent | 3c562ea4258e410e880449ac6b65936c62d0cc48 (diff) | |
parent | 59c52ee2fb7fcc819a92861101a8dd4b77c9f606 (diff) | |
download | tcl-258e927279e1a28d29a07a1c07ebee9a99890e69.zip tcl-258e927279e1a28d29a07a1c07ebee9a99890e69.tar.gz tcl-258e927279e1a28d29a07a1c07ebee9a99890e69.tar.bz2 |
[Bug 3511806] Compiler checks too early
(autoconf still to be run!)
Diffstat (limited to 'win/tclWinPort.h')
-rw-r--r-- | win/tclWinPort.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index db46a4a..c262671 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -458,11 +458,6 @@ typedef DWORD_PTR * PDWORD_PTR; #endif /* __BORLANDC__ */ #ifdef __WATCOMC__ - /* - * OpenWatcom uses a wine derived winsock2.h that is missing the - * LPFN_* typedefs. - */ -# define HAVE_NO_LPFN_DECLS # if !defined(__CHAR_SIGNED__) # error "You must use the -j switch to ensure char is signed." # endif @@ -519,7 +514,7 @@ typedef DWORD_PTR * PDWORD_PTR; /* * Older version of Mingw are known to lack a MWMO_ALERTABLE define. */ -#if defined(HAVE_NO_MWMO_ALERTABLE) +#if !defined(MWMO_ALERTABLE) # define MWMO_ALERTABLE 2 #endif |