Mercurial > hg > xemacs-beta
comparison src/config.h.in @ 400:a86b2b5e0111 r21-2-30
Import from CVS: tag r21-2-30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:14:34 +0200 |
parents | 74fd4e045ea6 |
children | 2f8bb876ab1d |
comparison
equal
deleted
inserted
replaced
399:376370fb5946 | 400:a86b2b5e0111 |
---|---|
196 #undef AMPERSAND_FULL_NAME | 196 #undef AMPERSAND_FULL_NAME |
197 | 197 |
198 /* Some things figured out by the configure script, grouped as they are in | 198 /* Some things figured out by the configure script, grouped as they are in |
199 configure.in. */ | 199 configure.in. */ |
200 #undef HAVE_MCHECK_H | 200 #undef HAVE_MCHECK_H |
201 #undef HAVE_A_OUT_H | |
202 #undef HAVE_CYGWIN_VERSION_H | |
203 #undef HAVE_FCNTL_H | |
204 #undef HAVE_INTTYPES_H | |
205 #undef HAVE_LIBGEN_H | |
206 #undef HAVE_LOCALE_H | |
201 #undef HAVE_MACH_MACH_H | 207 #undef HAVE_MACH_MACH_H |
208 #undef HAVE_SYS_PARAM_H | |
209 #undef HAVE_SYS_PSTAT_H | |
202 #undef HAVE_SYS_STROPTS_H | 210 #undef HAVE_SYS_STROPTS_H |
211 #undef HAVE_SYS_TIME_H | |
203 #undef HAVE_SYS_TIMEB_H | 212 #undef HAVE_SYS_TIMEB_H |
204 #undef HAVE_SYS_TIME_H | 213 #undef HAVE_SYS_UN_H |
214 #undef HAVE_ULIMIT_H | |
205 #undef HAVE_UNISTD_H | 215 #undef HAVE_UNISTD_H |
206 #undef HAVE_UTIME_H | 216 #undef HAVE_UTIME_H |
217 | |
207 #undef HAVE_SYS_WAIT_H | 218 #undef HAVE_SYS_WAIT_H |
208 #undef HAVE_LIBINTL_H | 219 #undef HAVE_LIBINTL_H |
209 #undef HAVE_LIBGEN_H | |
210 #undef HAVE_LOCALE_H | |
211 #undef HAVE_FCNTL_H | |
212 #undef HAVE_ULIMIT_H | |
213 #undef HAVE_X11_XLOCALE_H | 220 #undef HAVE_X11_XLOCALE_H |
214 #undef HAVE_LINUX_VERSION_H | |
215 #undef HAVE_CYGWIN_VERSION_H | |
216 #undef HAVE_INTTYPES_H | |
217 #undef HAVE_SYS_UN_H | |
218 #undef HAVE_A_OUT_H | |
219 #undef STDC_HEADERS | 221 #undef STDC_HEADERS |
220 #undef TIME_WITH_SYS_TIME | 222 #undef TIME_WITH_SYS_TIME |
221 #undef WORDS_BIGENDIAN | 223 #undef WORDS_BIGENDIAN |
222 #undef HAVE_VFORK_H | 224 #undef HAVE_VFORK_H |
223 #undef HAVE_KSTAT_H | 225 #undef HAVE_KSTAT_H |
224 #undef HAVE_SYS_PSTAT_H | |
225 #undef vfork | 226 #undef vfork |
226 | 227 |
227 #undef HAVE_LONG_FILE_NAMES | 228 #undef HAVE_LONG_FILE_NAMES |
228 | 229 |
229 /* Use lock files to detect multiple edits of the same file? */ | 230 /* Use lock files to detect multiple edits of the same file? */ |
436 #define bufpos_checking_assert(assertion) | 437 #define bufpos_checking_assert(assertion) |
437 #endif | 438 #endif |
438 | 439 |
439 /* Attempt to catch bugs related to garbage collection (e.g. not GCPRO'ing). */ | 440 /* Attempt to catch bugs related to garbage collection (e.g. not GCPRO'ing). */ |
440 #undef ERROR_CHECK_GC | 441 #undef ERROR_CHECK_GC |
442 #ifdef ERROR_CHECK_GC | |
443 #define gc_checking_assert(assertion) assert (assertion) | |
444 #else | |
445 #define gc_checking_assert(assertion) | |
446 #endif | |
441 | 447 |
442 /* Attempt to catch freeing of a non-malloc()ed block, heap corruption, etc. */ | 448 /* Attempt to catch freeing of a non-malloc()ed block, heap corruption, etc. */ |
443 #undef ERROR_CHECK_MALLOC | 449 #undef ERROR_CHECK_MALLOC |
444 | 450 |
445 /* Minor sanity checking of the bytecode interpreter. Useful for | 451 /* Minor sanity checking of the bytecode interpreter. Useful for |