diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-30 09:49:25 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-03-30 09:49:25 (GMT) |
commit | 59c52ee2fb7fcc819a92861101a8dd4b77c9f606 (patch) | |
tree | ae1366468409076e10cf9e8952fe77bd51012e4e /win/tclWinPort.h | |
parent | e4e0688230bab9b433d43f26f6a9e36b0a32b083 (diff) | |
parent | 3a73c145323d7a85af7f9e5ad7de9e601cbaf903 (diff) | |
download | tcl-59c52ee2fb7fcc819a92861101a8dd4b77c9f606.zip tcl-59c52ee2fb7fcc819a92861101a8dd4b77c9f606.tar.gz tcl-59c52ee2fb7fcc819a92861101a8dd4b77c9f606.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 e2cac52..da685ad 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -371,11 +371,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 @@ -438,7 +433,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 |