Mercurial > hg > xemacs-beta
comparison nt/config.h @ 398:74fd4e045ea6 r21-2-29
Import from CVS: tag r21-2-29
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:13:30 +0200 |
parents | bbff43aa5eb7 |
children | a86b2b5e0111 |
comparison
equal
deleted
inserted
replaced
397:f4aeb21a5bad | 398:74fd4e045ea6 |
---|---|
64 /* #undef PACKAGE_PATH */ | 64 /* #undef PACKAGE_PATH */ |
65 | 65 |
66 /* Define LISP_FLOAT_TYPE if you want XEmacs to support floating-point | 66 /* Define LISP_FLOAT_TYPE if you want XEmacs to support floating-point |
67 numbers. */ | 67 numbers. */ |
68 #undef LISP_FLOAT_TYPE | 68 #undef LISP_FLOAT_TYPE |
69 | |
70 /* Define GNU_MALLOC if you want to use the *new* GNU memory allocator. */ | |
71 #define GNU_MALLOC | |
72 | |
73 /* Define USE_SYSTEM_MALLOC if you forcing the use of it. */ | |
74 #undef USE_SYSTEM_MALLOC | |
75 | 69 |
76 /* Define HAVE_TTY if you want TTY support compiled in. */ | 70 /* Define HAVE_TTY if you want TTY support compiled in. */ |
77 #undef HAVE_TTY | 71 #undef HAVE_TTY |
78 | 72 |
79 /* Compile in support for the X window system? */ | 73 /* Compile in support for the X window system? */ |
334 etc. */ | 328 etc. */ |
335 #define ERROR_CHECK_MALLOC | 329 #define ERROR_CHECK_MALLOC |
336 | 330 |
337 #endif /* DEBUG_XEMACS */ | 331 #endif /* DEBUG_XEMACS */ |
338 | 332 |
333 /* Define convenient conditionally defined assertion macros. */ | |
334 #ifdef ERROR_CHECK_TYPECHECK | |
335 #define type_checking_assert(assertion) assert (assertion) | |
336 #else | |
337 #define type_checking_assert(assertion) | |
338 #endif | |
339 | |
340 #ifdef ERROR_CHECK_BUFPOS | |
341 #define bufpos_checking_assert(assertion) assert (assertion) | |
342 #else | |
343 #define bufpos_checking_assert(assertion) | |
344 #endif | |
345 | |
346 | |
339 /* Define MEMORY_USAGE_STATS if you want extra code compiled in to | 347 /* Define MEMORY_USAGE_STATS if you want extra code compiled in to |
340 determine where XEmacs's memory is going. */ | 348 determine where XEmacs's memory is going. */ |
341 #undef MEMORY_USAGE_STATS | 349 #undef MEMORY_USAGE_STATS |
342 | 350 |
343 /* Define QUANTIFY if using Quantify from Pure Software. This adds | 351 /* Define QUANTIFY if using Quantify from Pure Software. This adds |
409 | 417 |
410 /* Undocumented debugging option: Don't automatically rebuild the DOC | 418 /* Undocumented debugging option: Don't automatically rebuild the DOC |
411 file. This saves a lot of time when you're repeatedly | 419 file. This saves a lot of time when you're repeatedly |
412 compiling-running-crashing. */ | 420 compiling-running-crashing. */ |
413 #undef NO_DOC_FILE | 421 #undef NO_DOC_FILE |
414 | |
415 #define CONST const | |
416 | 422 |
417 /* If not defined, use unions instead of ints. A few systems (DEC Alpha) | 423 /* If not defined, use unions instead of ints. A few systems (DEC Alpha) |
418 seem to require this, probably because something with the int | 424 seem to require this, probably because something with the int |
419 definitions isn't right with 64-bit systems. | 425 definitions isn't right with 64-bit systems. |
420 | 426 |
609 /* Should movemail use kerberos for POP authentication? */ | 615 /* Should movemail use kerberos for POP authentication? */ |
610 #undef KERBEROS | 616 #undef KERBEROS |
611 /* Should movemail use hesiod for getting POP server host? */ | 617 /* Should movemail use hesiod for getting POP server host? */ |
612 #undef HESIOD | 618 #undef HESIOD |
613 /* Determine type of mail locking. */ | 619 /* Determine type of mail locking. */ |
614 /* Play preprocessor games so that configure options override s&m files */ | 620 #undef MAIL_LOCK_LOCKF |
615 #undef REAL_MAIL_USE_LOCKF | 621 #undef REAL_LOCK_FLOCK |
616 #undef REAL_MAIL_USE_FLOCK | 622 #undef MAIL_LOCK_DOT |
617 #undef MAIL_USE_LOCKF | |
618 #undef MAIL_USE_FLOCK | |
619 #ifdef REAL_MAIL_USE_FLOCK | |
620 #define MAIL_USE_FLOCK | |
621 #endif | |
622 #ifdef REAL_MAIL_USE_LOCKF | |
623 #define MAIL_USE_LOCKF | |
624 #endif | |
625 | 623 |
626 #endif /* _SRC_CONFIG_H_ */ | 624 #endif /* _SRC_CONFIG_H_ */ |