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 | d8a78fc085cdc7ff564638a49247c4a986701410 (patch) | |
tree | ae1366468409076e10cf9e8952fe77bd51012e4e /win/tclWinPort.h | |
parent | 86c8fe870ae2762cbc3ef54b941921ffa382f044 (diff) | |
parent | 5ebac7fe264f12135dd1648baffd22b437d08cf2 (diff) | |
download | tcl-d8a78fc085cdc7ff564638a49247c4a986701410.zip tcl-d8a78fc085cdc7ff564638a49247c4a986701410.tar.gz tcl-d8a78fc085cdc7ff564638a49247c4a986701410.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 |