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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356
|
/* @(#)xmconfig.h 1.29 03/06/15 Copyright 1995 J. Schilling */
/*
* Manual generated static definitions for machine configuration
*
* Copyright (c) 1995 J. Schilling
*
* This file is made to be included from <mconfig.h> and may be used
* instead of configurations that are dynamically autogenerated.
* Use only cpp instructions.
*
* NOTE: SING: (Schily Is Not Gnu)
*/
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; see the file COPYING. If not, write to the Free Software
* Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _XMCONFIG_H
#define _XMCONFIG_H
#ifdef __cplusplus
extern "C" {
#endif
/*
* 1) Compiler and language related headers
*
* define PROTOTYPES to use ansi C prototypes
*
* define HAVE_ELF Object files are stored in System V.4 ELF format.
*
* define HAVE_COFF Object files are stored in System V.2 COFF format.
*
* define HAVE_AOUT Object files are stored in ATT/BSD a.out format.
*
* define HAVE_STDARG_H to use stdarg.h, else use varargs.h
* NOTE: SaberC on a Sun has prototypes but no stdarg.h.
*
* define HAVE_VA_COPY have va_copy() to do assignements of va_list type objects.
* define HAVE__VA_COPY have __va_copy() to do assignements of va_list type objects.
*
* define HAVE_STDLIB_H to use general utility defines (malloc(), size_t ...)
* some C library prototypes my be found here
*
* define HAVE_STRING_H to get NULL and string function prototypes
*
* define HAVE_STRINGS_H to get BSD string function prototypes
*
* define HAVE_STDC_HEADERS to declare the presence of other ansi C headers
* define STDC_HEADERS same as above (GNU name)
*
* define HAVE_LONGLONG to use long long for space/transfer calculations
*
* define HAVE_SIZE_T The type size_t is present
* define NO_SIZE_T The type size_t is not present
*
*
* 2) Operating system related headers
*
* define HAVE_OSDEF to prevent later definitions to overwrite current
*
* define __NOT_SVR4__ Not a real SVR4 implementation
*
* define HAVE_UNISTD_H to use access, lockf and lseek constants
* syscall prototypes may be found here also
* use sys/file.h otherwise for above constants
*
* define HAVE_FCNTL_H to use access, O_XXX constants for open()
* and open(), creat(), fcntl() prototypes
* use sys/file.h otherwise for above constants
*
* define HAVE_DIRENT_H to use dirent.h instead of the old BSD sys/dir.h
* define HAVE_SYS_DIR_H to use the old BSD sys/dir.h, otherwise no readdir()
* define HAVE_NDIR_H to use ndir.h
* define HAVE_SYS_NDIR_H to use sys/ndir.h
*
* define HAVE_MALLOC_H if malloc.h exists
*
* define HAVE_TERMIOS_H to use posix terminal and session control (termios.h)
* define HAVE_TERMIO_H to use SV terminal control (termio.h) *- no setpgrp -*
* Else use BSD style sgttyb and setpgrp (ioctl.h)
* XXX session control should be another define XXX
*
* define HAVE_SYS_TIME_H may include sys/time.h for struct timeval
* used internally in timedefs.h
*
* define HAVE_UTIMES to use BSD utimes() and sys/time.h
* define HAVE_UTIME_H to use utime.h for the utimbuf structure declaration
* Else declare struct utimbuf yourself.
*
* define HAVE_WAIT_H to use wait.h for prototypes and union wait
* define HAVE_SYS_WAIT_H else use sys/wait.h
* Else declare it by yourself.
*
* define HAVE_SYS_PARAM_H if it is ok to include sys/param.h
*
* define HAVE_SYS_SYSTEMINFO_H to use sysinfo()
* define HAVE_SYS_UTSNAME_H to use uname()
*
* define HAVE_SYS_PRIOCNTL_H to use priocntl() instead of nice()/setpriority()
* define HAVE_SYS_RTPRIOCNTL_H if the system supports real time classes.
*
* define HAVE_SYS_MTIO_H to use mtio definitions from sys/mtio.h
* define HAVE_MTGET_DSREG if struct mtget contains mt_dsreg (drive status)
* define HAVE_MTGET_RESID if struct mtget contains mt_resid (residual count)
* define HAVE_MTGET_FILENO if struct mtget contains mt_fileno (file #)
* define HAVE_MTGET_BLKNO if struct mtget contains mt_blkno (block #0
*
* define MAJOR_IN_MKDEV if we should include sys/mkdev.h to get
* major(), minor() and makedev()
*
* define MAJOR_IN_SYSMACROS if we should include sys/sysmacros.h to get
* major(), minor() and makedev()
*
* ... else look in sys/types.h for major()
*
* 3) Miscellaneous operating system/library/processor related things
*
* define HAVE_USG_STDIO to enable the use USG stdio.h internals
* To to this we need:
* f->_flag & _IONBF ... Unbuffered
* f->_flag & _IOERR ... I/O error
* f->_flag & _IOEOF ... End of File
* f->_cnt ... r/w count in buf
* f->_ptr ... pointer into buf
* _filbuf(FILE * f) ... fill buffer, return 1st ch
* _flsbuf(unsigned char *, FILE * f) ... flush buffer
*
* define HAVE_BRK may use brk()
*
* define HAVE_SBRK may use sbrk()
*
*
* define HAVE_DTOA use the 4.4BSD function __dtoa() instead of
* the AT&T standard functions ecvt()/fcvt()/gcvt()
*
* define HAVE_GETCWD use SysV getcwd() instead of BSD getwd()
*
* define HAVE_STRERROR may use strerror() instead of sys_errlist[] and sys_nerr
*
* define HAVE_MEMMOVE should use memmove() instead of bcopy()
*
* define HAVE_MLOCKALL may use mlockall() to lock the whole process into memory
*
* define HAVE_MMAP may map memory (sys/types.h + sys/mman.h)
* define HAVE_SMMAP may map anonymous memory to get shared mem
*
* define HAVE_USGSHM may get shared memory SV style (sys/types.h + sys/ipc.h)
*
* define HAVE_USGSEM may use SysV style shared memory and semaphores.
* May use shared memory and semaphores to manage a
* sharing buffer and its synchronization.
* If this is not defined, use mmap and flock.
*
* define HAVE_MSEM Has OSF/1 style memory semaphores.
* Use instead of SysV semaphores or flock
* for shared memory synchronisation.
*
* define HAVE_LDSTUB Has SPARC ldstub atomic instruction.
* May be used instead of system V semaphores or flock
* for shared memory synchronisation.
*
* define HAVE_XCHG Has i386 xchg atomic instruction.
* May be used instead of system V semaphores or flock
* for shared memory synchronisation.
*
* define HAVE_FLOCK Use flock for synchronization on logfiles.
* If this is not defined use lockf.
*
* define HAVE_FCHDIR The fchdir system call may be used
* to change the current directory and back.
* Else remember the pathname and use chdir.
*
* define HAVE_STATVFS The statvfs and fstatvfs calls are available.
* Else get filesystem statistics with
* statfs or getmnt (on ultrix).
*
* define HAVE_QUOTA The quota or quotactl system calls are available.
*
* define HAVE_YP To use yellow pages.
*
* define HAVE_SHADOW To use shadow password file.
*
* define HAVE_SETREUID have BSD setreuid()
* define HAVE_SETRESUID have HPUX only ??? setresuid()
* define HAVE_SETEUID have SVr4 seteuid()
*
* define HAVE_LCHOWN Need to use lchown() instead of chown() on symlinks.
*
* define HAVE_PROCFS SVr4 style procfs is available.
*
* define HAVE_PROCFS2 SVr4.2 (SMP) style procfs is available.
*
* define HAVE_SIGINFO Use waitid and the siginfo_t structure for waiting
* for child processes.
* Else use wait3 and union wait.
*
* define HAVE_WAIT3 Have wait3.
*
* define HAVE_WAITPID Use waitpid and no resource usage instead of wait3.
*
* define HAVE_UNION_WAIT Have union wait in wait.h
*
* define HAVE_GETHOSTNAME to use gethostname()
*
* define HAVE_STREAMS Use streams networking calls. Else use sockets.
*
* define HAVE_STRPTYS Use SVr4 style streams pseudo ttys.
*
* define HAVE_POLL Use the poll system call to wait for I/O.
* Else use select.
*
* define HAVE_SELECT Use the select system call to wait for I/O.
*
* define HAVE_TIRPC The remote procedure call library is of the
* transport independent flavour.
*
* define GID_T The type to use for the getgroups() array.
* This should be gid_t, but some BSD based systems
* must have int there.
*
*
* 4) Specials for libschily
*
* define HAVE_SCANSTACK Scanning of the stack is implemented for this
* architecture:
* getfp()
* and the derived functions:
* handlecond(), raisecond()
* are working.
*
* XXX It is most likely that getfp() does not really work correctly
* XXX if getav0() is not working.
* XXX For this reason, HAVE_GETAV0 is not used anymore.
* XXX Instead avoffset.h is included and the existence of
* XXX AV_OFFSET and FP_INDIR is checked instead.
*
* define HAVE_GETAV0 Scanning of stack and locating the arg vector
* is implemented for this architecture:
* getav0()
* is working.
* get_progname() in saveargs.c will work in the main
* thread without a prior call to save_args().
*
*/
#if defined(sun) || defined(__sun) || defined(__sun__)
# ifndef IS_SUN
# define IS_SUN
# endif
#endif
#if defined(SOL2) || defined(SOL2) || \
defined(S5R4) || defined(__S5R4) || defined(SVR4)
# ifndef __SVR4
# define __SVR4
# endif
#endif
#ifdef __SVR4
# ifndef SVR4
# define SVR4
# endif
#endif
/*
* SunOS 4.x
*/
#if defined(IS_SUN) && !defined(__SVR4)
/*
* Sun C defines __STDC__ as zero.
*/
# ifdef __STDC__
# define PROTOTYPES
# ifndef SABER
# define HAVE_STDARG_H
# define HAVE_LONGLONG
# endif
# endif
# define HAVE_AOUT
# define HAVE_STDLIB_H
# define HAVE_STRING_H
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_SYS_DIR_H
# define HAVE_TERMIOS_H
# define HAVE_TERMIO_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
# define HAVE_SYS_UTSNAME_H
# define HAVE_SYS_MTIO_H
# define HAVE_MTGET_DSREG
# define HAVE_MTGET_RESID
# define HAVE_MTGET_FILENO
# define HAVE_MTGET_BLKNO
# define MAJOR_IN_SYSMACROS
# define HAVE_UNION_WAIT
# define HAVE_USG_STDIO
# define HAVE_GETCWD
# define HAVE_MLOCKALL
# define HAVE_MMAP
# define HAVE_SMMAP
# define HAVE_USGSHM
# define HAVE_USGSEM
# ifdef sparc
# define HAVE_LDSTUB
# endif
# define HAVE_FLOCK
# define HAVE_FCHDIR
# define HAVE_QUOTA
# define HAVE_YP
# define HAVE_SETREUID
# define HAVE_WAIT3
# define HAVE_GETHOSTNAME
# define HAVE_SELECT
# define GID_T int
# define USLEEPRETURN_T unsigned int
# define HAVE_GETAV0 /* SunOS < 5 only runs on sparc/mc680xx */
# define HAVE_SCANSTACK /* SunOS < 5 only runs on sparc/mc680xx */
#endif
/*
* AIX
*/
#if defined(_IBMR2) || defined(_AIX)
# define IS_UNIX /* ??? really ??? */
# define NO_FLOATINGPOINT /* XXX until isinf()/isnan() is solved */
# define USE_FLOATINGARGS /* Use up args from floatingpoint format */
#ifndef PROTOTYPES
# define PROTOTYPES
#endif
# define HAVE_COFF
# define HAVE_STDARG_H
# define HAVE_STDLIB_H
# define HAVE_STRING_H
# define HAVE_LONGLONG
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_TERMIOS_H
# define HAVE_TERMIO_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
# define HAVE_SYS_UTSNAME_H
# define MAJOR_IN_SYSMACROS
/*# define HAVE_USG_STDIO*/
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MMAP
# define HAVE_SMMAP
# define HAVE_USGSHM
# define HAVE_USGSEM
# define HAVE_MSEM
# define HAVE_FLOCK
# define HAVE_QUOTA
# define HAVE_YP
# define HAVE_WAIT3
# define HAVE_WAITPID
# define HAVE_GETHOSTNAME
# define HAVE_STREAMS
# define HAVE_POLL
# define HAVE_SELECT
# define GID_T gid_t
# define USLEEPRETURN_T int
#endif
/*
* Silicon Graphics (must be before SVR4)
*/
#if defined(sgi) || defined(__sgi)
# define __NOT_SVR4__ /* Not a real SVR4 implementation */
# define PROTOTYPES
# define HAVE_ELF
# define HAVE_COFF
# define HAVE_STDARG_H
# define HAVE_LONGLONG
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_TERMIOS_H
# define HAVE_TERMIO_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
# define HAVE_WAIT_H
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
# define HAVE_SYS_SYSTEMINFO_H
# define HAVE_SYS_UTSNAME_H
# define HAVE_SYS_MTIO_H
# define HAVE_MTGET_DSREG
# define HAVE_MTGET_RESID
# define HAVE_MTGET_FILENO
# define HAVE_MTGET_BLKNO
# define MAJOR_IN_MKDEV
# define HAVE_USG_STDIO
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MMAP
# define HAVE_SMMAP
# define HAVE_USGSHM
# define HAVE_USGSEM
# define HAVE_FLOCK
# define HAVE_FCHDIR
# define HAVE_STATVFS
# define HAVE_QUOTA
# define HAVE_YP
# define HAVE_SHADOW
# define HAVE_PROCFS
# define HAVE_SIGINFO
# define HAVE_WAIT3
# define HAVE_WAITPID
# define HAVE_GETHOSTNAME
# define HAVE_STREAMS
# define HAVE_STRPTYS
# define HAVE_POLL
# define HAVE_SELECT
# define HAVE_STRPTYS
# define GID_T gid_t
/*# define USLEEPRETURN_T unsigned int*/
# define vfork fork
#endif
#if defined(mips) && !(defined(ultrix) || defined(sony) || defined(sgi))
# define HAVE_COFF
# define HAVE_UNISTD_H
# define HAVE_USGSHM
# define HAVE_USGSEM
# define HAVE_FLOCK
# define HAVE_YP
# define GID_T int
# define USLEEPRETURN_T unsigned int
#endif
#if defined(sony)
# ifdef mips
# define HAVE_COFF
# else
# define HAVE_AOUT
# endif
# define HAVE_USGSHM
# define HAVE_USGSEM
# define HAVE_FLOCK
# define HAVE_QUOTA
# define HAVE_YP
# define GID_T int
# define USLEEPRETURN_T unsigned int
# ifndef SEEK_SET
# define SEEK_SET 0 /* Set file pointer to "offset" */
# define SEEK_CUR 1 /* Set file pointer to current plus "offset" */
# define SEEK_END 2 /* Set file pointer to EOF plus "offset" */
# endif
#endif
/*
* Digital UNIX (OSF1)
*/
#if defined(__osf__)
# define PROTOTYPES
# define HAVE_OSDEF /* prevent later definitions to overwrite current */
/*# define __NOT_SVR4__*/ /* Not a real SVR4 implementation */
/*# define HAVE_ELF*/
# define HAVE_COFF
/*# define HAVE_AOUT*/
# define HAVE_STDARG_H
/*# define HAVE_VA_COPY*/
# define HAVE_STDLIB_H
# define HAVE_STRING_H
# define HAVE_STDC_HEADERS
# define STDC_HEADERS /* GNU name */
# define HAVE_LONGLONG
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_SYS_DIR_H
/*# define HAVE_NDIR_H*/
/*# define HAVE_SYS_NDIR_H*/
# define HAVE_TERMIOS_H
# define HAVE_TERMIO_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
# define HAVE_WAIT_H
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
# define HAVE_SYS_SYSTEMINFO_H
# define HAVE_SYS_UTSNAME_H
# define HAVE_SYS_PRIOCNTL_H
# define HAVE_SYS_RTPRIOCNTL_H
# define HAVE_SYS_MTIO_H
# define HAVE_MTGET_DSREG
# define HAVE_MTGET_RESID
# define HAVE_MTGET_FILENO
# define HAVE_MTGET_BLKNO
/*# define MAJOR_IN_MKDEV*/
# define MAJOR_IN_SYSMACROS
# define HAVE_USG_STDIO
/*# define HAVE_DTOA*/
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MLOCKALL
# define HAVE_MMAP
# define HAVE_SMMAP
# define HAVE_USGSHM
# define HAVE_USGSEM
# define HAVE_MSEM
/*# define HAVE_LDSTUB*/
/*# define HAVE_XCHG*/
# define HAVE_FLOCK
# define HAVE_FCHDIR
# define HAVE_STATVFS
# define HAVE_QUOTA
# define HAVE_YP
/*# define HAVE_SHADOW*/ /* No, but C2 */
# define HAVE_SETREUID
/*# define HAVE_SETRESUID*/
# define HAVE_SETEUID
# define HAVE_LCHOWN
# define HAVE_PROCFS
/*# define HAVE_PROCFS2*/ /* No */
# define HAVE_SIGINFO
# define HAVE_WAIT3
# define HAVE_WAITPID
# define HAVE_UNION_WAIT
# define HAVE_GETHOSTNAME
# define HAVE_STREAMS
# define HAVE_STRPTYS
# define HAVE_POLL
# define HAVE_SELECT /* XXX needs sys/select.h */
/*# define HAVE_TIRPC*/
# define GID_T gid_t
# define USLEEPRETURN_T int
/*# define USLEEPRETURN_T void*/
/*# define USLEEPISVOID*/
/*# define HAVE_GETAV0*/
/*# define HAVE_SCANSTACK*/
#endif
#if defined(ultrix)
# ifdef mips
# define HAVE_COFF
# else
# define HAVE_AOUT
# endif
# define HAVE_STDLIB_H
# define HAVE_UNISTD_H
# define HAVE_SYS_DIR_H
# define HAVE_TERMIOS_H
# define HAVE_UTIME_H
# define HAVE_USGSHM
# define HAVE_USGSEM
# define HAVE_FLOCK
# define HAVE_QUOTA
# define HAVE_YP
# define GID_T int
# define USLEEPRETURN_T unsigned int
#endif
/*
* HP/UX
*/
#if defined(__hpux) || defined(hpux)
/*# define PROTOTYPES*/
# define HAVE_AOUT
# define HAVE_STDARG_H
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_TERMIOS_H
# define HAVE_TERMIO_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIME_H
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
# define HAVE_SYS_UTSNAME_H
# define HAVE_SYS_MTIO_H
# define MAJOR_IN_SYSMACROS
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MMAP
# define HAVE_SMMAP
# define HAVE_USGSHM
# define HAVE_USGSEM
#if 0
# define HAVE_MSEM
# endif
# define HAVE_FCHDIR
# define HAVE_QUOTA
# define HAVE_YP
# define HAVE_SETRESUID
# define HAVE_WAIT3
# define HAVE_WAITPID
# define HAVE_GETHOSTNAME
# define HAVE_STREAMS
# define HAVE_STRPTYS
# define HAVE_POLL
# define HAVE_SELECT
# define GID_T gid_t
/*# define USLEEPRETURN_T unsigned int*/
#endif
/*
* Data General
*/
#if defined(__DGUX__)
# define PROTOTYPES
# define HAVE_ELF
# define HAVE_STDARG_H
# define HAVE_UNISTD_H
# define HAVE_DIRENT_H
# define HAVE_TERMIOS_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
# define HAVE_SYS_PARAM_H
# undef HAVE_MTGET_DSREG
# undef HAVE_MTGET_RESID
# undef HAVE_MTGET_FILENO
# undef HAVE_MTGET_BLKNO
# define mt_type mt_model
# define mt_dsreg mt_status1
# define mt_erreg mt_status2
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_USGSEM
# if defined(__i386_) || defined(i386)
# define HAVE_XCHG
# endif
/*
* DGUX hides its flock as dg_flock.
*/
# define HAVE_FLOCK
# define flock dg_flock
# define HAVE_FCHDIR
# define HAVE_STATVFS
# undef HAVE_QUOTA
# define HAVE_YP
# define HAVE_SHADOW
# undef HAVE_PROCFS
# undef HAVE_PROCFS2
# define HAVE_WAIT3
# define HAVE_UNION_WAIT
/*# define HAVE_GETHOSTNAME*/
# define HAVE_STREAMS
# define HAVE_STRPTYS
# define HAVE_POLL
# define HAVE_SELECT
# undef HAVE_TIRPC
# define GID_T gid_t
# define USLEEPRETURN_T unsigned int
/*
* Use the BSD style wait on DGUX to get the resource usages of child
* processes.
*/
# define _BSD_WAIT_FLAVOR
/*# define HAVE_GETAV0*/
# ifdef i386
# define HAVE_SCANSTACK
# endif
#endif
/*
* Linux
*/
#if defined(__linux__) || defined(__linux)
# define PROTOTYPES
# ifdef __ELF__
# define HAVE_ELF
# else
# define HAVE_AOUT
# endif
# define HAVE_STDARG_H
# define HAVE_STDLIB_H
# define HAVE_STRING_H
# define HAVE_STDC_HEADERS
# define STDC_HEADERS /* GNU name */
# define HAVE_LONGLONG
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_TERMIOS_H
# define HAVE_TERMIO_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
/*# define HAVE_WAIT_H*/
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
# define HAVE_SYS_UTSNAME_H
# define HAVE_SYS_MTIO_H
# define HAVE_MTGET_DSREG
# define HAVE_MTGET_RESID
# define HAVE_MTGET_FILENO
# define HAVE_MTGET_BLKNO
# define MAJOR_IN_SYSMACROS
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MLOCKALL
# define HAVE_MMAP
/*# define HAVE_SMMAP*/
# define HAVE_USGSHM
# define HAVE_USGSEM
# define HAVE_FLOCK
# define HAVE_FCHDIR
# define HAVE_STATVFS
# define HAVE_QUOTA
# define HAVE_YP
# define HAVE_SETREUID /* >= Linux 1.1.37 */
# define HAVE_SETEUID
/*# define HAVE_PROCFS*/ /* ??? */
/*# define HAVE_PROCFS2*/
# define HAVE_WAIT3
# define HAVE_WAITPID
# define HAVE_GETHOSTNAME
# define HAVE_SELECT
# define GID_T gid_t
# define USLEEPRETURN_T void
# define USLEEPISVOID
/*# define HAVE_GETAV0*/
# define HAVE_SCANSTACK
#endif
#if defined(OLD__bsdi__)
# define HAVE_MSEM /* ??? */
# define F_ULOCK 0 /* Unlock a previously locked region */
# define F_LOCK 1 /* Lock a region for exclusive use */
# define F_TLOCK 2 /* Test and lock a region for exclusive use */
# define F_TEST 3 /* Test a region for other processes locks */
#endif
/*
* Prototype for FreeBSD / NetBSD / OpenBSD / BSD/OS
*/
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__)
# define PROTOTYPES
# define HAVE_AOUT
# define HAVE_STDARG_H
# define HAVE_STDLIB_H
# define HAVE_STRING_H
# define HAVE_STDC_HEADERS
# define STDC_HEADERS /* GNU name */
# define HAVE_LONGLONG
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_TERMIOS_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
# define HAVE_SYS_UTSNAME_H
# define HAVE_SYS_MTIO_H
# define HAVE_MTGET_DSREG
# define HAVE_MTGET_RESID
# define HAVE_MTGET_FILENO
# define HAVE_MTGET_BLKNO
/*# define HAVE_USG_STDIO*/
# define HAVE_DTOA
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MMAP
# define HAVE_SMMAP
# define HAVE_USGSHM
# define HAVE_USGSEM
# ifdef sparc
# define HAVE_LDSTUB
# endif
# ifdef i386
# define HAVE_XCHG
# endif
# define HAVE_FLOCK
# define HAVE_FCHDIR
# define HAVE_QUOTA
# define HAVE_YP
# define HAVE_SETREUID
/*# define HAVE_SETRESUID*/
# define HAVE_SETEUID
/*# define HAVE_LCHOWN*/
# define HAVE_WAIT3
# define HAVE_WAITPID
# define HAVE_UNION_WAIT
# define HAVE_GETHOSTNAME
# define HAVE_SELECT
# define GID_T gid_t
/*# define USLEEPRETURN_T unsigned int*/
# define USLEEPRETURN_T void
# define USLEEPISVOID
/*# define HAVE_GETAV0*/
/*# define HAVE_SCANSTACK*/
#endif
/*
* SysVr4
*/
#if defined(__SVR4) && !defined(__NOT_SVR4__)
# define PROTOTYPES
# define HAVE_ELF
# define HAVE_STDARG_H
# if defined(IS_SUN)
# define HAVE_LONGLONG
# define HAVE_UTIMES
# define HAVE_QUOTA
# define HAVE_GETAV0 /* XXX what about PPC ??? */
# define HAVE_SCANSTACK /* XXX what about PPC ??? */
# define HAVE_STRSIGNAL
# define HAVE_STR2SIG
# define HAVE_SIG2STR
# endif
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_TERMIOS_H
# define HAVE_TERMIO_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIME_H
# define HAVE_WAIT_H
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
# define HAVE_SYS_SYSTEMINFO_H
# define HAVE_SYS_UTSNAME_H
# define HAVE_SYS_PRIOCNTL_H
# define HAVE_SYS_RTPRIOCNTL_H
# define HAVE_SYS_MTIO_H
# define HAVE_MTGET_DSREG
# define HAVE_MTGET_RESID
# define HAVE_MTGET_FILENO
# define HAVE_MTGET_BLKNO
# define MAJOR_IN_MKDEV
# define HAVE_USG_STDIO
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MLOCKALL
# define HAVE_MMAP
# define HAVE_SMMAP
# define HAVE_USGSHM
# define HAVE_USGSEM
# ifdef sparc
# define HAVE_LDSTUB
# endif
# ifdef i386
# define HAVE_XCHG
# endif
# define HAVE_FCHDIR
# define HAVE_STATVFS
# define HAVE_YP
# define HAVE_SHADOW
# define HAVE_SETEUID
# define HAVE_LCHOWN
# define HAVE_PROCFS
# if (defined(i386) && !defined(IS_SUN))
# define HAVE_PROCFS2
# define HAVE_QUOTA
# endif
# define HAVE_SIGINFO
# define HAVE_WAITPID
# define HAVE_STREAMS
# define HAVE_STRPTYS
# define HAVE_POLL
# define HAVE_SELECT
# define HAVE_TIRPC
# define GID_T gid_t
# define USLEEPRETURN_T unsigned int
#endif
/*
* Apple Rhapsody
*/
#if defined(__NeXT__) && defined(__TARGET_OSNAME) && __TARGET_OSNAME == rhapsody
# define HAVE_OSDEF /* prevent later definitions to overwrite current */
# define PROTOTYPES
/*# define HAVE_ELF*/
/*# define HAVE_COFF*/
/*# define HAVE_AOUT*/
# define HAVE_STDARG_H
# define HAVE_STDLIB_H
# define HAVE_STRING_H
# define HAVE_STDC_HEADERS
# define STDC_HEADERS /* GNU name */
# define HAVE_LONGLONG
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_SYS_DIR_H
/*# define HAVE_NDIR_H*/
/*# define HAVE_SYS_NDIR_H*/
# define HAVE_TERMIOS_H
/*# define HAVE_TERMIO_H*/
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
/*# define HAVE_WAIT_H*/
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
/*# define HAVE_SYS_SYSTEMINFO_H*/
# define HAVE_SYS_UTSNAME_H
/*# define HAVE_SYS_PRIOCNTL_H*/
/*# define HAVE_SYS_RTPRIOCNTL_H*/
# define HAVE_SYS_MTIO_H
# define HAVE_MTGET_DSREG
# define HAVE_MTGET_RESID
# define HAVE_MTGET_FILENO
# define HAVE_MTGET_BLKNO
/*# define MAJOR_IN_MKDEV*/
/*# define MAJOR_IN_SYSMACROS*/
/*# define HAVE_USG_STDIO*/
# define HAVE_DTOA
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MMAP
# define HAVE_SMMAP
# define HAVE_USGSHM
# define HAVE_USGSEM
/*# define HAVE_MSEM*/
/*# define HAVE_LDSTUB*/
# if defined(__i386_) || defined(i386)
# define HAVE_XCHG
# endif
# define HAVE_FLOCK
/*# define HAVE_FCHDIR*/
/*# define HAVE_STATVFS*/
# define HAVE_QUOTA
# define HAVE_YP
/*# define HAVE_SHADOW*/
# define HAVE_SETREUID
/*# define HAVE_SETRESUID*/
# define HAVE_SETEUID
/*# define HAVE_LCHOWN*/
/*# define HAVE_PROCFS*/
/*# define HAVE_PROCFS2*/
/*# define HAVE_SIGINFO*/
# define HAVE_WAIT3
/*# define HAVE_WAITPID*/
# define HAVE_UNION_WAIT
# define HAVE_GETHOSTNAME
/*# define HAVE_STREAMS*/
/*# define HAVE_STRPTYS*/
# define HAVE_POLL
# define HAVE_SELECT
/*# define HAVE_TIRPC*/
/*# define GID_T gid_t*/
/*# define USLEEPRETURN_T unsigned int*/
/*# define USLEEPRETURN_T void*/
# define USLEEPISVOID
/*# define HAVE_GETAV0*/
/*# define HAVE_SCANSTACK*/
#endif
/*
* NextStep
*/
#if defined(__NeXT__) && !defined(HAVE_OSDEF)
#define printf Xprintf
#define fprintf Xfprintf
#define sprintf Xsprintf
#ifdef XXX
# define __NOT_SVR4__ /* Not a real SVR4 implementation */
#endif
# define PROTOTYPES
/*# define HAVE_ELF*/
/*# define HAVE_COFF*/
/*# define HAVE_AOUT*/
# define HAVE_STDARG_H
# define HAVE_STDLIB_H
# define HAVE_STRING_H
# define HAVE_STDC_HEADERS
# define STDC_HEADERS /* GNU name */
# define HAVE_LONGLONG
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
/*# define HAVE_DIRENT_H XXX not posix compliant */
# define HAVE_SYS_DIR_H
/*# define HAVE_NDIR_H*/
/*# define HAVE_SYS_NDIR_H*/
/*# define HAVE_TERMIOS_H XXX need buggy -lposix */
/*# define HAVE_TERMIO_H*/
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
/*# define HAVE_WAIT_H*/
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
/*# define HAVE_SYS_SYSTEMINFO_H*/
/*# define HAVE_SYS_UTSNAME_H XXX needs buggy -lposix */
/*# define HAVE_SYS_PRIOCNTL_H*/
/*# define HAVE_SYS_RTPRIOCNTL_H*/
# define HAVE_SYS_MTIO_H
# define HAVE_MTGET_DSREG
# define HAVE_MTGET_RESID
# define HAVE_MTGET_FILENO
# define HAVE_MTGET_BLKNO
/*# define MAJOR_IN_MKDEV*/
/*# define MAJOR_IN_SYSMACROS*/
/*# define HAVE_USG_STDIO XXX different _flsbuf() */
# define HAVE_STRERROR
/*# define HAVE_MEMMOVE*/
/*# define HAVE_MMAP*/
/*# define HAVE_SMMAP*/
/*# define HAVE_USGSHM*/
/*# define HAVE_USGSEM*/
/*# define HAVE_MSEM*/
/*# define HAVE_LDSTUB*/
/*# define HAVE_XCHG*/
# define HAVE_FLOCK
/*# define HAVE_FCHDIR*/
/*# define HAVE_STATVFS*/
/*# define HAVE_QUOTA*/
/*# define HAVE_YP*/
/*# define HAVE_SHADOW*/
# define HAVE_SETREUID
/*# define HAVE_SETRESUID*/
# define HAVE_SETEUID
/*# define HAVE_LCHOWN*/
/*# define HAVE_PROCFS*/
/*# define HAVE_PROCFS2*/
/*# define HAVE_SIGINFO*/
# define HAVE_WAIT3
/*# define HAVE_WAITPID*/
# define HAVE_UNION_WAIT
# define HAVE_GETHOSTNAME
/*# define HAVE_STREAMS*/
/*# define HAVE_STRPTYS*/
/*# define HAVE_POLL*/
# define HAVE_SELECT
/*# define HAVE_TIRPC*/
# define GID_T gid_t
# define USLEEPRETURN_T int
/*# define USLEEPRETURN_T void*/
/*# define USLEEPISVOID*/
/*# define HAVE_GETAV0*/
/*# define HAVE_SCANSTACK*/
#endif
/*
* Cygwin 32 (NT)
*/
#if defined(__CYGWIN32__)
# define PROTOTYPES
# define HAVE_OSDEF /* prevent later definitions to overwrite current */
# define __NOT_SVR4__ /* Not a real SVR4 implementation */
/*# define HAVE_ELF*/
/*# define HAVE_COFF*/
# define HAVE_AOUT
# define HAVE_STDARG_H
/*# define HAVE_VA_COPY*/
# define HAVE_STDLIB_H
# define HAVE_STRING_H
# define HAVE_STDC_HEADERS
# define STDC_HEADERS /* GNU name */
# define HAVE_LONGLONG
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
/*# define HAVE_SYS_DIR_H*/
/*# define HAVE_NDIR_H*/
/*# define HAVE_SYS_NDIR_H*/
# define HAVE_TERMIOS_H
# define HAVE_TERMIO_H
# define HAVE_SYS_TIME_H
/*# define HAVE_UTIMES*/
# define HAVE_UTIME_H
/*# define HAVE_WAIT_H*/
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
/*# define HAVE_SYS_SYSTEMINFO_H*/
# define HAVE_SYS_UTSNAME_H
/*# define HAVE_SYS_PRIOCNTL_H*/
/*# define HAVE_SYS_RTPRIOCNTL_H*/
/*# define HAVE_SYS_MTIO_H*/
/*# define HAVE_MTGET_DSREG*/
/*# define HAVE_MTGET_RESID*/
/*# define HAVE_MTGET_FILENO*/
/*# define HAVE_MTGET_BLKNO*/
/*# define MAJOR_IN_MKDEV*/
/*# define MAJOR_IN_SYSMACROS*/
/*# define HAVE_USG_STDIO*/
/*# define HAVE_DTOA*/ /* XXX eigentlich doch da */
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MMAP
# define HAVE_SMMAP
/*# define HAVE_USGSHM*/
/*# define HAVE_USGSEM*/
/*# define HAVE_MSEM*/
/*# define HAVE_LDSTUB*/
# if defined(__i386_) || defined(i386)
# define HAVE_XCHG
# endif
/*# define HAVE_FLOCK*/
/*# define HAVE_FCHDIR*/
/*# define HAVE_STATVFS*/
/*# define HAVE_QUOTA*/
/*# define HAVE_YP*/
/*# define HAVE_SHADOW*/
/*# define HAVE_SETREUID*/
/*# define HAVE_SETRESUID*/
/*# define HAVE_SETEUID*/
/*# define HAVE_LCHOWN*/
/*# define HAVE_PROCFS*/
/*# define HAVE_PROCFS2*/
/*# define HAVE_SIGINFO*/
# define HAVE_WAIT3
# define HAVE_WAITPID
# define HAVE_UNION_WAIT
# define HAVE_GETHOSTNAME
/*# define HAVE_STREAMS*/
/*# define HAVE_STRPTYS*/
/*# define HAVE_POLL*/
# define HAVE_SELECT
/*# define HAVE_TIRPC*/
# define GID_T gid_t
# define USLEEPRETURN_T unsigned int
/*# define USLEEPRETURN_T void*/
/*# define USLEEPISVOID*/
/*# define HAVE_GETAV0*/
/*# define HAVE_SCANSTACK*/
#endif /* __CYGWIN32__ */
#if defined(VMS)
# define PROTOTYPES
# define HAVE_OSDEF /* prevent later definitions to overwrite current */
# define __NOT_SVR4__ /* Not a real SVR4 implementation */
# define HAVE_UNISTD_H
/* # define HAVE_SYS_TIME_H */
# define HAVE_FCNTL_H
# define HAVE_USLEEP
# define HAVE_INTTYPES_H
# include <types.h>
# define HOST_CPU "Alpha/VAX"
# define HOST_VENDOR "CPQ"
# define HOST_OS "VMS/OpenVMS"
# define RETSIGTYPE void
/*# define HAVE_ELF */
/*# define HAVE_COFF */
/*# define HAVE_AOUT */
/*# define HAVE_STDARG_H */
/*# define HAVE_VA_COPY */
/*# define HAVE_STDLIB_H */
/*# define HAVE_STRING_H */
/*# define HAVE_STDC_HEADERS */
/*# define STDC_HEADERS */
/*# define HAVE_LONGLONG */
/*# define HAVE_UNISTD_H */
/*# define HAVE_FCNTL_H */
/*# define HAVE_DIRENT_H */
/*# define HAVE_SYS_DIR_H */
/*# define HAVE_NDIR_H */
/*# define HAVE_SYS_NDIR_H */
/*# define HAVE_TERMIOS_H */
/*# define HAVE_TERMIO_H */
/*# define HAVE_SYS_TIME_H */
/*# define HAVE_UTIMES */
/*# define HAVE_UTIME_H */
/*# define HAVE_WAIT_H */
/*# define HAVE_SYS_WAIT_H */
/*# define HAVE_SYS_SYSTEMINFO_H */
/*# define HAVE_SYS_UTSNAME_H */
/*# define HAVE_SYS_PRIOCNTL_H */
/*# define HAVE_SYS_RTPRIOCNTL_H */
/*# define HAVE_SYS_MTIO_H */
/*# define HAVE_MTGET_DSREG */
/*# define HAVE_MTGET_RESID */
/*# define HAVE_MTGET_FILENO */
/*# define HAVE_MTGET_BLKNO */
/*# define MAJOR_IN_MKDEV */
/*# define MAJOR_IN_SYSMACROS */
/*# define HAVE_USG_STDIO */
/*# define HAVE_DTOA */
/*# define HAVE_STRERROR */
# define HAVE_MEMMOVE
/*# define HAVE_MMAP */
/*# define HAVE_SMMAP */
/*# define HAVE_USGSHM */
/*# define HAVE_USGSEM */
/*# define HAVE_MSEM */
/*# define HAVE_LDSTUB */
/*# define HAVE_XCHG */
/*# define HAVE_FLOCK */
/*# define HAVE_FCHDIR */
/*# define HAVE_STATVFS */
/*# define HAVE_QUOTA */
/*# define HAVE_YP */
/*# define HAVE_SHADOW */
/*# define HAVE_SETREUID */
/*# define HAVE_SETRESUID */
/*# define HAVE_SETEUID */
/*# define HAVE_LCHOWN */
/*# define HAVE_PROCFS */
/*# define HAVE_PROCFS2 */
/*# define HAVE_SIGINFO */
/*# define HAVE_WAIT3 */
/*# define HAVE_WAITPID */
/*# define HAVE_UNION_WAIT */
# define HAVE_GETHOSTNAME
/*# define HAVE_STREAMS */
/*# define HAVE_STRPTYS */
/*# define HAVE_POLL */
# define HAVE_SELECT
/*# define HAVE_TIRPC */
/*# define GID_T gid_t */
# define USLEEPRETURN_T uint
/*# define USLEEPRETURN_T void */
/*# define USLEEPISVOID */
/*# define HAVE_GETAV0 */
/*# define HAVE_SCANSTACK */
#endif
/*
* Prototype for new systems
*/
#if defined(__NEW_SYSTEM_TO_DEFINE__)
# define PROTOTYPES
# define HAVE_OSDEF /* prevent later definitions to overwrite current */
# define __NOT_SVR4__ /* Not a real SVR4 implementation */
# define HAVE_ELF
# define HAVE_COFF
# define HAVE_AOUT
# define HAVE_STDARG_H
# define HAVE_VA_COPY
# define HAVE__VA_COPY
# define HAVE_STDLIB_H
# define HAVE_STRING_H
# define HAVE_STRINGS_H
# define HAVE_STDC_HEADERS
# define STDC_HEADERS /* GNU name */
# define HAVE_LONGLONG
# define HAVE_SIZE_T
# define NO_SIZE_T
# define HAVE_UNISTD_H
# define HAVE_FCNTL_H
# define HAVE_DIRENT_H
# define HAVE_SYS_DIR_H
# define HAVE_NDIR_H
# define HAVE_MALLOC_H
# define HAVE_SYS_NDIR_H
# define HAVE_TERMIOS_H
# define HAVE_TERMIO_H
# define HAVE_SYS_TIME_H
# define HAVE_UTIMES
# define HAVE_UTIME_H
# define HAVE_WAIT_H
# define HAVE_SYS_WAIT_H
# define HAVE_SYS_PARAM_H
# define HAVE_SYS_SYSTEMINFO_H
# define HAVE_SYS_UTSNAME_H
# define HAVE_SYS_PRIOCNTL_H
# define HAVE_SYS_RTPRIOCNTL_H
# define HAVE_SYS_MTIO_H
# define HAVE_MTGET_DSREG
# define HAVE_MTGET_RESID
# define HAVE_MTGET_FILENO
# define HAVE_MTGET_BLKNO
# define MAJOR_IN_MKDEV
# define MAJOR_IN_SYSMACROS
# define HAVE_USG_STDIO
# define HAVE_BRK
# define HAVE_SBRK
# define HAVE_DTOA
# define HAVE_GETCWD
# define HAVE_STRERROR
# define HAVE_MEMMOVE
# define HAVE_MLOCKALL
# define HAVE_MMAP
# define HAVE_SMMAP
# define HAVE_USGSHM
# define HAVE_USGSEM
# define HAVE_MSEM
# define HAVE_LDSTUB
# define HAVE_XCHG
# define HAVE_FLOCK
# define HAVE_FCHDIR
# define HAVE_STATVFS
# define HAVE_QUOTA
# define HAVE_YP
# define HAVE_SHADOW
# define HAVE_SETREUID
# define HAVE_SETRESUID
# define HAVE_SETEUID
# define HAVE_LCHOWN
# define HAVE_PROCFS
# define HAVE_PROCFS2
# define HAVE_SIGINFO
# define HAVE_WAIT3
# define HAVE_WAITPID
# define HAVE_UNION_WAIT
# define HAVE_GETHOSTNAME
# define HAVE_STREAMS
# define HAVE_STRPTYS
# define HAVE_POLL
# define HAVE_SELECT
# define HAVE_TIRPC
# define GID_T gid_t
# define USLEEPRETURN_T unsigned int
# define USLEEPRETURN_T void
# define USLEEPISVOID
# define HAVE_GETAV0
# define HAVE_SCANSTACK
#endif /* __NEW_SYSTEM_TO_DEFINE__ */
#ifdef __cplusplus
}
#endif
#endif /* _XMCONFIG_H */
|