diff options
Diffstat (limited to 'generic/tkStubLib.c')
-rw-r--r-- | generic/tkStubLib.c | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/generic/tkStubLib.c b/generic/tkStubLib.c index 1783e32..d8e3f05 100644 --- a/generic/tkStubLib.c +++ b/generic/tkStubLib.c @@ -10,19 +10,9 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkStubLib.c,v 1.6 2001/05/22 00:22:41 hobbs Exp $ + * RCS: @(#) $Id: tkStubLib.c,v 1.7 2001/11/23 02:07:11 das Exp $ */ -/* - * Because of problems with pre-compiled headers on the Mac, we need to - * do these includes before we add the stubs defines. This a hack. - */ - -#ifdef MAC_TCL -#include "tkMacInt.h" -#include "tkInt.h" -#include "tkPort.h" -#endif /* MAC_TCL */ /* * We need to ensure that we use the stub macros so that this file contains @@ -41,8 +31,6 @@ #endif #undef USE_TK_STUB_PROCS -#ifndef MAC_TCL - #include "tkPort.h" #include "tkInt.h" @@ -50,7 +38,9 @@ #include "tkWinInt.h" #endif -#endif /* !MAC_TCL */ +#ifdef MAC_TCL +#include "tkMacInt.h" +#endif #include "tkDecls.h" #include "tkIntDecls.h" |