diff options
author | nijtmans <nijtmans> | 2008-11-06 22:19:00 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-11-06 22:19:00 (GMT) |
commit | 1f5d1ca2f0758b6b5bdb262b9c1bda0832b585bd (patch) | |
tree | 6d4765a975db9a0efdc9cda302ca45bef48fcfbc /generic | |
parent | 1418b2b3846358cb3a0ce1332a4bb5f9a5f84b9e (diff) | |
download | tk-1f5d1ca2f0758b6b5bdb262b9c1bda0832b585bd.zip tk-1f5d1ca2f0758b6b5bdb262b9c1bda0832b585bd.tar.gz tk-1f5d1ca2f0758b6b5bdb262b9c1bda0832b585bd.tar.bz2 |
add "-Wno-implicit-int" flag for gcc, as on UNIX
Use tkUnixDefault.h under CygWin. With this change,
at least the X11 version of Tk can be built with cygwin
Diffstat (limited to 'generic')
-rw-r--r-- | generic/default.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/default.h b/generic/default.h index 1859369..1f3a04c 100644 --- a/generic/default.h +++ b/generic/default.h @@ -10,14 +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.5 2004/03/17 18:15:42 das Exp $ + * RCS: @(#) $Id: default.h,v 1.6 2008/11/06 22:19:00 nijtmans Exp $ */ #ifndef _DEFAULT #define _DEFAULT #if defined(__WIN32__) || defined(_WIN32) || \ - defined(__CYGWIN__) || defined(__MINGW32__) + defined(__MINGW32__) # include "tkWinDefault.h" #else # if defined(MAC_OSX_TK) |