~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to h/gclincl.h.in

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* h/gclincl.h.in.  Generated automatically from configure.in by autoheader 2.13.  */
 
2
 
 
3
/* Define if you have alloca, as a function or macro.  */
 
4
#undef HAVE_ALLOCA
 
5
 
 
6
/* Define if you have <alloca.h> and it should be used (not on Ultrix).  */
 
7
#undef HAVE_ALLOCA_H
 
8
 
 
9
/* Define if the X Window System is missing or not being used.  */
 
10
#undef X_DISPLAY_MISSING
 
11
 
 
12
#define DBEGIN 0
 
13
 
 
14
#define MAXPAGE 128*1024
 
15
#define VSSIZE 128*1024
 
16
#define BDSSIZE 2*1024
 
17
#define IHSSIZE 4*1024
 
18
#define FRSSIZE 4*1024
 
19
 
 
20
#define HOLEPAGE (MAXPAGE/10)
 
21
 
 
22
#undef NO_GETTOD
 
23
 
 
24
/* define if have struct sigcontext in one of above */
 
25
#undef HAVE_SIGCONTEXT
 
26
 
 
27
/* define if we can use the file nsocket.c   */
 
28
#undef HAVE_NSOCKET  
 
29
 
 
30
#ifndef HAVE_ALLOCA
 
31
/* define this if you have alloca */
 
32
#undef HAVE_ALLOCA 
 
33
#endif
 
34
 
 
35
/* define if need alloca.h */
 
36
#undef NEED_ALLOCA_H
 
37
 
 
38
#ifdef NEED_ALLOCA_H
 
39
#include <alloca.h>
 
40
#endif
 
41
 
 
42
/* define LISTEN_USE_FCNTL  if we can check for input using fcntl */
 
43
#undef LISTEN_USE_FCNTL
 
44
 
 
45
/* if signal.h alone contains the stuff necessary for sgc */
 
46
#undef SIGNAL_H_HAS_SIGCONTEXT
 
47
 
 
48
/* define if the profil system call is not defined in libc */
 
49
#undef NO_PROFILE 
 
50
 
 
51
/* define if the _cleanup() function exists and should be called
 
52
   before saving */
 
53
/* #define USE_CLEANUP  */
 
54
 
 
55
/* define if BIG_ENDIAN or LITTLE_ENDIAN is defined by including
 
56
   the standard includes */
 
57
/* #define ENDIAN_ALREADY_DEFINED */
 
58
 
 
59
/* define if SV_ONSTACK is defined in signal.h */
 
60
#undef HAVE_SV_ONSTACK 
 
61
 
 
62
#define CSTACK_ADDRESS 0
 
63
 
 
64
#undef HAVE_SIGSYS
 
65
 
 
66
#undef HAVE_SIGEMT
 
67
 
 
68
/* define if setenv  is define */
 
69
#undef HAVE_SETENV
 
70
 
 
71
/* define if putenv  is define */
 
72
#undef HAVE_PUTENV
 
73
 
 
74
#undef HAVE_LONG_LONG
 
75
 
 
76
/* define if want to use GMP */
 
77
#undef GMP
 
78
 
 
79
/* have a broken version of C compiler which makes bad code for -O4 */
 
80
#undef BROKEN_O4_OPT 
 
81
 
 
82
/*  See if gettimeofday is declared in the <sys/time.h> header file. */
 
83
/*  if not, set the GETTOD_NOT_DECLARED flag so that tclPort.h can */
 
84
/*  declare it. */
 
85
 
 
86
#undef GETTOD_NOT_DECLARED
 
87
 
 
88
#undef HAVE_BSDGETTIMEOFDAY
 
89
 
 
90
#undef NO_UNAME
 
91
 
 
92
/*  FIONBIO vs. O_NONBLOCK for nonblocking I/O */
 
93
#undef USE_FIONBIO
 
94
 
 
95
/* readline support */
 
96
#undef HAVE_READLINE
 
97
 
 
98
/* bfd support */
 
99
#undef HAVE_LIBBFD
 
100
#undef NEED_CONST
 
101
#undef HAVE_BFD_BOOLEAN
 
102
 
 
103
#ifdef HAVE_BFD_BOOLEAN
 
104
#define MY_BFD_BOOLEAN bfd_boolean
 
105
#define MY_BFD_FALSE FALSE
 
106
#define MY_BFD_TRUE TRUE
 
107
#else
 
108
#define MY_BFD_BOOLEAN boolean
 
109
#define MY_BFD_FALSE false
 
110
#define MY_BFD_TRUE true
 
111
#endif
 
112
/* isnormal check */
 
113
#undef HAVE_ISNORMAL
 
114
 
 
115
#undef HAVE_IEEEFP
 
116
 
 
117
#ifdef IN_NUM_CO
 
118
#ifdef HAVE_ISNORMAL
 
119
#define _GNU_SOURCE
 
120
#include <math.h>
 
121
#define ISNORMAL(a) isnormal(a)
 
122
#else
 
123
#ifdef HAVE_IEEEFP
 
