comparison src/config.h.in @ 434:9d177e8d4150 r21-2-25

Import from CVS: tag r21-2-25
author cvs
date Mon, 13 Aug 2007 11:30:53 +0200
parents 3ecd8885ac67
children 84b14dcb0985
comparison
equal deleted inserted replaced
433:892ca416f0fb 434:9d177e8d4150
497 /* Defined by AC_C_CONST in configure.in */ 497 /* Defined by AC_C_CONST in configure.in */
498 #undef const 498 #undef const
499 499
500 #define CONST const 500 #define CONST const
501 501
502 /* If defined, use unions instead of ints. A few systems (DEC Alpha) 502 /* Allow the source to use standard types. Include these before the
503 seem to require this, probably because something with the int 503 s&m files so that they can use them. */
504 definitions isn't right with 64-bit systems. */
505 #undef USE_UNION_TYPE
506
507 /* The configuration script defines opsysfile to be the name of the
508 s/...h file that describes the system type you are using.
509 The file is chosen based on the configuration name you give.
510
511 See the file ../etc/MACHINES for a list of systems and the
512 configuration names to use for them.
513
514 See s/template.h for documentation on writing s/...h files. */
515
516 #if defined (__cplusplus) && !defined (NOT_C_CODE)
517 extern "C" {
518 #endif
519 #undef config_opsysfile
520 #include config_opsysfile
521
522 /* The configuration script defines machfile to be the name of the
523 m/...h file that describes the machine you are using. The file is
524 chosen based on the configuration name you give.
525
526 See the file ../etc/MACHINES for a list of machines and the
527 configuration names to use for them.
528
529 See m/template.h for documentation on writing m/...h files. */
530 #undef config_machfile
531 #include config_machfile
532 #if defined (__cplusplus) && !defined (NOT_C_CODE)
533 }
534 #endif
535
536 #if defined (USE_SYSTEM_MALLOC) && !defined (SYSTEM_MALLOC)
537 #define SYSTEM_MALLOC
538 #endif
539
540 /* Use the relocating allocator for buffer space? */
541 #undef REL_ALLOC
542
543 /* Define the return type of signal handlers if the s/xxx.h file
544 did not already do so. */
545 #define RETSIGTYPE void
546
547 /* SIGTYPE is the macro we actually use. */
548 #ifndef SIGTYPE
549 #define SIGTYPE RETSIGTYPE
550 #define SIGRETURN return
551 #endif
552
553 /* Allow the source to use standard types */
554 #undef ssize_t 504 #undef ssize_t
555 #undef size_t 505 #undef size_t
556 #undef pid_t 506 #undef pid_t
557 #undef mode_t 507 #undef mode_t
558 #undef off_t 508 #undef off_t
559 #undef uid_t 509 #undef uid_t
560 #undef gid_t 510 #undef gid_t
511
512 /* If defined, use unions instead of ints. A few systems (DEC Alpha)
513 seem to require this, probably because something with the int
514 definitions isn't right with 64-bit systems. */
515 #undef USE_UNION_TYPE
516
517 /* The configuration script defines opsysfile to be the name of the
518 s/...h file that describes the system type you are using.
519 The file is chosen based on the configuration name you give.
520
521 See the file ../etc/MACHINES for a list of systems and the
522 configuration names to use for them.
523
524 See s/template.h for documentation on writing s/...h files. */
525
526 #if defined (__cplusplus) && !defined (NOT_C_CODE)
527 extern "C" {
528 #endif
529 #undef config_opsysfile
530 #include config_opsysfile
531
532 /* The configuration script defines machfile to be the name of the
533 m/...h file that describes the machine you are using. The file is
534 chosen based on the configuration name you give.
535
536 See the file ../etc/MACHINES for a list of machines and the
537 configuration names to use for them.
538
539 See m/template.h for documentation on writing m/...h files. */
540 #undef config_machfile
541 #include config_machfile
542 #if defined (__cplusplus) && !defined (NOT_C_CODE)
543 }
544 #endif
545
546 #if defined (USE_SYSTEM_MALLOC) && !defined (SYSTEM_MALLOC)
547 #define SYSTEM_MALLOC
548 #endif
549
550 /* Use the relocating allocator for buffer space? */
551 #undef REL_ALLOC
552
553 /* Define the return type of signal handlers if the s/xxx.h file
554 did not already do so. */
555 #define RETSIGTYPE void
556
557 /* SIGTYPE is the macro we actually use. */
558 #ifndef SIGTYPE
559 #define SIGTYPE RETSIGTYPE
560 #define SIGRETURN return
561 #endif
561 562
562 /* Define DYNODUMP if it is necessary to properly dump on this system. 563 /* Define DYNODUMP if it is necessary to properly dump on this system.
563 Currently this is only Solaris 2.x, for x < 6. */ 564 Currently this is only Solaris 2.x, for x < 6. */
564 #undef DYNODUMP 565 #undef DYNODUMP
565 566