blob: a5c133ac1c53d9951c62636489b5ff9cb79dd164 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/*
* 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-1997 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.27 97/11/20 18:45:25
*/
/*
* To use the compilied header you need to set the "Prefix file" in
* the "C/C++ Language" preference panel to point to the created
* compilied header. The name of the header depends on the
* architecture we are compiling for (see the code below). For
* example, for a 68k app the prefix file should be: MW_TclHeader68K.
*/
#if __POWERPC__
#pragma precompile_target "MW_TclHeaderPPC"
#elif __CFM68K__
#pragma precompile_target "MW_TclHeaderCFM68K"
#else
#pragma precompile_target "MW_TclHeader68K"
#endif
/*
* Macintosh Tcl must be compiled with certain compiler options to
* ensure that it will work correctly. The following pragmas are
* used to ensure that those options are set correctly. An error
* will occur at compile time if they are not set correctly.
*/
#if !__option(enumsalwaysint)
#error Tcl requires the Metrowerks setting "Enums always ints".
#endif
#if !defined(__POWERPC__)
#if !__option(far_data)
#error Tcl requires the Metrowerks setting "Far data".
#endif
#endif
#if !defined(__POWERPC__)
#if !__option(fourbyteints)
#error Tcl requires the Metrowerks setting "4 byte ints".
#endif
#endif
#if !defined(__POWERPC__)
#if !__option(IEEEdoubles)
#error Tcl requires the Metrowerks setting "8 byte doubles".
#endif
#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 defines control the behavior of the Macintosh
* Universial Headers.
*/
#define SystemSevenOrLater 1
#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
/*
* For a while, we will continue to use the old routine names, so that
* people with older versions of CodeWarrior will still be able to compile
* the source (albeit they will have to update the project files themselves).
*
* At some point, we will convert over to the new routine names.
*/
#define OLDROUTINENAMES 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
* to control what functions are exported in the Tcl shared library.
*/
#pragma export on
#include "tcl.h"
#include "tclMac.h"
#include "tclInt.h"
/*
* These three symbols are needed by Itcl, so we must export them
* here. They are all from tclCompile.h, but there is no need to
* export that whole file...
*/
EXTERN void TclPrintSource _ANSI_ARGS_((FILE *outFile,
char *string, int maxChars));
extern int tclTraceExec;
extern int tclTraceCompile;
#pragma export reset
|