124
#include <ieeefp.h>
 
125
#define ISNORMAL(a) (fpclass(a)>=FP_NZERO)
 
126
#else
 
127
#include <math.h>
 
128
#define ISNORMAL(a) ((sizeof (a) == sizeof (float)) ? \
 
129
                     gcl_isnormal_float(a) : \
 
130
                     gcl_isnormal_double(a))
 
131
#endif
 
132
#endif
 
133
#endif
 
134
 
 
135
#undef HAVE_ISFINITE
 
136
#undef HAVE_FINITE
 
137
 
 
138
#ifdef NEED_ISFINITE
 
139
#ifdef HAVE_ISFINITE
 
140
#define _GNU_SOURCE
 
141
#include <math.h>
 
142
#define ISFINITE(a) isfinite(a)
 
143
#else
 
144
#ifdef HAVE_FINITE
 
145
#include <math.h>
 
146
#include <ieeefp.h>
 
147
#define ISFINITE(a) finite(a)
 
148
#else
 
149
#error "No isfinite found"
 
150
#endif
 
151
#endif
 
152
#endif
 
153
 
 
154
#undef HAVE_VALUES_H
 
155
#undef HAVE_FLOAT_H
 
156
 
 
157
#ifdef IN_NUM_CO
 
158
#ifdef HAVE_VALUES_H
 
159
#include <values.h>
 
160
#endif
 
161
#ifdef HAVE_FLOAT_H
 
162
#include <float.h>
 
163
#endif
 
164
#endif
 
165
 
 
166
/* math.h for definitions in generated C code */
 
167
#undef HAVE_MATH_H
 
168
 
 
169
#ifdef HAVE_MATH_H
 
170
#include <math.h>
 
171
#endif
 
172
 
 
173
#undef LITTLE_END
 
174
 
 
175
#undef PAGEWIDTH
 
176
 
 
177
/*  #ifdef PAGEWIDTH */
 
178
/*  #undef PAGESIZE */
 
179
/*  #define PAGESIZE (1<<PAGEWIDTH) */
 
180
/*  #endif */
 
181
 
 
182
#undef USE_DLOPEN
 
183
 
 
184
#define MP_LIMB_BYTES 0
 
185
 
 
186
#undef ANSI_COMMON_LISP
 
187
 
 
188
#undef __SHORT_LIMB
 
189
#undef __LONG_LONG_LIMB
 
190
 
 
191
#undef HAVE_JAPI_H
 
192
 
 
193
#undef HAVE_XDR
 
194
#undef ENDIAN_ALREADY_DEFINED
 
195
#undef USE_CLEANUP
 
196
#undef SIZEOF_CONTBLOCK
 
197
 
 
198
#undef GCL_GPROF
 
199
#undef HAVE_DECL_RL_COMPLETION_MATCHES
 
200
#undef HAVE_RL_COMPENTRY_FUNC_T
 
201
#undef HAVE_GNU_LD
 
202
#undef NEED_NONRANDOM_SBRK
 
203
#undef HOST_CPU
 
204
#undef HOST_KERNEL
 
205
#undef HOST_SYSTEM
 
206
 
 
207
/* The number of bytes in a long.  */
 
208
#undef SIZEOF_LONG
 
209
 
 
210
/* Define if you have the getcwd function.  */
 
211
#undef HAVE_GETCWD
 
212
 
 
213
/* Define if you have the getwd function.  */
 
214
#undef HAVE_GETWD
 
215
 
 
216
/* Define if you have the <asm/sigcontext.h> header file.  */
 
217
#undef HAVE_ASM_SIGCONTEXT_H
 
218
 
 
219
/* Define if you have the <asm/signal.h> header file.  */
 
220
#undef HAVE_ASM_SIGNAL_H
 
221
 
 
222
/* Define if you have the <elf.h> header file.  */
 
223
#undef HAVE_ELF_H
 
224
 
 
225
/* Define if you have the <elf_abi.h> header file.  */
 
226
#undef HAVE_ELF_ABI_H
 
227
 
 
228
/* Define if you have the <endian.h> header file.  */
 
229
#undef HAVE_ENDIAN_H
 
230
 
 
231
/* Define if you have the <float.h> header file.  */
 
232
#undef HAVE_FLOAT_H
 
233
 
 
234
/* Define if you have the <japi.h> header file.  */
 
235
#undef HAVE_JAPI_H
 
236
 
 
237
/* Define if you have the <math.h> header file.  */
 
238
#undef HAVE_MATH_H
 
239
 
 
240
/* Define if you have the <readline/readline.h> header file.  */
 
241
#undef HAVE_READLINE_READLINE_H
 
242
 
 
243
/* Define if you have the <rpc/rpc.h> header file.  */
 
244
#undef HAVE_RPC_RPC_H
 
245
 
 
246
/* Define if you have the <sys/ioctl.h> header file.  */
 
247
#undef HAVE_SYS_IOCTL_H
 
248
 
 
249
/* Define if you have the <values.h> header file.  */
 
250
#undef HAVE_VALUES_H