62 lines
1.5 KiB
Plaintext
62 lines
1.5 KiB
Plaintext
/*
|
|
* MW_TclHeader.pch --
|
|
*
|
|
* This file is the source for a pre-compilied header that gets used
|
|
* for all files in the Tcl projects. This make compilies go a bit
|
|
* faster. This file is only intended to be used in the MetroWerks
|
|
* CodeWarrior environment. It essentially acts as a place to set
|
|
* compiler flags. See MetroWerks documention for more details.
|
|
*
|
|
* Copyright (c) 1995-1996 Sun Microsystems, Inc.
|
|
*
|
|
* See the file "license.terms" for information on usage and redistribution
|
|
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
*
|
|
* SCCS: @(#) MW_TclHeader.pch 1.17 96/09/04 16:35:25
|
|
*/
|
|
|
|
/*
|
|
* Support for automatically naming the precompiled header file ...
|
|
*/
|
|
#if __POWERPC__
|
|
#pragma precompile_target "MW_TclHeaderPPC"
|
|
#elif __CFM68K__
|
|
#pragma precompile_target "MW_TclHeaderCFM68K"
|
|
#else
|
|
#pragma precompile_target "MW_TclHeader68K"
|
|
#endif
|
|
|
|
/*
|
|
* The define is used most everywhere to tell Tcl (or any Tcl
|
|
* extensions) that we are compiling for the Macintosh platform.
|
|
*/
|
|
#define MAC_TCL
|
|
|
|
/*
|
|
* The following two defines are used to prepare for the coming
|
|
* of Copland.
|
|
*/
|
|
|
|
#define STRICT_CONTROLS 1
|
|
#define STRICT_WINDOWS 1
|
|
|
|
/*
|
|
* Define the following symbol if you want
|
|
* comprehensive debugging turned on.
|
|
*/
|
|
|
|
/* #define TCL_DEBUG */
|
|
|
|
#ifdef TCL_DEBUG
|
|
# define TCL_MEM_DEBUG
|
|
# define TCL_TEST
|
|
#endif
|
|
|
|
/*
|
|
* Place any includes below that will are needed by the majority of the
|
|
* and is OK to be in any file in the system.
|
|
*/
|
|
|
|
#include "tcl.h"
|
|
#include "tclInt.h"
|