diff options
author | mdejong <mdejong> | 2004-03-05 21:27:45 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2004-03-05 21:27:45 (GMT) |
commit | c64a37e036445bb15f91d7b7a22b1269417e4c3d (patch) | |
tree | e0a3aca20ec80a771ea4b05bbc37eab810a95dea /win/tclWinPort.h | |
parent | fcfbbfde29f5232f5f08035190b90c94a8c2a89a (diff) | |
download | tcl-c64a37e036445bb15f91d7b7a22b1269417e4c3d.zip tcl-c64a37e036445bb15f91d7b7a22b1269417e4c3d.tar.gz tcl-c64a37e036445bb15f91d7b7a22b1269417e4c3d.tar.bz2 |
* win/configure: Regen.
* win/configure.in: Check for define of
MWMO_ALERTABLE in winuser.h.
* win/tclWinPort.h: If MWMO_ALERTABLE
is not defined in winuser.h then define it.
This is needed for Mingw.
Diffstat (limited to 'win/tclWinPort.h')
-rw-r--r-- | win/tclWinPort.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 1848e03..dd36806 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.38 2003/08/27 21:52:41 davygrvy Exp $ + * RCS: @(#) $Id: tclWinPort.h,v 1.39 2004/03/05 21:27:46 mdejong Exp $ */ #ifndef _TCLWINPORT @@ -446,6 +446,13 @@ #endif /* + * Older version of Mingw are known to lack a MWMO_ALERTABLE define. + */ +#if defined(HAVE_NO_MWMO_ALERTABLE) +# define MWMO_ALERTABLE 2 +#endif + +/* * The following defines wrap the system memory allocation routines for * use by tclAlloc.c. */ |