diff options
author | mdejong <mdejong@noemail.net> | 2001-07-24 22:54:55 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2001-07-24 22:54:55 (GMT) |
commit | c68eaf7c36bd99f3ea38a1d823c04e7e537f9a7e (patch) | |
tree | 4d6225fcca802d841940313d0b99820f17586034 /generic | |
parent | eaad0320669617c3373efa37b7a34fa2e2f24bd9 (diff) | |
download | tk-c68eaf7c36bd99f3ea38a1d823c04e7e537f9a7e.zip tk-c68eaf7c36bd99f3ea38a1d823c04e7e537f9a7e.tar.gz tk-c68eaf7c36bd99f3ea38a1d823c04e7e537f9a7e.tar.bz2 |
* generic/default.h: Include tkWinDefault.h
when built with Cygwin or Mingw.
FossilOrigin-Name: 3aace40b3654c46f5e31f502b6f070286a145421
Diffstat (limited to 'generic')
-rw-r--r-- | generic/default.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/default.h b/generic/default.h index c83567b..f87c197 100644 --- a/generic/default.h +++ b/generic/default.h @@ -10,13 +10,14 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: default.h,v 1.2 1998/09/14 18:23:02 stanton Exp $ + * RCS: @(#) $Id: default.h,v 1.3 2001/07/24 22:54:55 mdejong Exp $ */ #ifndef _DEFAULT #define _DEFAULT -#if defined(__WIN32__) || defined(_WIN32) +#if defined(__WIN32__) || defined(_WIN32) || \ + defined(__CYGWIN__) || defined(__MINGW32__) # include "tkWinDefault.h" #else # if defined(MAC_TCL) |