diff options
author | mdejong <mdejong> | 2001-07-24 22:54:55 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-07-24 22:54:55 (GMT) |
commit | 7e9aececf720b6f0e20157366f8e977ad2378ddd (patch) | |
tree | 4d6225fcca802d841940313d0b99820f17586034 | |
parent | dd394d420642d423b677fd79d7fb06462aaf1207 (diff) | |
download | tk-7e9aececf720b6f0e20157366f8e977ad2378ddd.zip tk-7e9aececf720b6f0e20157366f8e977ad2378ddd.tar.gz tk-7e9aececf720b6f0e20157366f8e977ad2378ddd.tar.bz2 |
* generic/default.h: Include tkWinDefault.h
when built with Cygwin or Mingw.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/default.h | 5 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2001-07-24 Mo DeJong <mdejong@redhat.com> + + * generic/default.h: Include tkWinDefault.h + when built with Cygwin or Mingw. + 2001-07-10 Mo DeJong <mdejong@redhat.com> * unix/Makefile.in: Add AR and STLIB_LD variables. 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) |