diff options
author | jingham <jingham> | 1999-05-11 07:11:46 (GMT) |
---|---|---|
committer | jingham <jingham> | 1999-05-11 07:11:46 (GMT) |
commit | 7e5fa22b2798227ac6c6f48a3f0d6f767f658c14 (patch) | |
tree | 75a17d12246664b170ac64121f77deff56d7ef90 /mac/MW_TclAppleScriptHeader.pch | |
parent | 7c4092a142f2c47e20b34c96adfb38b9a70083a6 (diff) | |
download | tcl-7e5fa22b2798227ac6c6f48a3f0d6f767f658c14.zip tcl-7e5fa22b2798227ac6c6f48a3f0d6f767f658c14.tar.gz tcl-7e5fa22b2798227ac6c6f48a3f0d6f767f658c14.tar.bz2 |
Various small fixes that were required to get Tcl to build cleanly on the Mac.
Diffstat (limited to 'mac/MW_TclAppleScriptHeader.pch')
-rw-r--r-- | mac/MW_TclAppleScriptHeader.pch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mac/MW_TclAppleScriptHeader.pch b/mac/MW_TclAppleScriptHeader.pch index bf130ab..84b09fc 100644 --- a/mac/MW_TclAppleScriptHeader.pch +++ b/mac/MW_TclAppleScriptHeader.pch @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: MW_TclAppleScriptHeader.pch,v 1.3 1998/11/10 16:30:35 rjohnson Exp $ + * RCS: @(#) $Id: MW_TclAppleScriptHeader.pch,v 1.4 1999/05/11 07:11:46 jingham Exp $ */ /* @@ -25,17 +25,17 @@ #if __POWERPC__ #pragma precompile_target "MW_TclAppleScriptHeaderPPC" -#include "MW_TclHeaderPPC" #elif __CFM68K__ #pragma precompile_target "MW_TclAppleScriptHeaderCFM68K" -#include "MW_TclHeaderCFM68K" #else #pragma precompile_target "MW_TclAppleScriptHeader68K" -#include "MW_TclHeader68K" #endif +#include "tclMacCommonPch.h" + +/* #define TCL_REGISTER_LIBRARY 1 */ +#define USE_TCL_STUBS -#define TCL_REGISTER_LIBRARY 1 /* * Place any includes below that will are needed by the majority of the * and is OK to be in any file in the system. The pragma's are used |