1/* 2 * This file was produced by running the config_h.SH script, which 3 * gets its values from config.sh, which is generally produced by 4 * running Configure. 5 * 6 * Feel free to modify any of this as the need arises. Note, however, 7 * that running config_h.SH again will wipe out any changes you've made. 8 * For a more permanent change edit config.sh and rerun config_h.SH. 9 * 10 * $Id: Config_h.U,v 3.0.1.5 1997/02/28 14:57:43 ram Exp $ 11 */ 12 13/* 14 * Package name : perl 15 * Source directory : . 16 * Configuration time: Sun Nov 24 20:57:48 EST 2002 17 * Configured by : 9trouble 18 * Target system : plan9 17genr 1 0 generic pcfl 19 */ 20 21#ifndef _config_h_ 22#define _config_h_ 23 24/* LOC_SED: 25 * This symbol holds the complete pathname to the sed program. 26 */ 27#define LOC_SED "/bin/sed" /**/ 28 29/* HAS_AINTL: 30 * This symbol, if defined, indicates that the aintl routine is 31 * available. If copysignl is also present we can emulate modfl. 32 */ 33/*#define HAS_AINTL / **/ 34 35/* HAS_ALARM: 36 * This symbol, if defined, indicates that the alarm routine is 37 * available. 38 */ 39#define HAS_ALARM /**/ 40 41/* HASATTRIBUTE: 42 * This symbol indicates the C compiler can check for function attributes, 43 * such as printf formats. This is normally only supported by GNU cc. 44 */ 45/*#define HASATTRIBUTE / **/ 46#ifndef HASATTRIBUTE 47#ifdef __attribute__ 48#undef __attribute__ 49#endif 50#define __attribute__(_arg_) 51#endif 52 53/* HAS_BCMP: 54 * This symbol is defined if the bcmp() routine is available to 55 * compare blocks of memory. 56 */ 57#define HAS_BCMP /**/ 58 59/* HAS_BCOPY: 60 * This symbol is defined if the bcopy() routine is available to 61 * copy blocks of memory. 62 */ 63#define HAS_BCOPY /**/ 64 65/* HAS_BZERO: 66 * This symbol is defined if the bzero() routine is available to 67 * set a memory block to 0. 68 */ 69#define HAS_BZERO /**/ 70 71/* HAS_CHOWN: 72 * This symbol, if defined, indicates that the chown routine is 73 * available. 74 */ 75#define HAS_CHOWN /**/ 76 77/* HAS_CHROOT: 78 * This symbol, if defined, indicates that the chroot routine is 79 * available. 80 */ 81/*#define HAS_CHROOT / **/ 82 83/* HAS_CHSIZE: 84 * This symbol, if defined, indicates that the chsize routine is available 85 * to truncate files. You might need a -lx to get this routine. 86 */ 87/*#define HAS_CHSIZE / **/ 88 89/* HASCONST: 90 * This symbol, if defined, indicates that this C compiler knows about 91 * the const type. There is no need to actually test for that symbol 92 * within your programs. The mere use of the "const" keyword will 93 * trigger the necessary tests. 94 */ 95#define HASCONST /**/ 96#ifndef HASCONST 97#define const 98#endif 99 100/* HAS_CUSERID: 101 * This symbol, if defined, indicates that the cuserid routine is 102 * available to get character login names. 103 */ 104#define HAS_CUSERID /**/ 105 106/* HAS_DBL_DIG: 107 * This symbol, if defined, indicates that this system's <float.h> 108 * or <limits.h> defines the symbol DBL_DIG, which is the number 109 * of significant digits in a double precision number. If this 110 * symbol is not defined, a guess of 15 is usually pretty good. 111 */ 112#define HAS_DBL_DIG /* */ 113 114/* HAS_DIFFTIME: 115 * This symbol, if defined, indicates that the difftime routine is 116 * available. 117 */ 118#define HAS_DIFFTIME /**/ 119 120/* HAS_DLERROR: 121 * This symbol, if defined, indicates that the dlerror routine is 122 * available to return a string describing the last error that 123 * occurred from a call to dlopen(), dlclose() or dlsym(). 124 */ 125/*#define HAS_DLERROR / **/ 126 127/* HAS_DUP2: 128 * This symbol, if defined, indicates that the dup2 routine is 129 * available to duplicate file descriptors. 130 */ 131#define HAS_DUP2 /**/ 132 133/* HAS_FCHMOD: 134 * This symbol, if defined, indicates that the fchmod routine is available 135 * to change mode of opened files. If unavailable, use chmod(). 136 */ 137#define HAS_FCHMOD /**/ 138 139/* HAS_FCHOWN: 140 * This symbol, if defined, indicates that the fchown routine is available 141 * to change ownership of opened files. If unavailable, use chown(). 142 */ 143/*#define HAS_FCHOWN / **/ 144 145/* HAS_FCNTL: 146 * This symbol, if defined, indicates to the C program that 147 * the fcntl() function exists. 148 */ 149#define HAS_FCNTL /**/ 150 151/* HAS_FGETPOS: 152 * This symbol, if defined, indicates that the fgetpos routine is 153 * available to get the file position indicator, similar to ftell(). 154 */ 155#define HAS_FGETPOS /**/ 156 157/* HAS_FLOCK: 158 * This symbol, if defined, indicates that the flock routine is 159 * available to do file locking. 160 */ 161/*#define HAS_FLOCK / **/ 162 163/* HAS_FORK: 164 * This symbol, if defined, indicates that the fork routine is 165 * available. 166 */ 167#define HAS_FORK /**/ 168 169/* HAS_FSETPOS: 170 * This symbol, if defined, indicates that the fsetpos routine is 171 * available to set the file position indicator, similar to fseek(). 172 */ 173#define HAS_FSETPOS /**/ 174 175/* HAS_GETTIMEOFDAY: 176 * This symbol, if defined, indicates that the gettimeofday() system 177 * call is available for a sub-second accuracy clock. Usually, the file 178 * <sys/resource.h> needs to be included (see I_SYS_RESOURCE). 179 * The type "Timeval" should be used to refer to "struct timeval". 180 */ 181#define HAS_GETTIMEOFDAY /**/ 182#ifdef HAS_GETTIMEOFDAY 183#define Timeval struct timeval /* Structure used by gettimeofday() */ 184#endif 185 186/* HAS_GETGROUPS: 187 * This symbol, if defined, indicates that the getgroups() routine is 188 * available to get the list of process groups. If unavailable, multiple 189 * groups are probably not supported. 190 */ 191#define HAS_GETGROUPS /**/ 192 193/* HAS_GETLOGIN: 194 * This symbol, if defined, indicates that the getlogin routine is 195 * available to get the login name. 196 */ 197#define HAS_GETLOGIN /**/ 198 199/* HAS_GETPGID: 200 * This symbol, if defined, indicates to the C program that 201 * the getpgid(pid) function is available to get the 202 * process group id. 203 */ 204/*#define HAS_GETPGID / **/ 205 206/* HAS_GETPGRP2: 207 * This symbol, if defined, indicates that the getpgrp2() (as in DG/UX) 208 * routine is available to get the current process group. 209 */ 210/*#define HAS_GETPGRP2 / **/ 211 212/* HAS_GETPPID: 213 * This symbol, if defined, indicates that the getppid routine is 214 * available to get the parent process ID. 215 */ 216#define HAS_GETPPID /**/ 217 218/* HAS_GETPRIORITY: 219 * This symbol, if defined, indicates that the getpriority routine is 220 * available to get a process's priority. 221 */ 222/*#define HAS_GETPRIORITY / **/ 223 224/* HAS_INET_ATON: 225 * This symbol, if defined, indicates to the C program that the 226 * inet_aton() function is available to parse IP address "dotted-quad" 227 * strings. 228 */ 229/*#define HAS_INET_ATON / **/ 230 231/* HAS_KILLPG: 232 * This symbol, if defined, indicates that the killpg routine is available 233 * to kill process groups. If unavailable, you probably should use kill 234 * with a negative process number. 235 */ 236/*#define HAS_KILLPG / **/ 237 238/* HAS_LINK: 239 * This symbol, if defined, indicates that the link routine is 240 * available to create hard links. 241 */ 242/* #define HAS_LINK /**/ 243 244/* HAS_LOCALECONV: 245 * This symbol, if defined, indicates that the localeconv routine is 246 * available for numeric and monetary formatting conventions. 247 */ 248#define HAS_LOCALECONV /**/ 249 250/* HAS_LOCKF: 251 * This symbol, if defined, indicates that the lockf routine is 252 * available to do file locking. 253 */ 254/*#define HAS_LOCKF / **/ 255 256/* HAS_LSTAT: 257 * This symbol, if defined, indicates that the lstat routine is 258 * available to do file stats on symbolic links. 259 */ 260/*#define HAS_LSTAT / **/ 261 262/* HAS_MBLEN: 263 * This symbol, if defined, indicates that the mblen routine is available 264 * to find the number of bytes in a multibye character. 265 */ 266#define HAS_MBLEN /**/ 267 268/* HAS_MBSTOWCS: 269 * This symbol, if defined, indicates that the mbstowcs routine is 270 * available to covert a multibyte string into a wide character string. 271 */ 272#define HAS_MBSTOWCS /**/ 273 274/* HAS_MBTOWC: 275 * This symbol, if defined, indicates that the mbtowc routine is available 276 * to covert a multibyte to a wide character. 277 */ 278#define HAS_MBTOWC /**/ 279 280/* HAS_MEMCMP: 281 * This symbol, if defined, indicates that the memcmp routine is available 282 * to compare blocks of memory. 283 */ 284#define HAS_MEMCMP /**/ 285 286/* HAS_MEMCPY: 287 * This symbol, if defined, indicates that the memcpy routine is available 288 * to copy blocks of memory. 289 */ 290#define HAS_MEMCPY /**/ 291 292/* HAS_MEMMOVE: 293 * This symbol, if defined, indicates that the memmove routine is available 294 * to copy potentially overlapping blocks of memory. This should be used 295 * only when HAS_SAFE_BCOPY is not defined. If neither is there, roll your 296 * own version. 297 */ 298#define HAS_MEMMOVE /**/ 299 300/* HAS_MEMSET: 301 * This symbol, if defined, indicates that the memset routine is available 302 * to set blocks of memory. 303 */ 304#define HAS_MEMSET /**/ 305 306/* HAS_MKDIR: 307 * This symbol, if defined, indicates that the mkdir routine is available 308 * to create directories. Otherwise you should fork off a new process to 309 * exec /bin/mkdir. 310 */ 311#define HAS_MKDIR /**/ 312 313/* HAS_MKFIFO: 314 * This symbol, if defined, indicates that the mkfifo routine is 315 * available to create FIFOs. Otherwise, mknod should be able to 316 * do it for you. However, if mkfifo is there, mknod might require 317 * super-user privileges which mkfifo will not. 318 */ 319#define HAS_MKFIFO /**/ 320 321/* HAS_MKTIME: 322 * This symbol, if defined, indicates that the mktime routine is 323 * available. 324 */ 325#define HAS_MKTIME /**/ 326 327/* HAS_MSYNC: 328 * This symbol, if defined, indicates that the msync system call is 329 * available to synchronize a mapped file. 330 */ 331/*#define HAS_MSYNC / **/ 332 333/* HAS_MUNMAP: 334 * This symbol, if defined, indicates that the munmap system call is 335 * available to unmap a region, usually mapped by mmap(). 336 */ 337/*#define HAS_MUNMAP / **/ 338 339/* HAS_NICE: 340 * This symbol, if defined, indicates that the nice routine is 341 * available. 342 */ 343/*#define HAS_NICE / **/ 344 345/* HAS_PATHCONF: 346 * This symbol, if defined, indicates that pathconf() is available 347 * to determine file-system related limits and options associated 348 * with a given filename. 349 */ 350/* HAS_FPATHCONF: 351 * This symbol, if defined, indicates that pathconf() is available 352 * to determine file-system related limits and options associated 353 * with a given open file descriptor. 354 */ 355#define HAS_PATHCONF /**/ 356#define HAS_FPATHCONF /**/ 357 358/* HAS_PAUSE: 359 * This symbol, if defined, indicates that the pause routine is 360 * available to suspend a process until a signal is received. 361 */ 362#define HAS_PAUSE /**/ 363 364/* HAS_PIPE: 365 * This symbol, if defined, indicates that the pipe routine is 366 * available to create an inter-process channel. 367 */ 368#define HAS_PIPE /**/ 369 370/* HAS_POLL: 371 * This symbol, if defined, indicates that the poll routine is 372 * available to poll active file descriptors. You may safely 373 * include <poll.h> when this symbol is defined. 374 */ 375/*#define HAS_POLL / **/ 376 377/* HAS_READDIR: 378 * This symbol, if defined, indicates that the readdir routine is 379 * available to read directory entries. You may have to include 380 * <dirent.h>. See I_DIRENT. 381 */ 382#define HAS_READDIR /**/ 383 384/* HAS_SEEKDIR: 385 * This symbol, if defined, indicates that the seekdir routine is 386 * available. You may have to include <dirent.h>. See I_DIRENT. 387 */ 388/*#define HAS_SEEKDIR / **/ 389 390/* HAS_TELLDIR: 391 * This symbol, if defined, indicates that the telldir routine is 392 * available. You may have to include <dirent.h>. See I_DIRENT. 393 */ 394/*#define HAS_TELLDIR / **/ 395 396/* HAS_REWINDDIR: 397 * This symbol, if defined, indicates that the rewinddir routine is 398 * available. You may have to include <dirent.h>. See I_DIRENT. 399 */ 400#define HAS_REWINDDIR /**/ 401 402/* HAS_READLINK: 403 * This symbol, if defined, indicates that the readlink routine is 404 * available to read the value of a symbolic link. 405 */ 406/*#define HAS_READLINK /* */ 407 408/* HAS_RENAME: 409 * This symbol, if defined, indicates that the rename routine is available 410 * to rename files. Otherwise you should do the unlink(), link(), unlink() 411 * trick. 412 */ 413#define HAS_RENAME /**/ 414 415/* HAS_RMDIR: 416 * This symbol, if defined, indicates that the rmdir routine is 417 * available to remove directories. Otherwise you should fork off a 418 * new process to exec /bin/rmdir. 419 */ 420#define HAS_RMDIR /**/ 421 422/* HAS_SELECT: 423 * This symbol, if defined, indicates that the select routine is 424 * available to select active file descriptors. If the timeout field 425 * is used, <sys/time.h> may need to be included. 426 */ 427#define HAS_SELECT /**/ 428 429/* HAS_SETEGID: 430 * This symbol, if defined, indicates that the setegid routine is available 431 * to change the effective gid of the current program. 432 */ 433/*#define HAS_SETEGID / **/ 434 435/* HAS_SETEUID: 436 * This symbol, if defined, indicates that the seteuid routine is available 437 * to change the effective uid of the current program. 438 */ 439/*#define HAS_SETEUID / **/ 440 441/* HAS_SETLINEBUF: 442 * This symbol, if defined, indicates that the setlinebuf routine is 443 * available to change stderr or stdout from block-buffered or unbuffered 444 * to a line-buffered mode. 445 */ 446#define HAS_SETLINEBUF /**/ 447 448/* HAS_SETLOCALE: 449 * This symbol, if defined, indicates that the setlocale routine is 450 * available to handle locale-specific ctype implementations. 451 */ 452#define HAS_SETLOCALE /**/ 453 454/* HAS_SETPGID: 455 * This symbol, if defined, indicates that the setpgid(pid, gpid) 456 * routine is available to set process group ID. 457 */ 458#define HAS_SETPGID /**/ 459 460/* HAS_SETPGRP2: 461 * This symbol, if defined, indicates that the setpgrp2() (as in DG/UX) 462 * routine is available to set the current process group. 463 */ 464/*#define HAS_SETPGRP2 / **/ 465 466/* HAS_SETPRIORITY: 467 * This symbol, if defined, indicates that the setpriority routine is 468 * available to set a process's priority. 469 */ 470/*#define HAS_SETPRIORITY / **/ 471 472/* HAS_SETREGID: 473 * This symbol, if defined, indicates that the setregid routine is 474 * available to change the real and effective gid of the current 475 * process. 476 */ 477/* HAS_SETRESGID: 478 * This symbol, if defined, indicates that the setresgid routine is 479 * available to change the real, effective and saved gid of the current 480 * process. 481 */ 482/*#define HAS_SETREGID / **/ 483/*#define HAS_SETRESGID / **/ 484 485/* HAS_SETREUID: 486 * This symbol, if defined, indicates that the setreuid routine is 487 * available to change the real and effective uid of the current 488 * process. 489 */ 490/* HAS_SETRESUID: 491 * This symbol, if defined, indicates that the setresuid routine is 492 * available to change the real, effective and saved uid of the current 493 * process. 494 */ 495/*#define HAS_SETREUID / **/ 496/*#define HAS_SETRESUID / **/ 497 498/* HAS_SETRGID: 499 * This symbol, if defined, indicates that the setrgid routine is available 500 * to change the real gid of the current program. 501 */ 502/*#define HAS_SETRGID / **/ 503 504/* HAS_SETRUID: 505 * This symbol, if defined, indicates that the setruid routine is available 506 * to change the real uid of the current program. 507 */ 508/*#define HAS_SETRUID / **/ 509 510/* HAS_SETSID: 511 * This symbol, if defined, indicates that the setsid routine is 512 * available to set the process group ID. 513 */ 514#define HAS_SETSID /**/ 515 516/* HAS_STRCHR: 517 * This symbol is defined to indicate that the strchr()/strrchr() 518 * functions are available for string searching. If not, try the 519 * index()/rindex() pair. 520 */ 521/* HAS_INDEX: 522 * This symbol is defined to indicate that the index()/rindex() 523 * functions are available for string searching. 524 */ 525#define HAS_STRCHR /**/ 526/*#define HAS_INDEX / **/ 527 528/* HAS_STRCOLL: 529 * This symbol, if defined, indicates that the strcoll routine is 530 * available to compare strings using collating information. 531 */ 532#define HAS_STRCOLL /**/ 533 534/* USE_STRUCT_COPY: 535 * This symbol, if defined, indicates that this C compiler knows how 536 * to copy structures. If undefined, you'll need to use a block copy 537 * routine of some sort instead. 538 */ 539#define USE_STRUCT_COPY /**/ 540 541/* HAS_STRTOD: 542 * This symbol, if defined, indicates that the strtod routine is 543 * available to provide better numeric string conversion than atof(). 544 */ 545#define HAS_STRTOD /**/ 546 547/* HAS_STRTOL: 548 * This symbol, if defined, indicates that the strtol routine is available 549 * to provide better numeric string conversion than atoi() and friends. 550 */ 551#define HAS_STRTOL /**/ 552 553/* HAS_STRXFRM: 554 * This symbol, if defined, indicates that the strxfrm() routine is 555 * available to transform strings. 556 */ 557#define HAS_STRXFRM /**/ 558 559/* HAS_SYMLINK: 560 * This symbol, if defined, indicates that the symlink routine is available 561 * to create symbolic links. 562 */ 563/*#define HAS_SYMLINK / **/ 564 565/* HAS_SYSCALL: 566 * This symbol, if defined, indicates that the syscall routine is 567 * available to call arbitrary system calls. If undefined, that's tough. 568 */ 569/*#define HAS_SYSCALL / **/ 570 571/* HAS_SYSCONF: 572 * This symbol, if defined, indicates that sysconf() is available 573 * to determine system related limits and options. 574 */ 575#define HAS_SYSCONF /**/ 576 577/* HAS_SYSTEM: 578 * This symbol, if defined, indicates that the system routine is 579 * available to issue a shell command. 580 */ 581#define HAS_SYSTEM /**/ 582 583/* HAS_TCGETPGRP: 584 * This symbol, if defined, indicates that the tcgetpgrp routine is 585 * available to get foreground process group ID. 586 */ 587#define HAS_TCGETPGRP /**/ 588 589/* HAS_TCSETPGRP: 590 * This symbol, if defined, indicates that the tcsetpgrp routine is 591 * available to set foreground process group ID. 592 */ 593#define HAS_TCSETPGRP /**/ 594 595/* HAS_TRUNCATE: 596 * This symbol, if defined, indicates that the truncate routine is 597 * available to truncate files. 598 */ 599/*#define HAS_TRUNCATE / **/ 600 601/* HAS_TZNAME: 602 * This symbol, if defined, indicates that the tzname[] array is 603 * available to access timezone names. 604 */ 605#define HAS_TZNAME /**/ 606 607/* HAS_UMASK: 608 * This symbol, if defined, indicates that the umask routine is 609 * available to set and get the value of the file creation mask. 610 */ 611#define HAS_UMASK /**/ 612 613/* HAS_USLEEP: 614 * This symbol, if defined, indicates that the usleep routine is 615 * available to let the process sleep on a sub-second accuracy. 616 */ 617/*#define HAS_USLEEP / **/ 618 619/* HASVOLATILE: 620 * This symbol, if defined, indicates that this C compiler knows about 621 * the volatile declaration. 622 */ 623#define HASVOLATILE /**/ 624#ifndef HASVOLATILE 625#define volatile 626#endif 627 628/* HAS_WAIT4: 629 * This symbol, if defined, indicates that wait4() exists. 630 */ 631/*#define HAS_WAIT4 / **/ 632 633/* HAS_WAITPID: 634 * This symbol, if defined, indicates that the waitpid routine is 635 * available to wait for child process. 636 */ 637#define HAS_WAITPID /**/ 638 639/* HAS_WCSTOMBS: 640 * This symbol, if defined, indicates that the wcstombs routine is 641 * available to convert wide character strings to multibyte strings. 642 */ 643#define HAS_WCSTOMBS /**/ 644 645/* HAS_WCTOMB: 646 * This symbol, if defined, indicates that the wctomb routine is available 647 * to covert a wide character to a multibyte. 648 */ 649#define HAS_WCTOMB /**/ 650 651/* I_ARPA_INET: 652 * This symbol, if defined, indicates to the C program that it should 653 * include <arpa/inet.h> to get inet_addr and friends declarations. 654 */ 655#define I_ARPA_INET /**/ 656 657/* I_DBM: 658 * This symbol, if defined, indicates that <dbm.h> exists and should 659 * be included. 660 */ 661/* I_RPCSVC_DBM: 662 * This symbol, if defined, indicates that <rpcsvc/dbm.h> exists and 663 * should be included. 664 */ 665/*#define I_DBM / **/ 666/*#define I_RPCSVC_DBM / **/ 667 668/* I_DIRENT: 669 * This symbol, if defined, indicates to the C program that it should 670 * include <dirent.h>. Using this symbol also triggers the definition 671 * of the Direntry_t define which ends up being 'struct dirent' or 672 * 'struct direct' depending on the availability of <dirent.h>. 673 */ 674/* DIRNAMLEN: 675 * This symbol, if defined, indicates to the C program that the length 676 * of directory entry names is provided by a d_namlen field. Otherwise 677 * you need to do strlen() on the d_name field. 678 */ 679/* Direntry_t: 680 * This symbol is set to 'struct direct' or 'struct dirent' depending on 681 * whether dirent is available or not. You should use this pseudo type to 682 * portably declare your directory entries. 683 */ 684#define I_DIRENT /**/ 685/*#define DIRNAMLEN / **/ 686#define Direntry_t struct dirent 687 688/* I_DLFCN: 689 * This symbol, if defined, indicates that <dlfcn.h> exists and should 690 * be included. 691 */ 692/*#define I_DLFCN / **/ 693 694/* I_FCNTL: 695 * This manifest constant tells the C program to include <fcntl.h>. 696 */ 697#define I_FCNTL /**/ 698 699/* I_FLOAT: 700 * This symbol, if defined, indicates to the C program that it should 701 * include <float.h> to get definition of symbols like DBL_MAX or 702 * DBL_MIN, i.e. machine dependent floating point values. 703 */ 704#define I_FLOAT /**/ 705 706/* I_LIMITS: 707 * This symbol, if defined, indicates to the C program that it should 708 * include <limits.h> to get definition of symbols like WORD_BIT or 709 * LONG_MAX, i.e. machine dependant limitations. 710 */ 711#define I_LIMITS /**/ 712 713/* I_LOCALE: 714 * This symbol, if defined, indicates to the C program that it should 715 * include <locale.h>. 716 */ 717#define I_LOCALE /**/ 718 719/* I_MATH: 720 * This symbol, if defined, indicates to the C program that it should 721 * include <math.h>. 722 */ 723#define I_MATH /**/ 724 725/* I_MEMORY: 726 * This symbol, if defined, indicates to the C program that it should 727 * include <memory.h>. 728 */ 729/*#define I_MEMORY / **/ 730 731/* I_NET_ERRNO: 732 * This symbol, if defined, indicates that <net/errno.h> exists and 733 * should be included. 734 */ 735/*#define I_NET_ERRNO / **/ 736 737/* I_NETINET_IN: 738 * This symbol, if defined, indicates to the C program that it should 739 * include <netinet/in.h>. Otherwise, you may try <sys/in.h>. 740 */ 741#define I_NETINET_IN /**/ 742 743/* I_SFIO: 744 * This symbol, if defined, indicates to the C program that it should 745 * include <sfio.h>. 746 */ 747/*#define I_SFIO / **/ 748 749/* I_STDDEF: 750 * This symbol, if defined, indicates that <stddef.h> exists and should 751 * be included. 752 */ 753#define I_STDDEF /**/ 754 755/* I_STDLIB: 756 * This symbol, if defined, indicates that <stdlib.h> exists and should 757 * be included. 758 */ 759#define I_STDLIB /**/ 760 761/* I_STRING: 762 * This symbol, if defined, indicates to the C program that it should 763 * include <string.h> (USG systems) instead of <strings.h> (BSD systems). 764 */ 765#define I_STRING /**/ 766 767/* I_SYS_DIR: 768 * This symbol, if defined, indicates to the C program that it should 769 * include <sys/dir.h>. 770 */ 771/*#define I_SYS_DIR / **/ 772 773/* I_SYS_FILE: 774 * This symbol, if defined, indicates to the C program that it should 775 * include <sys/file.h> to get definition of R_OK and friends. 776 */ 777/*#define I_SYS_FILE / **/ 778 779/* I_SYS_IOCTL: 780 * This symbol, if defined, indicates that <sys/ioctl.h> exists and should 781 * be included. Otherwise, include <sgtty.h> or <termio.h>. 782 */ 783/* I_SYS_SOCKIO: 784 * This symbol, if defined, indicates the <sys/sockio.h> should be included 785 * to get socket ioctl options, like SIOCATMARK. 786 */ 787#define I_SYS_IOCTL /**/ 788/*#define I_SYS_SOCKIO / **/ 789 790/* I_SYS_NDIR: 791 * This symbol, if defined, indicates to the C program that it should 792 * include <sys/ndir.h>. 793 */ 794/*#define I_SYS_NDIR / **/ 795 796/* I_SYS_PARAM: 797 * This symbol, if defined, indicates to the C program that it should 798 * include <sys/param.h>. 799 */ 800#define I_SYS_PARAM /**/ 801 802/* I_SYS_RESOURCE: 803 * This symbol, if defined, indicates to the C program that it should 804 * include <sys/resource.h>. 805 */ 806#define I_SYS_RESOURCE /**/ 807 808/* I_SYS_SELECT: 809 * This symbol, if defined, indicates to the C program that it should 810 * include <sys/select.h> in order to get definition of struct timeval. 811 */ 812#define I_SYS_SELECT /**/ 813 814/* I_SYS_STAT: 815 * This symbol, if defined, indicates to the C program that it should 816 * include <sys/stat.h>. 817 */ 818#define I_SYS_STAT /**/ 819 820/* I_SYS_TIMES: 821 * This symbol, if defined, indicates to the C program that it should 822 * include <sys/times.h>. 823 */ 824#define I_SYS_TIMES /**/ 825 826/* I_SYS_TYPES: 827 * This symbol, if defined, indicates to the C program that it should 828 * include <sys/types.h>. 829 */ 830#define I_SYS_TYPES /**/ 831 832/* I_SYS_UN: 833 * This symbol, if defined, indicates to the C program that it should 834 * include <sys/un.h> to get UNIX domain socket definitions. 835 */ 836#define I_SYS_UN /**/ 837 838/* I_SYS_WAIT: 839 * This symbol, if defined, indicates to the C program that it should 840 * include <sys/wait.h>. 841 */ 842#define I_SYS_WAIT /**/ 843 844/* I_TERMIO: 845 * This symbol, if defined, indicates that the program should include 846 * <termio.h> rather than <sgtty.h>. There are also differences in 847 * the ioctl() calls that depend on the value of this symbol. 848 */ 849/* I_TERMIOS: 850 * This symbol, if defined, indicates that the program should include 851 * the POSIX termios.h rather than sgtty.h or termio.h. 852 * There are also differences in the ioctl() calls that depend on the 853 * value of this symbol. 854 */ 855/* I_SGTTY: 856 * This symbol, if defined, indicates that the program should include 857 * <sgtty.h> rather than <termio.h>. There are also differences in 858 * the ioctl() calls that depend on the value of this symbol. 859 */ 860/*#define I_TERMIO / **/ 861#define I_TERMIOS /**/ 862/*#define I_SGTTY / **/ 863 864/* I_UNISTD: 865 * This symbol, if defined, indicates to the C program that it should 866 * include <unistd.h>. 867 */ 868#define I_UNISTD /**/ 869 870/* I_UTIME: 871 * This symbol, if defined, indicates to the C program that it should 872 * include <utime.h>. 873 */ 874#define I_UTIME /**/ 875 876/* I_VALUES: 877 * This symbol, if defined, indicates to the C program that it should 878 * include <values.h> to get definition of symbols like MINFLOAT or 879 * MAXLONG, i.e. machine dependant limitations. Probably, you 880 * should use <limits.h> instead, if it is available. 881 */ 882/*#define I_VALUES / **/ 883 884/* I_VFORK: 885 * This symbol, if defined, indicates to the C program that it should 886 * include vfork.h. 887 */ 888/*#define I_VFORK / **/ 889 890/* INTSIZE: 891 * This symbol contains the value of sizeof(int) so that the C 892 * preprocessor can make decisions based on it. 893 */ 894/* LONGSIZE: 895 * This symbol contains the value of sizeof(long) so that the C 896 * preprocessor can make decisions based on it. 897 */ 898/* SHORTSIZE: 899 * This symbol contains the value of sizeof(short) so that the C 900 * preprocessor can make decisions based on it. 901 */ 902#define INTSIZE 4 /**/ 903#define LONGSIZE 4 /**/ 904#define SHORTSIZE 2 /**/ 905 906/* MULTIARCH: 907 * This symbol, if defined, signifies that the build 908 * process will produce some binary files that are going to be 909 * used in a cross-platform environment. This is the case for 910 * example with the NeXT "fat" binaries that contain executables 911 * for several CPUs. 912 */ 913/*#define MULTIARCH / **/ 914 915/* HAS_QUAD: 916 * This symbol, if defined, tells that there's a 64-bit integer type, 917 * Quad_t, and its unsigned counterpar, Uquad_t. QUADKIND will be one 918 * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T. 919 */ 920#define HAS_QUAD /**/ 921#ifdef HAS_QUAD 922# define Quad_t long long /**/ 923# define Uquad_t unsigned long long /**/ 924# define QUADKIND 3 /**/ 925# define QUAD_IS_INT 1 926# define QUAD_IS_LONG 2 927# define QUAD_IS_LONG_LONG 3 928# define QUAD_IS_INT64_T 4 929#endif 930 931/* HAS_ACCESSX: 932 * This symbol, if defined, indicates that the accessx routine is 933 * available to do extended access checks. 934 */ 935/*#define HAS_ACCESSX / **/ 936 937/* HAS_EACCESS: 938 * This symbol, if defined, indicates that the eaccess routine is 939 * available to do extended access checks. 940 */ 941/*#define HAS_EACCESS / **/ 942 943/* I_SYS_ACCESS: 944 * This symbol, if defined, indicates to the C program that it should 945 * include <sys/access.h>. 946 */ 947/*#define I_SYS_ACCESS / **/ 948 949/* I_SYS_SECURITY: 950 * This symbol, if defined, indicates to the C program that it should 951 * include <sys/security.h>. 952 */ 953/*#define I_SYS_SECURITY / **/ 954 955/* OSNAME: 956 * This symbol contains the name of the operating system, as determined 957 * by Configure. You shouldn't rely on it too much; the specific 958 * feature tests from Configure are generally more reliable. 959 */ 960/* OSVERS: 961 * This symbol contains the version of the operating system, as determined 962 * by Configure. You shouldn't rely on it too much; the specific 963 * feature tests from Configure are generally more reliable. 964 */ 965#define OSNAME "plan9" /**/ 966#define OSVERS "1" /**/ 967 968/* MEM_ALIGNBYTES: 969 * This symbol contains the number of bytes required to align a 970 * double, or a long double when applicable. Usual values are 2, 971 * 4 and 8. The default is eight, for safety. 972 */ 973#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH) 974# define MEM_ALIGNBYTES 8 975#else 976#define MEM_ALIGNBYTES 4 977#endif 978 979/* ARCHLIB: 980 * This variable, if defined, holds the name of the directory in 981 * which the user wants to put architecture-dependent public 982 * library files for perl. It is most often a local directory 983 * such as /usr/local/lib. Programs using this variable must be 984 * prepared to deal with filename expansion. If ARCHLIB is the 985 * same as PRIVLIB, it is not defined, since presumably the 986 * program already searches PRIVLIB. 987 */ 988/* ARCHLIB_EXP: 989 * This symbol contains the ~name expanded version of ARCHLIB, to be used 990 * in programs that are not prepared to deal with ~ expansion at run-time. 991 */ 992#define ARCHLIB "/sys/lib/perl/5.8.0/386" /**/ 993#define ARCHLIB_EXP "/sys/lib/perl/5.8.0/386" /**/ 994 995/* ARCHNAME: 996 * This symbol holds a string representing the architecture name. 997 * It may be used to construct an architecture-dependant pathname 998 * where library files may be held under a private library, for 999 * instance. 1000 */ 1001#define ARCHNAME "386" /**/ 1002 1003/* HAS_ATOLF: 1004 * This symbol, if defined, indicates that the atolf routine is 1005 * available to convert strings into long doubles. 1006 */ 1007/*#define HAS_ATOLF / **/ 1008 1009/* HAS_ATOLL: 1010 * This symbol, if defined, indicates that the atoll routine is 1011 * available to convert strings into long longs. 1012 */ 1013#define HAS_ATOLL /**/ 1014 1015/* BIN: 1016 * This symbol holds the path of the bin directory where the package will 1017 * be installed. Program must be prepared to deal with ~name substitution. 1018 */ 1019/* BIN_EXP: 1020 * This symbol is the filename expanded version of the BIN symbol, for 1021 * programs that do not want to deal with that at run-time. 1022 */ 1023#define BIN "/usr/bin" /**/ 1024#define BIN_EXP "/usr/bin" /**/ 1025 1026/* BYTEORDER: 1027 * This symbol holds the hexadecimal constant defined in byteorder, 1028 * in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc... 1029 * If the compiler supports cross-compiling or multiple-architecture 1030 * binaries (eg. on NeXT systems), use compiler-defined macros to 1031 * determine the byte order. 1032 * On NeXT 3.2 (and greater), you can build "Fat" Multiple Architecture 1033 * Binaries (MAB) on either big endian or little endian machines. 1034 * The endian-ness is available at compile-time. This only matters 1035 * for perl, where the config.h can be generated and installed on 1036 * one system, and used by a different architecture to build an 1037 * extension. Older versions of NeXT that might not have 1038 * defined either *_ENDIAN__ were all on Motorola 680x0 series, 1039 * so the default case (for NeXT) is big endian to catch them. 1040 * This might matter for NeXT 3.0. 1041 */ 1042#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH) 1043# ifdef __LITTLE_ENDIAN__ 1044# if LONGSIZE == 4 1045# define BYTEORDER 0x1234 1046# else 1047# if LONGSIZE == 8 1048# define BYTEORDER 0x12345678 1049# endif 1050# endif 1051# else 1052# ifdef __BIG_ENDIAN__ 1053# if LONGSIZE == 4 1054# define BYTEORDER 0x4321 1055# else 1056# if LONGSIZE == 8 1057# define BYTEORDER 0x87654321 1058# endif 1059# endif 1060# endif 1061# endif 1062# if !defined(BYTEORDER) && (defined(NeXT) || defined(__NeXT__)) 1063# define BYTEORDER 0x4321 1064# endif 1065#else 1066#define BYTEORDER 0x1234 /* large digits for MSB */ 1067#endif /* NeXT */ 1068 1069/* CAT2: 1070 * This macro catenates 2 tokens together. 1071 */ 1072/* STRINGIFY: 1073 * This macro surrounds its token with double quotes. 1074 */ 1075#if 42 == 1 1076#define CAT2(a,b) a/**/b 1077#define STRINGIFY(a) "a" 1078 /* If you can get stringification with catify, tell me how! */ 1079#endif 1080#if 42 == 42 1081#define PeRl_CaTiFy(a, b) a ## b 1082#define PeRl_StGiFy(a) #a 1083/* the additional level of indirection enables these macros to be 1084 * used as arguments to other macros. See K&R 2nd ed., page 231. */ 1085#define CAT2(a,b) PeRl_CaTiFy(a,b) 1086#define StGiFy(a) PeRl_StGiFy(a) 1087#define STRINGIFY(a) PeRl_StGiFy(a) 1088#endif 1089#if 42 != 1 && 42 != 42 1090# include "Bletch: How does this C preprocessor concatenate tokens?" 1091#endif 1092 1093/* CPPSTDIN: 1094 * This symbol contains the first part of the string which will invoke 1095 * the C preprocessor on the standard input and produce to standard 1096 * output. Typical value of "cc -E" or "/lib/cpp", but it can also 1097 * call a wrapper. See CPPRUN. 1098 */ 1099/* CPPMINUS: 1100 * This symbol contains the second part of the string which will invoke 1101 * the C preprocessor on the standard input and produce to standard 1102 * output. This symbol will have the value "-" if CPPSTDIN needs a minus 1103 * to specify standard input, otherwise the value is "". 1104 */ 1105/* CPPRUN: 1106 * This symbol contains the string which will invoke a C preprocessor on 1107 * the standard input and produce to standard output. It needs to end 1108 * with CPPLAST, after all other preprocessor flags have been specified. 1109 * The main difference with CPPSTDIN is that this program will never be a 1110 * pointer to a shell wrapper, i.e. it will be empty if no preprocessor is 1111 * available directly to the user. Note that it may well be different from 1112 * the preprocessor used to compile the C program. 1113 */ 1114/* CPPLAST: 1115 * This symbol is intended to be used along with CPPRUN in the same manner 1116 * symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "". 1117 */ 1118#define CPPSTDIN "cppstdin" 1119#define CPPMINUS "" 1120#define CPPRUN "/bin/cpp" 1121#define CPPLAST "" 1122 1123/* HAS__FWALK: 1124 * This symbol, if defined, indicates that the _fwalk system call is 1125 * available to apply a function to all the file handles. 1126 */ 1127/*#define HAS__FWALK / **/ 1128 1129/* HAS_ACCESS: 1130 * This manifest constant lets the C program know that the access() 1131 * system call is available to check for accessibility using real UID/GID. 1132 * (always present on UNIX.) 1133 */ 1134#define HAS_ACCESS /**/ 1135 1136/* HAS_ASCTIME_R: 1137 * This symbol, if defined, indicates that the asctime_r routine 1138 * is available to asctime re-entrantly. 1139 */ 1140/* ASCTIME_R_PROTO: 1141 * This symbol encodes the prototype of asctime_r. 1142 * It is zero if d_asctime_r is undef, and one of the 1143 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_asctime_r 1144 * is defined. 1145 */ 1146/*#define HAS_ASCTIME_R / **/ 1147#define ASCTIME_R_PROTO 0 /**/ 1148 1149/* CASTI32: 1150 * This symbol is defined if the C compiler can cast negative 1151 * or large floating point numbers to 32-bit ints. 1152 */ 1153/*#define CASTI32 / **/ 1154 1155/* CASTNEGFLOAT: 1156 * This symbol is defined if the C compiler can cast negative 1157 * numbers to unsigned longs, ints and shorts. 1158 */ 1159/* CASTFLAGS: 1160 * This symbol contains flags that say what difficulties the compiler 1161 * has casting odd floating values to unsigned long: 1162 * 0 = ok 1163 * 1 = couldn't cast < 0 1164 * 2 = couldn't cast >= 0x80000000 1165 * 4 = couldn't cast in argument expression list 1166 */ 1167/*#define CASTNEGFLOAT / **/ 1168#define CASTFLAGS 7 /**/ 1169 1170/* HAS_CLASS: 1171 * This symbol, if defined, indicates that the class routine is 1172 * available to classify doubles. Available for example in AIX. 1173 * The returned values are defined in <float.h> and are: 1174 * 1175 * FP_PLUS_NORM Positive normalized, nonzero 1176 * FP_MINUS_NORM Negative normalized, nonzero 1177 * FP_PLUS_DENORM Positive denormalized, nonzero 1178 * FP_MINUS_DENORM Negative denormalized, nonzero 1179 * FP_PLUS_ZERO +0.0 1180 * FP_MINUS_ZERO -0.0 1181 * FP_PLUS_INF +INF 1182 * FP_MINUS_INF -INF 1183 * FP_NANS Signaling Not a Number (NaNS) 1184 * FP_NANQ Quiet Not a Number (NaNQ) 1185 */ 1186/*#define HAS_CLASS / **/ 1187 1188/* VOID_CLOSEDIR: 1189 * This symbol, if defined, indicates that the closedir() routine 1190 * does not return a value. 1191 */ 1192/*#define VOID_CLOSEDIR / **/ 1193 1194/* HAS_STRUCT_CMSGHDR: 1195 * This symbol, if defined, indicates that the struct cmsghdr 1196 * is supported. 1197 */ 1198/*#define HAS_STRUCT_CMSGHDR / **/ 1199 1200/* HAS_CRYPT_R: 1201 * This symbol, if defined, indicates that the crypt_r routine 1202 * is available to crypt re-entrantly. 1203 */ 1204/* CRYPT_R_PROTO: 1205 * This symbol encodes the prototype of crypt_r. 1206 * It is zero if d_crypt_r is undef, and one of the 1207 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_crypt_r 1208 * is defined. 1209 */ 1210/*#define HAS_CRYPT_R / **/ 1211#define CRYPT_R_PROTO 0 /**/ 1212 1213/* HAS_CSH: 1214 * This symbol, if defined, indicates that the C-shell exists. 1215 */ 1216/* CSH: 1217 * This symbol, if defined, contains the full pathname of csh. 1218 */ 1219/*#define HAS_CSH / **/ 1220#ifdef HAS_CSH 1221#define CSH "csh" /**/ 1222#endif 1223 1224/* HAS_CTIME_R: 1225 * This symbol, if defined, indicates that the ctime_r routine 1226 * is available to ctime re-entrantly. 1227 */ 1228/* CTIME_R_PROTO: 1229 * This symbol encodes the prototype of ctime_r. 1230 * It is zero if d_ctime_r is undef, and one of the 1231 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctime_r 1232 * is defined. 1233 */ 1234/*#define HAS_CTIME_R / **/ 1235#define CTIME_R_PROTO 0 /**/ 1236 1237/* DLSYM_NEEDS_UNDERSCORE: 1238 * This symbol, if defined, indicates that we need to prepend an 1239 * underscore to the symbol name before calling dlsym(). This only 1240 * makes sense if you *have* dlsym, which we will presume is the 1241 * case if you're using dl_dlopen.xs. 1242 */ 1243/*#define DLSYM_NEEDS_UNDERSCORE / **/ 1244 1245/* HAS_DRAND48_R: 1246 * This symbol, if defined, indicates that the drand48_r routine 1247 * is available to drand48 re-entrantly. 1248 */ 1249/* DRAND48_R_PROTO: 1250 * This symbol encodes the prototype of drand48_r. 1251 * It is zero if d_drand48_r is undef, and one of the 1252 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_drand48_r 1253 * is defined. 1254 */ 1255/*#define HAS_DRAND48_R / **/ 1256#define DRAND48_R_PROTO 0 /**/ 1257 1258/* HAS_DRAND48_PROTO: 1259 * This symbol, if defined, indicates that the system provides 1260 * a prototype for the drand48() function. Otherwise, it is up 1261 * to the program to supply one. A good guess is 1262 * extern double drand48(void); 1263 */ 1264/*#define HAS_DRAND48_PROTO / **/ 1265 1266/* HAS_ENDGRENT: 1267 * This symbol, if defined, indicates that the getgrent routine is 1268 * available for finalizing sequential access of the group database. 1269 */ 1270#define HAS_ENDGRENT /**/ 1271 1272/* HAS_ENDGRENT_R: 1273 * This symbol, if defined, indicates that the endgrent_r routine 1274 * is available to endgrent re-entrantly. 1275 */ 1276/* ENDGRENT_R_PROTO: 1277 * This symbol encodes the prototype of endgrent_r. 1278 * It is zero if d_endgrent_r is undef, and one of the 1279 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endgrent_r 1280 * is defined. 1281 */ 1282/*#define HAS_ENDGRENT_R / **/ 1283#define ENDGRENT_R_PROTO 0 /**/ 1284 1285/* HAS_ENDHOSTENT: 1286 * This symbol, if defined, indicates that the endhostent() routine is 1287 * available to close whatever was being used for host queries. 1288 */ 1289#define HAS_ENDHOSTENT /**/ 1290 1291/* HAS_ENDNETENT: 1292 * This symbol, if defined, indicates that the endnetent() routine is 1293 * available to close whatever was being used for network queries. 1294 */ 1295/*#define HAS_ENDNETENT / **/ 1296 1297/* HAS_ENDPROTOENT: 1298 * This symbol, if defined, indicates that the endprotoent() routine is 1299 * available to close whatever was being used for protocol queries. 1300 */ 1301/*#define HAS_ENDPROTOENT / **/ 1302 1303/* HAS_ENDPWENT: 1304 * This symbol, if defined, indicates that the getgrent routine is 1305 * available for finalizing sequential access of the passwd database. 1306 */ 1307#define HAS_ENDPWENT /**/ 1308 1309/* HAS_ENDPWENT_R: 1310 * This symbol, if defined, indicates that the endpwent_r routine 1311 * is available to endpwent re-entrantly. 1312 */ 1313/* ENDPWENT_R_PROTO: 1314 * This symbol encodes the prototype of endpwent_r. 1315 * It is zero if d_endpwent_r is undef, and one of the 1316 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endpwent_r 1317 * is defined. 1318 */ 1319/*#define HAS_ENDPWENT_R / **/ 1320#define ENDPWENT_R_PROTO 0 /**/ 1321 1322/* HAS_ENDSERVENT: 1323 * This symbol, if defined, indicates that the endservent() routine is 1324 * available to close whatever was being used for service queries. 1325 */ 1326/*#define HAS_ENDSERVENT / **/ 1327 1328/* HAS_FAST_STDIO: 1329 * This symbol, if defined, indicates that the "fast stdio" 1330 * is available to manipulate the stdio buffers directly. 1331 */ 1332/*#define HAS_FAST_STDIO /**/ 1333 1334/* HAS_FCHDIR: 1335 * This symbol, if defined, indicates that the fchdir routine is 1336 * available to change directory using a file descriptor. 1337 */ 1338/*#define HAS_FCHDIR / **/ 1339 1340/* FCNTL_CAN_LOCK: 1341 * This symbol, if defined, indicates that fcntl() can be used 1342 * for file locking. Normally on Unix systems this is defined. 1343 * It may be undefined on VMS. 1344 */ 1345/*#define FCNTL_CAN_LOCK / **/ 1346 1347/* HAS_FD_SET: 1348 * This symbol, when defined, indicates presence of the fd_set typedef 1349 * in <sys/types.h> 1350 */ 1351/*#define HAS_FD_SET / **/ 1352 1353/* HAS_FINITE: 1354 * This symbol, if defined, indicates that the finite routine is 1355 * available to check whether a double is finite (non-infinity non-NaN). 1356 */ 1357/*#define HAS_FINITE / **/ 1358 1359/* HAS_FINITEL: 1360 * This symbol, if defined, indicates that the finitel routine is 1361 * available to check whether a long double is finite 1362 * (non-infinity non-NaN). 1363 */ 1364/*#define HAS_FINITEL / **/ 1365 1366/* FLEXFILENAMES: 1367 * This symbol, if defined, indicates that the system supports filenames 1368 * longer than 14 characters. 1369 */ 1370#define FLEXFILENAMES /**/ 1371 1372/* HAS_FP_CLASS: 1373 * This symbol, if defined, indicates that the fp_class routine is 1374 * available to classify doubles. Available for example in Digital UNIX. 1375 * The returned values are defined in <math.h> and are: 1376 * 1377 * FP_SNAN Signaling NaN (Not-a-Number) 1378 * FP_QNAN Quiet NaN (Not-a-Number) 1379 * FP_POS_INF +infinity 1380 * FP_NEG_INF -infinity 1381 * FP_POS_NORM Positive normalized 1382 * FP_NEG_NORM Negative normalized 1383 * FP_POS_DENORM Positive denormalized 1384 * FP_NEG_DENORM Negative denormalized 1385 * FP_POS_ZERO +0.0 (positive zero) 1386 * FP_NEG_ZERO -0.0 (negative zero) 1387 */ 1388/*#define HAS_FP_CLASS / **/ 1389 1390/* HAS_FPCLASS: 1391 * This symbol, if defined, indicates that the fpclass routine is 1392 * available to classify doubles. Available for example in Solaris/SVR4. 1393 * The returned values are defined in <ieeefp.h> and are: 1394 * 1395 * FP_SNAN signaling NaN 1396 * FP_QNAN quiet NaN 1397 * FP_NINF negative infinity 1398 * FP_PINF positive infinity 1399 * FP_NDENORM negative denormalized non-zero 1400 * FP_PDENORM positive denormalized non-zero 1401 * FP_NZERO negative zero 1402 * FP_PZERO positive zero 1403 * FP_NNORM negative normalized non-zero 1404 * FP_PNORM positive normalized non-zero 1405 */ 1406/*#define HAS_FPCLASS / **/ 1407 1408/* HAS_FPCLASSIFY: 1409 * This symbol, if defined, indicates that the fpclassify routine is 1410 * available to classify doubles. Available for example in HP-UX. 1411 * The returned values are defined in <math.h> and are 1412 * 1413 * FP_NORMAL Normalized 1414 * FP_ZERO Zero 1415 * FP_INFINITE Infinity 1416 * FP_SUBNORMAL Denormalized 1417 * FP_NAN NaN 1418 * 1419 */ 1420/*#define HAS_FPCLASSIFY / **/ 1421 1422/* HAS_FPOS64_T: 1423 * This symbol will be defined if the C compiler supports fpos64_t. 1424 */ 1425/*#define HAS_FPOS64_T / **/ 1426 1427/* HAS_FREXPL: 1428 * This symbol, if defined, indicates that the frexpl routine is 1429 * available to break a long double floating-point number into 1430 * a normalized fraction and an integral power of 2. 1431 */ 1432/*#define HAS_FREXPL / **/ 1433 1434/* HAS_STRUCT_FS_DATA: 1435 * This symbol, if defined, indicates that the struct fs_data 1436 * to do statfs() is supported. 1437 */ 1438/*#define HAS_STRUCT_FS_DATA / **/ 1439 1440/* HAS_FSEEKO: 1441 * This symbol, if defined, indicates that the fseeko routine is 1442 * available to fseek beyond 32 bits (useful for ILP32 hosts). 1443 */ 1444/*#define HAS_FSEEKO / **/ 1445 1446/* HAS_FSTATFS: 1447 * This symbol, if defined, indicates that the fstatfs routine is 1448 * available to stat filesystems by file descriptors. 1449 */ 1450/*#define HAS_FSTATFS / **/ 1451 1452/* HAS_FSYNC: 1453 * This symbol, if defined, indicates that the fsync routine is 1454 * available to write a file's modified data and attributes to 1455 * permanent storage. 1456 */ 1457#define HAS_FSYNC /**/ 1458 1459/* HAS_FTELLO: 1460 * This symbol, if defined, indicates that the ftello routine is 1461 * available to ftell beyond 32 bits (useful for ILP32 hosts). 1462 */ 1463/*#define HAS_FTELLO / **/ 1464 1465/* Gconvert: 1466 * This preprocessor macro is defined to convert a floating point 1467 * number to a string without a trailing decimal point. This 1468 * emulates the behavior of sprintf("%g"), but is sometimes much more 1469 * efficient. If gconvert() is not available, but gcvt() drops the 1470 * trailing decimal point, then gcvt() is used. If all else fails, 1471 * a macro using sprintf("%g") is used. Arguments for the Gconvert 1472 * macro are: value, number of digits, whether trailing zeros should 1473 * be retained, and the output buffer. 1474 * The usual values are: 1475 * d_Gconvert='gconvert((x),(n),(t),(b))' 1476 * d_Gconvert='gcvt((x),(n),(b))' 1477 * d_Gconvert='sprintf((b),"%.*g",(n),(x))' 1478 * The last two assume trailing zeros should not be kept. 1479 */ 1480#define Gconvert(x,n,t,b) sprintf((b),"%.*g",(n),(x)) 1481 1482/* HAS_GETCWD: 1483 * This symbol, if defined, indicates that the getcwd routine is 1484 * available to get the current working directory. 1485 */ 1486#define HAS_GETCWD /**/ 1487 1488/* HAS_GETESPWNAM: 1489 * This symbol, if defined, indicates that the getespwnam system call is 1490 * available to retrieve enchanced (shadow) password entries by name. 1491 */ 1492/*#define HAS_GETESPWNAM / **/ 1493 1494/* HAS_GETFSSTAT: 1495 * This symbol, if defined, indicates that the getfsstat routine is 1496 * available to stat filesystems in bulk. 1497 */ 1498/*#define HAS_GETFSSTAT / **/ 1499 1500/* HAS_GETGRENT: 1501 * This symbol, if defined, indicates that the getgrent routine is 1502 * available for sequential access of the group database. 1503 */ 1504#define HAS_GETGRENT /**/ 1505 1506/* HAS_GETGRENT_R: 1507 * This symbol, if defined, indicates that the getgrent_r routine 1508 * is available to getgrent re-entrantly. 1509 */ 1510/* GETGRENT_R_PROTO: 1511 * This symbol encodes the prototype of getgrent_r. 1512 * It is zero if d_getgrent_r is undef, and one of the 1513 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrent_r 1514 * is defined. 1515 */ 1516/*#define HAS_GETGRENT_R / **/ 1517#define GETGRENT_R_PROTO 0 /**/ 1518 1519/* HAS_GETGRGID_R: 1520 * This symbol, if defined, indicates that the getgrgid_r routine 1521 * is available to getgrgid re-entrantly. 1522 */ 1523/* GETGRGID_R_PROTO: 1524 * This symbol encodes the prototype of getgrgid_r. 1525 * It is zero if d_getgrgid_r is undef, and one of the 1526 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrgid_r 1527 * is defined. 1528 */ 1529/*#define HAS_GETGRGID_R / **/ 1530#define GETGRGID_R_PROTO 0 /**/ 1531 1532/* HAS_GETGRNAM_R: 1533 * This symbol, if defined, indicates that the getgrnam_r routine 1534 * is available to getgrnam re-entrantly. 1535 */ 1536/* GETGRNAM_R_PROTO: 1537 * This symbol encodes the prototype of getgrnam_r. 1538 * It is zero if d_getgrnam_r is undef, and one of the 1539 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getgrnam_r 1540 * is defined. 1541 */ 1542/*#define HAS_GETGRNAM_R / **/ 1543#define GETGRNAM_R_PROTO 0 /**/ 1544 1545/* HAS_GETHOSTBYADDR: 1546 * This symbol, if defined, indicates that the gethostbyaddr() routine is 1547 * available to look up hosts by their IP addresses. 1548 */ 1549#define HAS_GETHOSTBYADDR /**/ 1550 1551/* HAS_GETHOSTBYNAME: 1552 * This symbol, if defined, indicates that the gethostbyname() routine is 1553 * available to look up host names in some data base or other. 1554 */ 1555#define HAS_GETHOSTBYNAME /**/ 1556 1557/* HAS_GETHOSTENT: 1558 * This symbol, if defined, indicates that the gethostent() routine is 1559 * available to look up host names in some data base or another. 1560 */ 1561/*#define HAS_GETHOSTENT / **/ 1562 1563/* HAS_GETHOSTNAME: 1564 * This symbol, if defined, indicates that the C program may use the 1565 * gethostname() routine to derive the host name. See also HAS_UNAME 1566 * and PHOSTNAME. 1567 */ 1568/* HAS_UNAME: 1569 * This symbol, if defined, indicates that the C program may use the 1570 * uname() routine to derive the host name. See also HAS_GETHOSTNAME 1571 * and PHOSTNAME. 1572 */ 1573/* PHOSTNAME: 1574 * This symbol, if defined, indicates the command to feed to the 1575 * popen() routine to derive the host name. See also HAS_GETHOSTNAME 1576 * and HAS_UNAME. Note that the command uses a fully qualified path, 1577 * so that it is safe even if used by a process with super-user 1578 * privileges. 1579 */ 1580/* HAS_PHOSTNAME: 1581 * This symbol, if defined, indicates that the C program may use the 1582 * contents of PHOSTNAME as a command to feed to the popen() routine 1583 * to derive the host name. 1584 */ 1585#define HAS_GETHOSTNAME /**/ 1586#define HAS_UNAME /**/ 1587/*#define HAS_PHOSTNAME / **/ 1588#ifdef HAS_PHOSTNAME 1589#define PHOSTNAME "/bin/uname -n" /* How to get the host name */ 1590#endif 1591 1592/* HAS_GETHOST_PROTOS: 1593 * This symbol, if defined, indicates that <netdb.h> includes 1594 * prototypes for gethostent(), gethostbyname(), and 1595 * gethostbyaddr(). Otherwise, it is up to the program to guess 1596 * them. See netdbtype.U for probing for various Netdb_xxx_t types. 1597 */ 1598/*#define HAS_GETHOST_PROTOS / **/ 1599 1600/* HAS_GETITIMER: 1601 * This symbol, if defined, indicates that the getitimer routine is 1602 * available to return interval timers. 1603 */ 1604/*#define HAS_GETITIMER / **/ 1605 1606/* HAS_GETLOGIN_R: 1607 * This symbol, if defined, indicates that the getlogin_r routine 1608 * is available to getlogin re-entrantly. 1609 */ 1610/* GETLOGIN_R_PROTO: 1611 * This symbol encodes the prototype of getlogin_r. 1612 * It is zero if d_getlogin_r is undef, and one of the 1613 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getlogin_r 1614 * is defined. 1615 */ 1616/*#define HAS_GETLOGIN_R / **/ 1617#define GETLOGIN_R_PROTO 0 /**/ 1618 1619/* HAS_GETMNT: 1620 * This symbol, if defined, indicates that the getmnt routine is 1621 * available to get filesystem mount info by filename. 1622 */ 1623/*#define HAS_GETMNT / **/ 1624 1625/* HAS_GETMNTENT: 1626 * This symbol, if defined, indicates that the getmntent routine is 1627 * available to iterate through mounted file systems to get their info. 1628 */ 1629/*#define HAS_GETMNTENT / **/ 1630 1631/* HAS_GETNETBYADDR: 1632 * This symbol, if defined, indicates that the getnetbyaddr() routine is 1633 * available to look up networks by their IP addresses. 1634 */ 1635/*#define HAS_GETNETBYADDR / **/ 1636 1637/* HAS_GETNETBYNAME: 1638 * This symbol, if defined, indicates that the getnetbyname() routine is 1639 * available to look up networks by their names. 1640 */ 1641/*#define HAS_GETNETBYNAME / **/ 1642 1643/* HAS_GETNETENT: 1644 * This symbol, if defined, indicates that the getnetent() routine is 1645 * available to look up network names in some data base or another. 1646 */ 1647/*#define HAS_GETNETENT / **/ 1648 1649/* HAS_GETNET_PROTOS: 1650 * This symbol, if defined, indicates that <netdb.h> includes 1651 * prototypes for getnetent(), getnetbyname(), and 1652 * getnetbyaddr(). Otherwise, it is up to the program to guess 1653 * them. See netdbtype.U for probing for various Netdb_xxx_t types. 1654 */ 1655/*#define HAS_GETNET_PROTOS / **/ 1656 1657/* HAS_GETPAGESIZE: 1658 * This symbol, if defined, indicates that the getpagesize system call 1659 * is available to get system page size, which is the granularity of 1660 * many memory management calls. 1661 */ 1662/*#define HAS_GETPAGESIZE / **/ 1663 1664/* HAS_GETPROTOENT: 1665 * This symbol, if defined, indicates that the getprotoent() routine is 1666 * available to look up protocols in some data base or another. 1667 */ 1668/*#define HAS_GETPROTOENT / **/ 1669 1670/* HAS_GETPGRP: 1671 * This symbol, if defined, indicates that the getpgrp routine is 1672 * available to get the current process group. 1673 */ 1674/* USE_BSD_GETPGRP: 1675 * This symbol, if defined, indicates that getpgrp needs one 1676 * arguments whereas USG one needs none. 1677 */ 1678#define HAS_GETPGRP /**/ 1679/*#define USE_BSD_GETPGRP / **/ 1680 1681/* HAS_GETPROTOBYNAME: 1682 * This symbol, if defined, indicates that the getprotobyname() 1683 * routine is available to look up protocols by their name. 1684 */ 1685/* HAS_GETPROTOBYNUMBER: 1686 * This symbol, if defined, indicates that the getprotobynumber() 1687 * routine is available to look up protocols by their number. 1688 */ 1689#define HAS_GETPROTOBYNAME /**/ 1690/*#define HAS_GETPROTOBYNUMBER / **/ 1691 1692/* HAS_GETPROTO_PROTOS: 1693 * This symbol, if defined, indicates that <netdb.h> includes 1694 * prototypes for getprotoent(), getprotobyname(), and 1695 * getprotobyaddr(). Otherwise, it is up to the program to guess 1696 * them. See netdbtype.U for probing for various Netdb_xxx_t types. 1697 */ 1698/*#define HAS_GETPROTO_PROTOS / **/ 1699 1700/* HAS_GETPRPWNAM: 1701 * This symbol, if defined, indicates that the getprpwnam system call is 1702 * available to retrieve protected (shadow) password entries by name. 1703 */ 1704/*#define HAS_GETPRPWNAM / **/ 1705 1706/* HAS_GETPWENT: 1707 * This symbol, if defined, indicates that the getpwent routine is 1708 * available for sequential access of the passwd database. 1709 * If this is not available, the older getpw() function may be available. 1710 */ 1711#define HAS_GETPWENT /**/ 1712 1713/* HAS_GETPWENT_R: 1714 * This symbol, if defined, indicates that the getpwent_r routine 1715 * is available to getpwent re-entrantly. 1716 */ 1717/* GETPWENT_R_PROTO: 1718 * This symbol encodes the prototype of getpwent_r. 1719 * It is zero if d_getpwent_r is undef, and one of the 1720 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwent_r 1721 * is defined. 1722 */ 1723/*#define HAS_GETPWENT_R / **/ 1724#define GETPWENT_R_PROTO 0 /**/ 1725 1726/* HAS_GETPWNAM_R: 1727 * This symbol, if defined, indicates that the getpwnam_r routine 1728 * is available to getpwnam re-entrantly. 1729 */ 1730/* GETPWNAM_R_PROTO: 1731 * This symbol encodes the prototype of getpwnam_r. 1732 * It is zero if d_getpwnam_r is undef, and one of the 1733 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwnam_r 1734 * is defined. 1735 */ 1736/*#define HAS_GETPWNAM_R / **/ 1737#define GETPWNAM_R_PROTO 0 /**/ 1738 1739/* HAS_GETPWUID_R: 1740 * This symbol, if defined, indicates that the getpwuid_r routine 1741 * is available to getpwuid re-entrantly. 1742 */ 1743/* GETPWUID_R_PROTO: 1744 * This symbol encodes the prototype of getpwuid_r. 1745 * It is zero if d_getpwuid_r is undef, and one of the 1746 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getpwuid_r 1747 * is defined. 1748 */ 1749/*#define HAS_GETPWUID_R / **/ 1750#define GETPWUID_R_PROTO 0 /**/ 1751 1752/* HAS_GETSERVENT: 1753 * This symbol, if defined, indicates that the getservent() routine is 1754 * available to look up network services in some data base or another. 1755 */ 1756/*#define HAS_GETSERVENT / **/ 1757 1758/* HAS_GETSERV_PROTOS: 1759 * This symbol, if defined, indicates that <netdb.h> includes 1760 * prototypes for getservent(), getservbyname(), and 1761 * getservbyaddr(). Otherwise, it is up to the program to guess 1762 * them. See netdbtype.U for probing for various Netdb_xxx_t types. 1763 */ 1764/*#define HAS_GETSERV_PROTOS / **/ 1765 1766/* HAS_GETSPNAM: 1767 * This symbol, if defined, indicates that the getspnam system call is 1768 * available to retrieve SysV shadow password entries by name. 1769 */ 1770/*#define HAS_GETSPNAM / **/ 1771 1772/* HAS_GETSPNAM_R: 1773 * This symbol, if defined, indicates that the getspnam_r routine 1774 * is available to getspnam re-entrantly. 1775 */ 1776/* GETSPNAM_R_PROTO: 1777 * This symbol encodes the prototype of getspnam_r. 1778 * It is zero if d_getspnam_r is undef, and one of the 1779 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getspnam_r 1780 * is defined. 1781 */ 1782/*#define HAS_GETSPNAM_R / **/ 1783#define GETSPNAM_R_PROTO 0 /**/ 1784 1785/* HAS_GETSERVBYNAME: 1786 * This symbol, if defined, indicates that the getservbyname() 1787 * routine is available to look up services by their name. 1788 */ 1789/* HAS_GETSERVBYPORT: 1790 * This symbol, if defined, indicates that the getservbyport() 1791 * routine is available to look up services by their port. 1792 */ 1793#define HAS_GETSERVBYNAME /**/ 1794/*#define HAS_GETSERVBYPORT / **/ 1795 1796/* HAS_GMTIME_R: 1797 * This symbol, if defined, indicates that the gmtime_r routine 1798 * is available to gmtime re-entrantly. 1799 */ 1800/* GMTIME_R_PROTO: 1801 * This symbol encodes the prototype of gmtime_r. 1802 * It is zero if d_gmtime_r is undef, and one of the 1803 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gmtime_r 1804 * is defined. 1805 */ 1806/*#define HAS_GMTIME_R / **/ 1807#define GMTIME_R_PROTO 0 /**/ 1808 1809/* HAS_GNULIBC: 1810 * This symbol, if defined, indicates to the C program that 1811 * the GNU C library is being used. A better check is to use 1812 * the __GLIBC__ and __GLIBC_MINOR__ symbols supplied with glibc. 1813 */ 1814/*#define HAS_GNULIBC / **/ 1815#if defined(HAS_GNULIBC) && !defined(_GNU_SOURCE) 1816# define _GNU_SOURCE 1817#endif 1818/* HAS_HASMNTOPT: 1819 * This symbol, if defined, indicates that the hasmntopt routine is 1820 * available to query the mount options of file systems. 1821 */ 1822/*#define HAS_HASMNTOPT / **/ 1823 1824/* HAS_HTONL: 1825 * This symbol, if defined, indicates that the htonl() routine (and 1826 * friends htons() ntohl() ntohs()) are available to do network 1827 * order byte swapping. 1828 */ 1829/* HAS_HTONS: 1830 * This symbol, if defined, indicates that the htons() routine (and 1831 * friends htonl() ntohl() ntohs()) are available to do network 1832 * order byte swapping. 1833 */ 1834/* HAS_NTOHL: 1835 * This symbol, if defined, indicates that the ntohl() routine (and 1836 * friends htonl() htons() ntohs()) are available to do network 1837 * order byte swapping. 1838 */ 1839/* HAS_NTOHS: 1840 * This symbol, if defined, indicates that the ntohs() routine (and 1841 * friends htonl() htons() ntohl()) are available to do network 1842 * order byte swapping. 1843 */ 1844#define HAS_HTONL /**/ 1845#define HAS_HTONS /**/ 1846#define HAS_NTOHL /**/ 1847#define HAS_NTOHS /**/ 1848 1849/* HAS_ILOGBL: 1850 * This symbol, if defined, indicates that the ilogbl routine is 1851 * available. If scalbnl is also present we can emulate frexpl. 1852 */ 1853/*#define HAS_ILOGBL /**/ 1854 1855/* HAS_INT64_T: 1856 * This symbol will defined if the C compiler supports int64_t. 1857 * Usually the <inttypes.h> needs to be included, but sometimes 1858 * <sys/types.h> is enough. 1859 */ 1860#define HAS_INT64_T /**/ 1861 1862/* HAS_ISASCII: 1863 * This manifest constant lets the C program know that isascii 1864 * is available. 1865 */ 1866/*#define HAS_ISASCII / **/ 1867 1868/* HAS_ISFINITE: 1869 * This symbol, if defined, indicates that the isfinite routine is 1870 * available to check whether a double is finite (non-infinity non-NaN). 1871 */ 1872/*#define HAS_ISFINITE / **/ 1873 1874/* HAS_ISINF: 1875 * This symbol, if defined, indicates that the isinf routine is 1876 * available to check whether a double is an infinity. 1877 */ 1878/*#define HAS_ISINF / **/ 1879 1880/* HAS_ISNAN: 1881 * This symbol, if defined, indicates that the isnan routine is 1882 * available to check whether a double is a NaN. 1883 */ 1884/*#define HAS_ISNAN / **/ 1885 1886/* HAS_ISNANL: 1887 * This symbol, if defined, indicates that the isnanl routine is 1888 * available to check whether a long double is a NaN. 1889 */ 1890/*#define HAS_ISNANL / **/ 1891 1892/* HAS_LCHOWN: 1893 * This symbol, if defined, indicates that the lchown routine is 1894 * available to operate on a symbolic link (instead of following the 1895 * link). 1896 */ 1897/*#define HAS_LCHOWN / **/ 1898 1899/* HAS_LDBL_DIG: 1900 * This symbol, if defined, indicates that this system's <float.h> 1901 * or <limits.h> defines the symbol LDBL_DIG, which is the number 1902 * of significant digits in a long double precision number. Unlike 1903 * for DBL_DIG, there's no good guess for LDBL_DIG if it is undefined. 1904 */ 1905#define HAS_LDBL_DIG /* */ 1906 1907/* HAS_LOCALTIME_R: 1908 * This symbol, if defined, indicates that the localtime_r routine 1909 * is available to localtime re-entrantly. 1910 */ 1911/* LOCALTIME_R_NEEDS_TZSET: 1912 * Many libc's localtime_r implementations do not call tzset, 1913 * making them differ from localtime(), and making timezone 1914 * changes using $ENV{TZ} without explicitly calling tzset 1915 * impossible. This symbol makes us call tzset before localtime_r 1916 */ 1917/* LOCALTIME_R_PROTO: 1918 * This symbol encodes the prototype of localtime_r. 1919 * It is zero if d_localtime_r is undef, and one of the 1920 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_localtime_r 1921 * is defined. 1922 */ 1923/*#define HAS_LOCALTIME_R / **/ 1924/*#define LOCALTIME_R_NEEDS_TZSET / **/ 1925#define LOCALTIME_R_PROTO 0 /**/ 1926 1927/* HAS_LONG_DOUBLE: 1928 * This symbol will be defined if the C compiler supports long 1929 * doubles. 1930 */ 1931/* LONG_DOUBLESIZE: 1932 * This symbol contains the size of a long double, so that the 1933 * C preprocessor can make decisions based on it. It is only 1934 * defined if the system supports long doubles. 1935 */ 1936#define HAS_LONG_DOUBLE /**/ 1937#ifdef HAS_LONG_DOUBLE 1938#define LONG_DOUBLESIZE 8 /**/ 1939#endif 1940 1941/* HAS_LONG_LONG: 1942 * This symbol will be defined if the C compiler supports long long. 1943 */ 1944/* LONGLONGSIZE: 1945 * This symbol contains the size of a long long, so that the 1946 * C preprocessor can make decisions based on it. It is only 1947 * defined if the system supports long long. 1948 */ 1949#define HAS_LONG_LONG /**/ 1950#ifdef HAS_LONG_LONG 1951#define LONGLONGSIZE 8 /**/ 1952#endif 1953 1954/* HAS_LSEEK_PROTO: 1955 * This symbol, if defined, indicates that the system provides 1956 * a prototype for the lseek() function. Otherwise, it is up 1957 * to the program to supply one. A good guess is 1958 * extern off_t lseek(int, off_t, int); 1959 */ 1960/*#define HAS_LSEEK_PROTO / **/ 1961 1962/* HAS_MADVISE: 1963 * This symbol, if defined, indicates that the madvise system call is 1964 * available to map a file into memory. 1965 */ 1966/*#define HAS_MADVISE / **/ 1967 1968/* HAS_MEMCHR: 1969 * This symbol, if defined, indicates that the memchr routine is available 1970 * to locate characters within a C string. 1971 */ 1972#define HAS_MEMCHR /**/ 1973 1974/* HAS_MKDTEMP: 1975 * This symbol, if defined, indicates that the mkdtemp routine is 1976 * available to exclusively create a uniquely named temporary directory. 1977 */ 1978/*#define HAS_MKDTEMP / **/ 1979 1980/* HAS_MKSTEMP: 1981 * This symbol, if defined, indicates that the mkstemp routine is 1982 * available to exclusively create and open a uniquely named 1983 * temporary file. 1984 */ 1985/*#define HAS_MKSTEMP / **/ 1986 1987/* HAS_MKSTEMPS: 1988 * This symbol, if defined, indicates that the mkstemps routine is 1989 * available to excluslvely create and open a uniquely named 1990 * (with a suffix) temporary file. 1991 */ 1992/*#define HAS_MKSTEMPS / **/ 1993 1994/* HAS_MMAP: 1995 * This symbol, if defined, indicates that the mmap system call is 1996 * available to map a file into memory. 1997 */ 1998/* Mmap_t: 1999 * This symbol holds the return type of the mmap() system call 2000 * (and simultaneously the type of the first argument). 2001 * Usually set to 'void *' or 'cadd_t'. 2002 */ 2003/*#define HAS_MMAP / **/ 2004#define Mmap_t void * /**/ 2005 2006/* HAS_MODFL: 2007 * This symbol, if defined, indicates that the modfl routine is 2008 * available to split a long double x into a fractional part f and 2009 * an integer part i such that |f| < 1.0 and (f + i) = x. 2010 */ 2011/* HAS_MODFL_POW32_BUG: 2012 * This symbol, if defined, indicates that the modfl routine is 2013 * broken for long doubles >= pow(2, 32). 2014 * For example from 4294967303.150000 one would get 4294967302.000000 2015 * and 1.150000. The bug has been seen in certain versions of glibc, 2016 * release 2.2.2 is known to be okay. 2017 */ 2018/*#define HAS_MODFL / **/ 2019/*#define HAS_MODFL_POW32_BUG / **/ 2020 2021/* HAS_MPROTECT: 2022 * This symbol, if defined, indicates that the mprotect system call is 2023 * available to modify the access protection of a memory mapped file. 2024 */ 2025/*#define HAS_MPROTECT / **/ 2026 2027/* HAS_MSG: 2028 * This symbol, if defined, indicates that the entire msg*(2) library is 2029 * supported (IPC mechanism based on message queues). 2030 */ 2031/*#define HAS_MSG / **/ 2032 2033/* HAS_STRUCT_MSGHDR: 2034 * This symbol, if defined, indicates that the struct msghdr 2035 * is supported. 2036 */ 2037/*#define HAS_STRUCT_MSGHDR / **/ 2038 2039/* HAS_OFF64_T: 2040 * This symbol will be defined if the C compiler supports off64_t. 2041 */ 2042/*#define HAS_OFF64_T / **/ 2043 2044/* HAS_OPEN3: 2045 * This manifest constant lets the C program know that the three 2046 * argument form of open(2) is available. 2047 */ 2048#define HAS_OPEN3 /**/ 2049 2050/* OLD_PTHREAD_CREATE_JOINABLE: 2051 * This symbol, if defined, indicates how to create pthread 2052 * in joinable (aka undetached) state. NOTE: not defined 2053 * if pthread.h already has defined PTHREAD_CREATE_JOINABLE 2054 * (the new version of the constant). 2055 * If defined, known values are PTHREAD_CREATE_UNDETACHED 2056 * and __UNDETACHED. 2057 */ 2058/*#define OLD_PTHREAD_CREATE_JOINABLE / **/ 2059 2060/* HAS_PTHREAD_YIELD: 2061 * This symbol, if defined, indicates that the pthread_yield 2062 * routine is available to yield the execution of the current 2063 * thread. sched_yield is preferable to pthread_yield. 2064 */ 2065/* SCHED_YIELD: 2066 * This symbol defines the way to yield the execution of 2067 * the current thread. Known ways are sched_yield, 2068 * pthread_yield, and pthread_yield with NULL. 2069 */ 2070/* HAS_SCHED_YIELD: 2071 * This symbol, if defined, indicates that the sched_yield 2072 * routine is available to yield the execution of the current 2073 * thread. sched_yield is preferable to pthread_yield. 2074 */ 2075/*#define HAS_PTHREAD_YIELD / **/ 2076#define SCHED_YIELD undef /**/ 2077/*#define HAS_SCHED_YIELD / **/ 2078 2079/* HAS_RANDOM_R: 2080 * This symbol, if defined, indicates that the random_r routine 2081 * is available to random re-entrantly. 2082 */ 2083/* RANDOM_R_PROTO: 2084 * This symbol encodes the prototype of random_r. 2085 * It is zero if d_random_r is undef, and one of the 2086 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_random_r 2087 * is defined. 2088 */ 2089/*#define HAS_RANDOM_R / **/ 2090#define RANDOM_R_PROTO 0 /**/ 2091 2092/* HAS_READDIR_R: 2093 * This symbol, if defined, indicates that the readdir_r routine 2094 * is available to readdir re-entrantly. 2095 */ 2096/* READDIR_R_PROTO: 2097 * This symbol encodes the prototype of readdir_r. 2098 * It is zero if d_readdir_r is undef, and one of the 2099 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir_r 2100 * is defined. 2101 */ 2102/*#define HAS_READDIR_R / **/ 2103#define READDIR_R_PROTO 0 /**/ 2104 2105/* HAS_READV: 2106 * This symbol, if defined, indicates that the readv routine is 2107 * available to do gather reads. You will also need <sys/uio.h> 2108 * and there I_SYSUIO. 2109 */ 2110#define HAS_READV /**/ 2111 2112/* HAS_RECVMSG: 2113 * This symbol, if defined, indicates that the recvmsg routine is 2114 * available to send structured socket messages. 2115 */ 2116/*#define HAS_RECVMSG / **/ 2117 2118/* HAS_SAFE_BCOPY: 2119 * This symbol, if defined, indicates that the bcopy routine is available 2120 * to copy potentially overlapping memory blocks. Normally, you should 2121 * probably use memmove() or memcpy(). If neither is defined, roll your 2122 * own version. 2123 */ 2124/*#define HAS_SAFE_BCOPY / **/ 2125 2126/* HAS_SAFE_MEMCPY: 2127 * This symbol, if defined, indicates that the memcpy routine is available 2128 * to copy potentially overlapping memory blocks. If you need to 2129 * copy overlapping memory blocks, you should check HAS_MEMMOVE and 2130 * use memmove() instead, if available. 2131 */ 2132/*#define HAS_SAFE_MEMCPY / **/ 2133 2134/* HAS_SANE_MEMCMP: 2135 * This symbol, if defined, indicates that the memcmp routine is available 2136 * and can be used to compare relative magnitudes of chars with their high 2137 * bits set. If it is not defined, roll your own version. 2138 */ 2139#define HAS_SANE_MEMCMP /**/ 2140 2141/* HAS_SBRK_PROTO: 2142 * This symbol, if defined, indicates that the system provides 2143 * a prototype for the sbrk() function. Otherwise, it is up 2144 * to the program to supply one. Good guesses are 2145 * extern void* sbrk(int); 2146 * extern void* sbrk(size_t); 2147 */ 2148/*#define HAS_SBRK_PROTO / **/ 2149 2150/* HAS_SEM: 2151 * This symbol, if defined, indicates that the entire sem*(2) library is 2152 * supported. 2153 */ 2154/*#define HAS_SEM / **/ 2155 2156/* HAS_SCALBNL: 2157 * This symbol, if defined, indicates that the scalbnl routine is 2158 * available. If ilogbl is also present we can emulate frexpl. 2159 */ 2160/*#define HAS_SCALBNL /**/ 2161 2162/* HAS_SENDMSG: 2163 * This symbol, if defined, indicates that the sendmsg routine is 2164 * available to send structured socket messages. 2165 */ 2166/*#define HAS_SENDMSG / **/ 2167 2168/* HAS_SETGRENT: 2169 * This symbol, if defined, indicates that the setgrent routine is 2170 * available for initializing sequential access of the group database. 2171 */ 2172#define HAS_SETGRENT /**/ 2173 2174/* HAS_SETGRENT_R: 2175 * This symbol, if defined, indicates that the setgrent_r routine 2176 * is available to setgrent re-entrantly. 2177 */ 2178/* SETGRENT_R_PROTO: 2179 * This symbol encodes the prototype of setgrent_r. 2180 * It is zero if d_setgrent_r is undef, and one of the 2181 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setgrent_r 2182 * is defined. 2183 */ 2184/*#define HAS_SETGRENT_R / **/ 2185#define SETGRENT_R_PROTO 0 /**/ 2186 2187/* HAS_SETGROUPS: 2188 * This symbol, if defined, indicates that the setgroups() routine is 2189 * available to set the list of process groups. If unavailable, multiple 2190 * groups are probably not supported. 2191 */ 2192/*#define HAS_SETGROUPS / **/ 2193 2194/* HAS_SETHOSTENT: 2195 * This symbol, if defined, indicates that the sethostent() routine is 2196 * available. 2197 */ 2198/*#define HAS_SETHOSTENT / **/ 2199 2200/* HAS_SETITIMER: 2201 * This symbol, if defined, indicates that the setitimer routine is 2202 * available to set interval timers. 2203 */ 2204/*#define HAS_SETITIMER / **/ 2205 2206/* HAS_SETNETENT: 2207 * This symbol, if defined, indicates that the setnetent() routine is 2208 * available. 2209 */ 2210/*#define HAS_SETNETENT / **/ 2211 2212/* HAS_SETPROTOENT: 2213 * This symbol, if defined, indicates that the setprotoent() routine is 2214 * available. 2215 */ 2216/*#define HAS_SETPROTOENT / **/ 2217 2218/* HAS_SETPGRP: 2219 * This symbol, if defined, indicates that the setpgrp routine is 2220 * available to set the current process group. 2221 */ 2222/* USE_BSD_SETPGRP: 2223 * This symbol, if defined, indicates that setpgrp needs two 2224 * arguments whereas USG one needs none. See also HAS_SETPGID 2225 * for a POSIX interface. 2226 */ 2227/*#define HAS_SETPGRP / **/ 2228/*#define USE_BSD_SETPGRP / **/ 2229 2230/* HAS_SETPROCTITLE: 2231 * This symbol, if defined, indicates that the setproctitle routine is 2232 * available to set process title. 2233 */ 2234/*#define HAS_SETPROCTITLE / **/ 2235 2236/* HAS_SETPWENT: 2237 * This symbol, if defined, indicates that the setpwent routine is 2238 * available for initializing sequential access of the passwd database. 2239 */ 2240#define HAS_SETPWENT /**/ 2241 2242/* HAS_SETPWENT_R: 2243 * This symbol, if defined, indicates that the setpwent_r routine 2244 * is available to setpwent re-entrantly. 2245 */ 2246/* SETPWENT_R_PROTO: 2247 * This symbol encodes the prototype of setpwent_r. 2248 * It is zero if d_setpwent_r is undef, and one of the 2249 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setpwent_r 2250 * is defined. 2251 */ 2252/*#define HAS_SETPWENT_R / **/ 2253#define SETPWENT_R_PROTO 0 /**/ 2254 2255/* HAS_SETSERVENT: 2256 * This symbol, if defined, indicates that the setservent() routine is 2257 * available. 2258 */ 2259/*#define HAS_SETSERVENT / **/ 2260 2261/* HAS_SETVBUF: 2262 * This symbol, if defined, indicates that the setvbuf routine is 2263 * available to change buffering on an open stdio stream. 2264 * to a line-buffered mode. 2265 */ 2266#define HAS_SETVBUF /**/ 2267 2268/* USE_SFIO: 2269 * This symbol, if defined, indicates that sfio should 2270 * be used. 2271 */ 2272/*#define USE_SFIO / **/ 2273 2274/* HAS_SHM: 2275 * This symbol, if defined, indicates that the entire shm*(2) library is 2276 * supported. 2277 */ 2278/*#define HAS_SHM / **/ 2279 2280/* HAS_SIGACTION: 2281 * This symbol, if defined, indicates that Vr4's sigaction() routine 2282 * is available. 2283 */ 2284#define HAS_SIGACTION /**/ 2285 2286/* HAS_SIGSETJMP: 2287 * This variable indicates to the C program that the sigsetjmp() 2288 * routine is available to save the calling process's registers 2289 * and stack environment for later use by siglongjmp(), and 2290 * to optionally save the process's signal mask. See 2291 * Sigjmp_buf, Sigsetjmp, and Siglongjmp. 2292 */ 2293/* Sigjmp_buf: 2294 * This is the buffer type to be used with Sigsetjmp and Siglongjmp. 2295 */ 2296/* Sigsetjmp: 2297 * This macro is used in the same way as sigsetjmp(), but will invoke 2298 * traditional setjmp() if sigsetjmp isn't available. 2299 * See HAS_SIGSETJMP. 2300 */ 2301/* Siglongjmp: 2302 * This macro is used in the same way as siglongjmp(), but will invoke 2303 * traditional longjmp() if siglongjmp isn't available. 2304 * See HAS_SIGSETJMP. 2305 */ 2306#define HAS_SIGSETJMP /**/ 2307#ifdef HAS_SIGSETJMP 2308#define Sigjmp_buf sigjmp_buf 2309#define Sigsetjmp(buf,save_mask) sigsetjmp((buf),(save_mask)) 2310#define Siglongjmp(buf,retval) siglongjmp((buf),(retval)) 2311#else 2312#define Sigjmp_buf jmp_buf 2313#define Sigsetjmp(buf,save_mask) setjmp((buf)) 2314#define Siglongjmp(buf,retval) longjmp((buf),(retval)) 2315#endif 2316 2317/* HAS_SOCKET: 2318 * This symbol, if defined, indicates that the BSD socket interface is 2319 * supported. 2320 */ 2321/* HAS_SOCKETPAIR: 2322 * This symbol, if defined, indicates that the BSD socketpair() call is 2323 * supported. 2324 */ 2325/* HAS_MSG_CTRUNC: 2326 * This symbol, if defined, indicates that the MSG_CTRUNC is supported. 2327 * Checking just with #ifdef might not be enough because this symbol 2328 * has been known to be an enum. 2329 */ 2330/* HAS_MSG_DONTROUTE: 2331 * This symbol, if defined, indicates that the MSG_DONTROUTE is supported. 2332 * Checking just with #ifdef might not be enough because this symbol 2333 * has been known to be an enum. 2334 */ 2335/* HAS_MSG_OOB: 2336 * This symbol, if defined, indicates that the MSG_OOB is supported. 2337 * Checking just with #ifdef might not be enough because this symbol 2338 * has been known to be an enum. 2339 */ 2340/* HAS_MSG_PEEK: 2341 * This symbol, if defined, indicates that the MSG_PEEK is supported. 2342 * Checking just with #ifdef might not be enough because this symbol 2343 * has been known to be an enum. 2344 */ 2345/* HAS_MSG_PROXY: 2346 * This symbol, if defined, indicates that the MSG_PROXY is supported. 2347 * Checking just with #ifdef might not be enough because this symbol 2348 * has been known to be an enum. 2349 */ 2350/* HAS_SCM_RIGHTS: 2351 * This symbol, if defined, indicates that the SCM_RIGHTS is supported. 2352 * Checking just with #ifdef might not be enough because this symbol 2353 * has been known to be an enum. 2354 */ 2355#define HAS_SOCKET /**/ 2356#define HAS_SOCKETPAIR /**/ 2357/*#define HAS_MSG_CTRUNC / **/ 2358/*#define HAS_MSG_DONTROUTE / **/ 2359/*#define HAS_MSG_OOB / **/ 2360/*#define HAS_MSG_PEEK / **/ 2361/*#define HAS_MSG_PROXY / **/ 2362/*#define HAS_SCM_RIGHTS / **/ 2363 2364/* HAS_SOCKS5_INIT: 2365 * This symbol, if defined, indicates that the socks5_init routine is 2366 * available to initialize SOCKS 5. 2367 */ 2368/*#define HAS_SOCKS5_INIT / **/ 2369 2370/* HAS_SQRTL: 2371 * This symbol, if defined, indicates that the sqrtl routine is 2372 * available to do long double square roots. 2373 */ 2374/*#define HAS_SQRTL / **/ 2375 2376/* HAS_SRAND48_R: 2377 * This symbol, if defined, indicates that the srand48_r routine 2378 * is available to srand48 re-entrantly. 2379 */ 2380/* SRAND48_R_PROTO: 2381 * This symbol encodes the prototype of srand48_r. 2382 * It is zero if d_srand48_r is undef, and one of the 2383 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srand48_r 2384 * is defined. 2385 */ 2386/*#define HAS_SRAND48_R / **/ 2387#define SRAND48_R_PROTO 0 /**/ 2388 2389/* HAS_SRANDOM_R: 2390 * This symbol, if defined, indicates that the srandom_r routine 2391 * is available to srandom re-entrantly. 2392 */ 2393/* SRANDOM_R_PROTO: 2394 * This symbol encodes the prototype of srandom_r. 2395 * It is zero if d_srandom_r is undef, and one of the 2396 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_srandom_r 2397 * is defined. 2398 */ 2399/*#define HAS_SRANDOM_R / **/ 2400#define SRANDOM_R_PROTO 0 /**/ 2401 2402/* USE_STAT_BLOCKS: 2403 * This symbol is defined if this system has a stat structure declaring 2404 * st_blksize and st_blocks. 2405 */ 2406#ifndef USE_STAT_BLOCKS 2407/*#define USE_STAT_BLOCKS / **/ 2408#endif 2409 2410/* HAS_STRUCT_STATFS_F_FLAGS: 2411 * This symbol, if defined, indicates that the struct statfs 2412 * does have the f_flags member containing the mount flags of 2413 * the filesystem containing the file. 2414 * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3), 2415 * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not 2416 * have statfs() and struct statfs, they have ustat() and getmnt() 2417 * with struct ustat and struct fs_data. 2418 */ 2419/*#define HAS_STRUCT_STATFS_F_FLAGS / **/ 2420 2421/* HAS_STRUCT_STATFS: 2422 * This symbol, if defined, indicates that the struct statfs 2423 * to do statfs() is supported. 2424 */ 2425/*#define HAS_STRUCT_STATFS / **/ 2426 2427/* HAS_FSTATVFS: 2428 * This symbol, if defined, indicates that the fstatvfs routine is 2429 * available to stat filesystems by file descriptors. 2430 */ 2431/*#define HAS_FSTATVFS / **/ 2432 2433/* USE_STDIO_PTR: 2434 * This symbol is defined if the _ptr and _cnt fields (or similar) 2435 * of the stdio FILE structure can be used to access the stdio buffer 2436 * for a file handle. If this is defined, then the FILE_ptr(fp) 2437 * and FILE_cnt(fp) macros will also be defined and should be used 2438 * to access these fields. 2439 */ 2440/* FILE_ptr: 2441 * This macro is used to access the _ptr field (or equivalent) of the 2442 * FILE structure pointed to by its argument. This macro will always be 2443 * defined if USE_STDIO_PTR is defined. 2444 */ 2445/* STDIO_PTR_LVALUE: 2446 * This symbol is defined if the FILE_ptr macro can be used as an 2447 * lvalue. 2448 */ 2449/* FILE_cnt: 2450 * This macro is used to access the _cnt field (or equivalent) of the 2451 * FILE structure pointed to by its argument. This macro will always be 2452 * defined if USE_STDIO_PTR is defined. 2453 */ 2454/* STDIO_CNT_LVALUE: 2455 * This symbol is defined if the FILE_cnt macro can be used as an 2456 * lvalue. 2457 */ 2458/* STDIO_PTR_LVAL_SETS_CNT: 2459 * This symbol is defined if using the FILE_ptr macro as an lvalue 2460 * to increase the pointer by n has the side effect of decreasing the 2461 * value of File_cnt(fp) by n. 2462 */ 2463/* STDIO_PTR_LVAL_NOCHANGE_CNT: 2464 * This symbol is defined if using the FILE_ptr macro as an lvalue 2465 * to increase the pointer by n leaves File_cnt(fp) unchanged. 2466 */ 2467/*#define USE_STDIO_PTR / **/ 2468#ifdef USE_STDIO_PTR 2469#define FILE_ptr(fp) ((fp)->_ptr) 2470/*#define STDIO_PTR_LVALUE / **/ 2471#define FILE_cnt(fp) ((fp)->_cnt) 2472/*#define STDIO_CNT_LVALUE / **/ 2473/*#define STDIO_PTR_LVAL_SETS_CNT / **/ 2474/*#define STDIO_PTR_LVAL_NOCHANGE_CNT / **/ 2475#endif 2476 2477/* USE_STDIO_BASE: 2478 * This symbol is defined if the _base field (or similar) of the 2479 * stdio FILE structure can be used to access the stdio buffer for 2480 * a file handle. If this is defined, then the FILE_base(fp) macro 2481 * will also be defined and should be used to access this field. 2482 * Also, the FILE_bufsiz(fp) macro will be defined and should be used 2483 * to determine the number of bytes in the buffer. USE_STDIO_BASE 2484 * will never be defined unless USE_STDIO_PTR is. 2485 */ 2486/* FILE_base: 2487 * This macro is used to access the _base field (or equivalent) of the 2488 * FILE structure pointed to by its argument. This macro will always be 2489 * defined if USE_STDIO_BASE is defined. 2490 */ 2491/* FILE_bufsiz: 2492 * This macro is used to determine the number of bytes in the I/O 2493 * buffer pointed to by _base field (or equivalent) of the FILE 2494 * structure pointed to its argument. This macro will always be defined 2495 * if USE_STDIO_BASE is defined. 2496 */ 2497/*#define USE_STDIO_BASE / **/ 2498#ifdef USE_STDIO_BASE 2499#define FILE_base(fp) ((fp)->_base) 2500#define FILE_bufsiz(fp) ((fp)->_cnt + (fp)->_ptr - (fp)->_base) 2501#endif 2502 2503/* HAS_STRERROR: 2504 * This symbol, if defined, indicates that the strerror routine is 2505 * available to translate error numbers to strings. See the writeup 2506 * of Strerror() in this file before you try to define your own. 2507 */ 2508/* HAS_SYS_ERRLIST: 2509 * This symbol, if defined, indicates that the sys_errlist array is 2510 * available to translate error numbers to strings. The extern int 2511 * sys_nerr gives the size of that table. 2512 */ 2513/* Strerror: 2514 * This preprocessor symbol is defined as a macro if strerror() is 2515 * not available to translate error numbers to strings but sys_errlist[] 2516 * array is there. 2517 */ 2518#define HAS_STRERROR /**/ 2519#define HAS_SYS_ERRLIST /**/ 2520#define Strerror(e) strerror(e) 2521 2522/* HAS_STRERROR_R: 2523 * This symbol, if defined, indicates that the strerror_r routine 2524 * is available to strerror re-entrantly. 2525 */ 2526/* STRERROR_R_PROTO: 2527 * This symbol encodes the prototype of strerror_r. 2528 * It is zero if d_strerror_r is undef, and one of the 2529 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_strerror_r 2530 * is defined. 2531 */ 2532/*#define HAS_STRERROR_R / **/ 2533#define STRERROR_R_PROTO 0 /**/ 2534 2535/* HAS_STRTOLD: 2536 * This symbol, if defined, indicates that the strtold routine is 2537 * available to convert strings to long doubles. 2538 */ 2539/*#define HAS_STRTOLD / **/ 2540 2541/* HAS_STRTOLL: 2542 * This symbol, if defined, indicates that the strtoll routine is 2543 * available to convert strings to long longs. 2544 */ 2545/*#define HAS_STRTOLL / **/ 2546 2547/* HAS_STRTOQ: 2548 * This symbol, if defined, indicates that the strtoq routine is 2549 * available to convert strings to long longs (quads). 2550 */ 2551/*#define HAS_STRTOQ / **/ 2552 2553/* HAS_STRTOUL: 2554 * This symbol, if defined, indicates that the strtoul routine is 2555 * available to provide conversion of strings to unsigned long. 2556 */ 2557#define HAS_STRTOUL /**/ 2558 2559/* HAS_STRTOULL: 2560 * This symbol, if defined, indicates that the strtoull routine is 2561 * available to convert strings to unsigned long longs. 2562 */ 2563/*#define HAS_STRTOULL / **/ 2564 2565/* HAS_STRTOUQ: 2566 * This symbol, if defined, indicates that the strtouq routine is 2567 * available to convert strings to unsigned long longs (quads). 2568 */ 2569/*#define HAS_STRTOUQ / **/ 2570 2571/* HAS_TELLDIR_PROTO: 2572 * This symbol, if defined, indicates that the system provides 2573 * a prototype for the telldir() function. Otherwise, it is up 2574 * to the program to supply one. A good guess is 2575 * extern long telldir(DIR*); 2576 */ 2577/*#define HAS_TELLDIR_PROTO / **/ 2578 2579/* HAS_TIME: 2580 * This symbol, if defined, indicates that the time() routine exists. 2581 */ 2582/* Time_t: 2583 * This symbol holds the type returned by time(). It can be long, 2584 * or time_t on BSD sites (in which case <sys/types.h> should be 2585 * included). 2586 */ 2587#define HAS_TIME /**/ 2588#define Time_t time_t /* Time type */ 2589 2590/* HAS_TIMES: 2591 * This symbol, if defined, indicates that the times() routine exists. 2592 * Note that this became obsolete on some systems (SUNOS), which now 2593 * use getrusage(). It may be necessary to include <sys/times.h>. 2594 */ 2595#define HAS_TIMES /**/ 2596 2597/* HAS_TMPNAM_R: 2598 * This symbol, if defined, indicates that the tmpnam_r routine 2599 * is available to tmpnam re-entrantly. 2600 */ 2601/* TMPNAM_R_PROTO: 2602 * This symbol encodes the prototype of tmpnam_r. 2603 * It is zero if d_tmpnam_r is undef, and one of the 2604 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_tmpnam_r 2605 * is defined. 2606 */ 2607/*#define HAS_TMPNAM_R / **/ 2608#define TMPNAM_R_PROTO 0 /**/ 2609 2610/* HAS_UALARM: 2611 * This symbol, if defined, indicates that the ualarm routine is 2612 * available to do alarms with microsecond granularity. 2613 */ 2614/*#define HAS_UALARM / **/ 2615 2616/* HAS_UNION_SEMUN: 2617 * This symbol, if defined, indicates that the union semun is 2618 * defined by including <sys/sem.h>. If not, the user code 2619 * probably needs to define it as: 2620 * union semun { 2621 * int val; 2622 * struct semid_ds *buf; 2623 * unsigned short *array; 2624 * } 2625 */ 2626/* USE_SEMCTL_SEMUN: 2627 * This symbol, if defined, indicates that union semun is 2628 * used for semctl IPC_STAT. 2629 */ 2630/* USE_SEMCTL_SEMID_DS: 2631 * This symbol, if defined, indicates that struct semid_ds * is 2632 * used for semctl IPC_STAT. 2633 */ 2634/*#define HAS_UNION_SEMUN / **/ 2635/*#define USE_SEMCTL_SEMUN / **/ 2636/*#define USE_SEMCTL_SEMID_DS / **/ 2637 2638/* HAS_UNORDERED: 2639 * This symbol, if defined, indicates that the unordered routine is 2640 * available to check whether two doubles are unordered 2641 * (effectively: whether either of them is NaN) 2642 */ 2643/*#define HAS_UNORDERED / **/ 2644 2645/* HAS_USTAT: 2646 * This symbol, if defined, indicates that the ustat system call is 2647 * available to query file system statistics by dev_t. 2648 */ 2649/*#define HAS_USTAT / **/ 2650 2651/* HAS_VFORK: 2652 * This symbol, if defined, indicates that vfork() exists. 2653 */ 2654/*#define HAS_VFORK / **/ 2655 2656/* Signal_t: 2657 * This symbol's value is either "void" or "int", corresponding to the 2658 * appropriate return type of a signal handler. Thus, you can declare 2659 * a signal handler using "Signal_t (*handler)()", and define the 2660 * handler using "Signal_t handler(sig)". 2661 */ 2662#define Signal_t void /* Signal handler's return type */ 2663 2664/* HAS_VPRINTF: 2665 * This symbol, if defined, indicates that the vprintf routine is available 2666 * to printf with a pointer to an argument list. If unavailable, you 2667 * may need to write your own, probably in terms of _doprnt(). 2668 */ 2669/* USE_CHAR_VSPRINTF: 2670 * This symbol is defined if this system has vsprintf() returning type 2671 * (char*). The trend seems to be to declare it as "int vsprintf()". It 2672 * is up to the package author to declare vsprintf correctly based on the 2673 * symbol. 2674 */ 2675#define HAS_VPRINTF /**/ 2676#define USE_CHAR_VSPRINTF /**/ 2677 2678/* HAS_WRITEV: 2679 * This symbol, if defined, indicates that the writev routine is 2680 * available to do scatter writes. 2681 */ 2682#define HAS_WRITEV /**/ 2683 2684/* USE_DYNAMIC_LOADING: 2685 * This symbol, if defined, indicates that dynamic loading of 2686 * some sort is available. 2687 */ 2688/*#define USE_DYNAMIC_LOADING / **/ 2689 2690/* DOUBLESIZE: 2691 * This symbol contains the size of a double, so that the C preprocessor 2692 * can make decisions based on it. 2693 */ 2694#define DOUBLESIZE 8 /**/ 2695 2696/* EBCDIC: 2697 * This symbol, if defined, indicates that this system uses 2698 * EBCDIC encoding. 2699 */ 2700/*#define EBCDIC / **/ 2701 2702/* FFLUSH_NULL: 2703 * This symbol, if defined, tells that fflush(NULL) does flush 2704 * all pending stdio output. 2705 */ 2706/* FFLUSH_ALL: 2707 * This symbol, if defined, tells that to flush 2708 * all pending stdio output one must loop through all 2709 * the stdio file handles stored in an array and fflush them. 2710 * Note that if fflushNULL is defined, fflushall will not 2711 * even be probed for and will be left undefined. 2712 */ 2713#define FFLUSH_NULL /**/ 2714/*#define FFLUSH_ALL / **/ 2715 2716/* Fpos_t: 2717 * This symbol holds the type used to declare file positions in libc. 2718 * It can be fpos_t, long, uint, etc... It may be necessary to include 2719 * <sys/types.h> to get any typedef'ed information. 2720 */ 2721#define Fpos_t fpos_t /* File position type */ 2722 2723/* Gid_t_f: 2724 * This symbol defines the format string used for printing a Gid_t. 2725 */ 2726#define Gid_t_f "hd" /**/ 2727 2728/* Gid_t_sign: 2729 * This symbol holds the signedess of a Gid_t. 2730 * 1 for unsigned, -1 for signed. 2731 */ 2732#define Gid_t_sign -1 /* GID sign */ 2733 2734/* Gid_t_size: 2735 * This symbol holds the size of a Gid_t in bytes. 2736 */ 2737#define Gid_t_size 2 /* GID size */ 2738 2739/* Gid_t: 2740 * This symbol holds the return type of getgid() and the type of 2741 * argument to setrgid() and related functions. Typically, 2742 * it is the type of group ids in the kernel. It can be int, ushort, 2743 * gid_t, etc... It may be necessary to include <sys/types.h> to get 2744 * any typedef'ed information. 2745 */ 2746#define Gid_t gid_t /* Type for getgid(), etc... */ 2747 2748/* Groups_t: 2749 * This symbol holds the type used for the second argument to 2750 * getgroups() and setgroups(). Usually, this is the same as 2751 * gidtype (gid_t) , but sometimes it isn't. 2752 * It can be int, ushort, gid_t, etc... 2753 * It may be necessary to include <sys/types.h> to get any 2754 * typedef'ed information. This is only required if you have 2755 * getgroups() or setgroups().. 2756 */ 2757#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS) 2758#define Groups_t gid_t /* Type for 2nd arg to [sg]etgroups() */ 2759#endif 2760 2761/* DB_Prefix_t: 2762 * This symbol contains the type of the prefix structure element 2763 * in the <db.h> header file. In older versions of DB, it was 2764 * int, while in newer ones it is u_int32_t. 2765 */ 2766/* DB_Hash_t: 2767 * This symbol contains the type of the prefix structure element 2768 * in the <db.h> header file. In older versions of DB, it was 2769 * int, while in newer ones it is size_t. 2770 */ 2771/* DB_VERSION_MAJOR_CFG: 2772 * This symbol, if defined, defines the major version number of 2773 * Berkeley DB found in the <db.h> header when Perl was configured. 2774 */ 2775/* DB_VERSION_MINOR_CFG: 2776 * This symbol, if defined, defines the minor version number of 2777 * Berkeley DB found in the <db.h> header when Perl was configured. 2778 * For DB version 1 this is always 0. 2779 */ 2780/* DB_VERSION_PATCH_CFG: 2781 * This symbol, if defined, defines the patch version number of 2782 * Berkeley DB found in the <db.h> header when Perl was configured. 2783 * For DB version 1 this is always 0. 2784 */ 2785#define DB_Hash_t u_int32_t /**/ 2786#define DB_Prefix_t size_t /**/ 2787#define DB_VERSION_MAJOR_CFG /**/ 2788#define DB_VERSION_MINOR_CFG /**/ 2789#define DB_VERSION_PATCH_CFG /**/ 2790 2791/* I_FP_CLASS: 2792 * This symbol, if defined, indicates that <fp_class.h> exists and 2793 * should be included. 2794 */ 2795/*#define I_FP_CLASS / **/ 2796 2797/* I_GRP: 2798 * This symbol, if defined, indicates to the C program that it should 2799 * include <grp.h>. 2800 */ 2801/* GRPASSWD: 2802 * This symbol, if defined, indicates to the C program that struct group 2803 * in <grp.h> contains gr_passwd. 2804 */ 2805#define I_GRP /**/ 2806/*#define GRPASSWD / **/ 2807 2808/* I_IEEEFP: 2809 * This symbol, if defined, indicates that <ieeefp.h> exists and 2810 * should be included. 2811 */ 2812/*#define I_IEEEFP / **/ 2813 2814/* I_INTTYPES: 2815 * This symbol, if defined, indicates to the C program that it should 2816 * include <inttypes.h>. 2817 */ 2818#define I_INTTYPES /**/ 2819 2820/* I_LIBUTIL: 2821 * This symbol, if defined, indicates that <libutil.h> exists and 2822 * should be included. 2823 */ 2824/*#define I_LIBUTIL / **/ 2825 2826/* I_MACH_CTHREADS: 2827 * This symbol, if defined, indicates to the C program that it should 2828 * include <mach/cthreads.h>. 2829 */ 2830/*#define I_MACH_CTHREADS / **/ 2831 2832/* I_MNTENT: 2833 * This symbol, if defined, indicates that <mntent.h> exists and 2834 * should be included. 2835 */ 2836/*#define I_MNTENT / **/ 2837 2838/* I_NETDB: 2839 * This symbol, if defined, indicates that <netdb.h> exists and 2840 * should be included. 2841 */ 2842#define I_NETDB /**/ 2843 2844/* I_NETINET_TCP: 2845 * This symbol, if defined, indicates to the C program that it should 2846 * include <netinet/tcp.h>. 2847 */ 2848#define I_NETINET_TCP /**/ 2849 2850/* I_POLL: 2851 * This symbol, if defined, indicates that <poll.h> exists and 2852 * should be included. 2853 */ 2854/*#define I_POLL / **/ 2855 2856/* I_PROT: 2857 * This symbol, if defined, indicates that <prot.h> exists and 2858 * should be included. 2859 */ 2860/*#define I_PROT / **/ 2861 2862/* I_PTHREAD: 2863 * This symbol, if defined, indicates to the C program that it should 2864 * include <pthread.h>. 2865 */ 2866/*#define I_PTHREAD / **/ 2867 2868/* I_PWD: 2869 * This symbol, if defined, indicates to the C program that it should 2870 * include <pwd.h>. 2871 */ 2872/* PWQUOTA: 2873 * This symbol, if defined, indicates to the C program that struct passwd 2874 * contains pw_quota. 2875 */ 2876/* PWAGE: 2877 * This symbol, if defined, indicates to the C program that struct passwd 2878 * contains pw_age. 2879 */ 2880/* PWCHANGE: 2881 * This symbol, if defined, indicates to the C program that struct passwd 2882 * contains pw_change. 2883 */ 2884/* PWCLASS: 2885 * This symbol, if defined, indicates to the C program that struct passwd 2886 * contains pw_class. 2887 */ 2888/* PWEXPIRE: 2889 * This symbol, if defined, indicates to the C program that struct passwd 2890 * contains pw_expire. 2891 */ 2892/* PWCOMMENT: 2893 * This symbol, if defined, indicates to the C program that struct passwd 2894 * contains pw_comment. 2895 */ 2896/* PWGECOS: 2897 * This symbol, if defined, indicates to the C program that struct passwd 2898 * contains pw_gecos. 2899 */ 2900/* PWPASSWD: 2901 * This symbol, if defined, indicates to the C program that struct passwd 2902 * contains pw_passwd. 2903 */ 2904#define I_PWD /**/ 2905/*#define PWQUOTA / **/ 2906/*#define PWAGE / **/ 2907/*#define PWCHANGE / **/ 2908/*#define PWCLASS / **/ 2909/*#define PWEXPIRE / **/ 2910/*#define PWCOMMENT / **/ 2911/*#define PWGECOS / **/ 2912/*#define PWPASSWD / **/ 2913 2914/* I_SHADOW: 2915 * This symbol, if defined, indicates that <shadow.h> exists and 2916 * should be included. 2917 */ 2918/*#define I_SHADOW / **/ 2919 2920/* I_SOCKS: 2921 * This symbol, if defined, indicates that <socks.h> exists and 2922 * should be included. 2923 */ 2924/*#define I_SOCKS / **/ 2925 2926/* I_SUNMATH: 2927 * This symbol, if defined, indicates that <sunmath.h> exists and 2928 * should be included. 2929 */ 2930/*#define I_SUNMATH / **/ 2931 2932/* I_SYSLOG: 2933 * This symbol, if defined, indicates that <syslog.h> exists and 2934 * should be included. 2935 */ 2936/*#define I_SYSLOG / **/ 2937 2938/* I_SYSMODE: 2939 * This symbol, if defined, indicates that <sys/mode.h> exists and 2940 * should be included. 2941 */ 2942/*#define I_SYSMODE / **/ 2943 2944/* I_SYS_MOUNT: 2945 * This symbol, if defined, indicates that <sys/mount.h> exists and 2946 * should be included. 2947 */ 2948/*#define I_SYS_MOUNT / **/ 2949 2950/* I_SYS_STATFS: 2951 * This symbol, if defined, indicates that <sys/statfs.h> exists. 2952 */ 2953/*#define I_SYS_STATFS / **/ 2954 2955/* I_SYS_STATVFS: 2956 * This symbol, if defined, indicates that <sys/statvfs.h> exists and 2957 * should be included. 2958 */ 2959/*#define I_SYS_STATVFS / **/ 2960 2961/* I_SYSUIO: 2962 * This symbol, if defined, indicates that <sys/uio.h> exists and 2963 * should be included. 2964 */ 2965#define I_SYSUIO /**/ 2966 2967/* I_SYSUTSNAME: 2968 * This symbol, if defined, indicates that <sys/utsname.h> exists and 2969 * should be included. 2970 */ 2971#define I_SYSUTSNAME /**/ 2972 2973/* I_SYS_VFS: 2974 * This symbol, if defined, indicates that <sys/vfs.h> exists and 2975 * should be included. 2976 */ 2977/*#define I_SYS_VFS / **/ 2978 2979/* I_TIME: 2980 * This symbol, if defined, indicates to the C program that it should 2981 * include <time.h>. 2982 */ 2983/* I_SYS_TIME: 2984 * This symbol, if defined, indicates to the C program that it should 2985 * include <sys/time.h>. 2986 */ 2987#define I_SYS_TIME /**/ 2988 2989 2990/* I_SYS_TIME_KERNEL: 2991 * This symbol, if defined, indicates to the C program that it should 2992 * include <sys/time.h> with KERNEL defined. 2993 */ 2994/* HAS_TM_TM_ZONE: 2995 * This symbol, if defined, indicates to the C program that 2996 * the struct tm has a tm_zone field. 2997 */ 2998#define I_TIME /**/ 2999/*#define I_SYS_TIME / **/ 3000/*#define I_SYS_TIME_KERNEL / **/ 3001/*#define HAS_TM_TM_ZONE / **/ 3002 3003/* I_USTAT: 3004 * This symbol, if defined, indicates that <ustat.h> exists and 3005 * should be included. 3006 */ 3007/*#define I_USTAT / **/ 3008 3009/* PERL_INC_VERSION_LIST: 3010 * This variable specifies the list of subdirectories in over 3011 * which perl.c:incpush() and lib/lib.pm will automatically 3012 * search when adding directories to @INC, in a format suitable 3013 * for a C initialization string. See the inc_version_list entry 3014 * in Porting/Glossary for more details. 3015 */ 3016#define PERL_INC_VERSION_LIST 0 /**/ 3017 3018/* INSTALL_USR_BIN_PERL: 3019 * This symbol, if defined, indicates that Perl is to be installed 3020 * also as /usr/bin/perl. 3021 */ 3022/*#define INSTALL_USR_BIN_PERL / **/ 3023 3024/* PERL_PRIfldbl: 3025 * This symbol, if defined, contains the string used by stdio to 3026 * format long doubles (format 'f') for output. 3027 */ 3028/* PERL_PRIgldbl: 3029 * This symbol, if defined, contains the string used by stdio to 3030 * format long doubles (format 'g') for output. 3031 */ 3032/* PERL_PRIeldbl: 3033 * This symbol, if defined, contains the string used by stdio to 3034 * format long doubles (format 'e') for output. 3035 */ 3036/* PERL_SCNfldbl: 3037 * This symbol, if defined, contains the string used by stdio to 3038 * format long doubles (format 'f') for input. 3039 */ 3040#define PERL_PRIfldbl "f" /**/ 3041#define PERL_PRIgldbl "g" /**/ 3042#define PERL_PRIeldbl "e" /**/ 3043#define PERL_SCNfldbl "f" /**/ 3044 3045/* Off_t: 3046 * This symbol holds the type used to declare offsets in the kernel. 3047 * It can be int, long, off_t, etc... It may be necessary to include 3048 * <sys/types.h> to get any typedef'ed information. 3049 */ 3050/* LSEEKSIZE: 3051 * This symbol holds the number of bytes used by the Off_t. 3052 */ 3053/* Off_t_size: 3054 * This symbol holds the number of bytes used by the Off_t. 3055 */ 3056#define Off_t off_t /* <offset> type */ 3057#define LSEEKSIZE 8 /* <offset> size */ 3058#define Off_t_size 8 /* <offset> size */ 3059 3060/* Free_t: 3061 * This variable contains the return type of free(). It is usually 3062 * void, but occasionally int. 3063 */ 3064/* Malloc_t: 3065 * This symbol is the type of pointer returned by malloc and realloc. 3066 */ 3067#define Malloc_t void * /**/ 3068#define Free_t void /**/ 3069 3070/* MYMALLOC: 3071 * This symbol, if defined, indicates that we're using our own malloc. 3072 */ 3073#define MYMALLOC /**/ 3074 3075/* Mode_t: 3076 * This symbol holds the type used to declare file modes 3077 * for systems calls. It is usually mode_t, but may be 3078 * int or unsigned short. It may be necessary to include <sys/types.h> 3079 * to get any typedef'ed information. 3080 */ 3081#define Mode_t mode_t /* file mode parameter for system calls */ 3082 3083/* VAL_O_NONBLOCK: 3084 * This symbol is to be used during open() or fcntl(F_SETFL) to turn on 3085 * non-blocking I/O for the file descriptor. Note that there is no way 3086 * back, i.e. you cannot turn it blocking again this way. If you wish to 3087 * alternatively switch between blocking and non-blocking, use the 3088 * ioctl(FIOSNBIO) call instead, but that is not supported by all devices. 3089 */ 3090/* VAL_EAGAIN: 3091 * This symbol holds the errno error code set by read() when no data was 3092 * present on the non-blocking file descriptor. 3093 */ 3094/* RD_NODATA: 3095 * This symbol holds the return code from read() when no data is present 3096 * on the non-blocking file descriptor. Be careful! If EOF_NONBLOCK is 3097 * not defined, then you can't distinguish between no data and EOF by 3098 * issuing a read(). You'll have to find another way to tell for sure! 3099 */ 3100/* EOF_NONBLOCK: 3101 * This symbol, if defined, indicates to the C program that a read() on 3102 * a non-blocking file descriptor will return 0 on EOF, and not the value 3103 * held in RD_NODATA (-1 usually, in that case!). 3104 */ 3105#define VAL_O_NONBLOCK O_NONBLOCK 3106#define VAL_EAGAIN EAGAIN 3107#define RD_NODATA -1 3108#define EOF_NONBLOCK 3109 3110/* NEED_VA_COPY: 3111 * This symbol, if defined, indicates that the system stores 3112 * the variable argument list datatype, va_list, in a format 3113 * that cannot be copied by simple assignment, so that some 3114 * other means must be used when copying is required. 3115 * As such systems vary in their provision (or non-provision) 3116 * of copying mechanisms, handy.h defines a platform- 3117 * independent macro, Perl_va_copy(src, dst), to do the job. 3118 */ 3119/*#define NEED_VA_COPY / **/ 3120 3121/* Netdb_host_t: 3122 * This symbol holds the type used for the 1st argument 3123 * to gethostbyaddr(). 3124 */ 3125/* Netdb_hlen_t: 3126 * This symbol holds the type used for the 2nd argument 3127 * to gethostbyaddr(). 3128 */ 3129/* Netdb_name_t: 3130 * This symbol holds the type used for the argument to 3131 * gethostbyname(). 3132 */ 3133/* Netdb_net_t: 3134 * This symbol holds the type used for the 1st argument to 3135 * getnetbyaddr(). 3136 */ 3137#define Netdb_host_t char * /**/ 3138#define Netdb_hlen_t size_t /**/ 3139#define Netdb_name_t char * /**/ 3140#define Netdb_net_t long /**/ 3141 3142/* PERL_OTHERLIBDIRS: 3143 * This variable contains a colon-separated set of paths for the perl 3144 * binary to search for additional library files or modules. 3145 * These directories will be tacked to the end of @INC. 3146 * Perl will automatically search below each path for version- 3147 * and architecture-specific directories. See PERL_INC_VERSION_LIST 3148 * for more details. 3149 */ 3150/*#define PERL_OTHERLIBDIRS " " / **/ 3151 3152/* IVTYPE: 3153 * This symbol defines the C type used for Perl's IV. 3154 */ 3155/* UVTYPE: 3156 * This symbol defines the C type used for Perl's UV. 3157 */ 3158/* I8TYPE: 3159 * This symbol defines the C type used for Perl's I8. 3160 */ 3161/* U8TYPE: 3162 * This symbol defines the C type used for Perl's U8. 3163 */ 3164/* I16TYPE: 3165 * This symbol defines the C type used for Perl's I16. 3166 */ 3167/* U16TYPE: 3168 * This symbol defines the C type used for Perl's U16. 3169 */ 3170/* I32TYPE: 3171 * This symbol defines the C type used for Perl's I32. 3172 */ 3173/* U32TYPE: 3174 * This symbol defines the C type used for Perl's U32. 3175 */ 3176/* I64TYPE: 3177 * This symbol defines the C type used for Perl's I64. 3178 */ 3179/* U64TYPE: 3180 * This symbol defines the C type used for Perl's U64. 3181 */ 3182/* NVTYPE: 3183 * This symbol defines the C type used for Perl's NV. 3184 */ 3185/* IVSIZE: 3186 * This symbol contains the sizeof(IV). 3187 */ 3188/* UVSIZE: 3189 * This symbol contains the sizeof(UV). 3190 */ 3191/* I8SIZE: 3192 * This symbol contains the sizeof(I8). 3193 */ 3194/* U8SIZE: 3195 * This symbol contains the sizeof(U8). 3196 */ 3197/* I16SIZE: 3198 * This symbol contains the sizeof(I16). 3199 */ 3200/* U16SIZE: 3201 * This symbol contains the sizeof(U16). 3202 */ 3203/* I32SIZE: 3204 * This symbol contains the sizeof(I32). 3205 */ 3206/* U32SIZE: 3207 * This symbol contains the sizeof(U32). 3208 */ 3209/* I64SIZE: 3210 * This symbol contains the sizeof(I64). 3211 */ 3212/* U64SIZE: 3213 * This symbol contains the sizeof(U64). 3214 */ 3215/* NVSIZE: 3216 * This symbol contains the sizeof(NV). 3217 */ 3218/* NV_PRESERVES_UV: 3219 * This symbol, if defined, indicates that a variable of type NVTYPE 3220 * can preserve all the bits of a variable of type UVTYPE. 3221 */ 3222/* NV_PRESERVES_UV_BITS: 3223 * This symbol contains the number of bits a variable of type NVTYPE 3224 * can preserve of a variable of type UVTYPE. 3225 */ 3226#define IVTYPE long /**/ 3227#define UVTYPE unsigned long /**/ 3228#define I8TYPE char /**/ 3229#define U8TYPE unsigned char /**/ 3230#define I16TYPE short /**/ 3231#define U16TYPE unsigned short /**/ 3232#define I32TYPE long /**/ 3233#define U32TYPE unsigned long /**/ 3234#ifdef HAS_QUAD 3235#define I64TYPE long long /**/ 3236#define U64TYPE unsigned long long /**/ 3237#endif 3238#define NVTYPE double /**/ 3239#define IVSIZE 4 /**/ 3240#define UVSIZE 4 /**/ 3241#define I8SIZE 1 /**/ 3242#define U8SIZE 1 /**/ 3243#define I16SIZE 2 /**/ 3244#define U16SIZE 2 /**/ 3245#define I32SIZE 4 /**/ 3246#define U32SIZE 4 /**/ 3247#ifdef HAS_QUAD 3248#define I64SIZE 8 /**/ 3249#define U64SIZE 8 /**/ 3250#endif 3251#define NVSIZE 8 /**/ 3252#undef NV_PRESERVES_UV 3253#define NV_PRESERVES_UV_BITS 31 3254 3255/* IVdf: 3256 * This symbol defines the format string used for printing a Perl IV 3257 * as a signed decimal integer. 3258 */ 3259/* UVuf: 3260 * This symbol defines the format string used for printing a Perl UV 3261 * as an unsigned decimal integer. 3262 */ 3263/* UVof: 3264 * This symbol defines the format string used for printing a Perl UV 3265 * as an unsigned octal integer. 3266 */ 3267/* UVxf: 3268 * This symbol defines the format string used for printing a Perl UV 3269 * as an unsigned hexadecimal integer in lowercase abcdef. 3270 */ 3271/* UVXf: 3272 * This symbol defines the format string used for printing a Perl UV 3273 * as an unsigned hexadecimal integer in uppercase ABCDEF. 3274 */ 3275/* NVef: 3276 * This symbol defines the format string used for printing a Perl NV 3277 * using %e-ish floating point format. 3278 */ 3279/* NVff: 3280 * This symbol defines the format string used for printing a Perl NV 3281 * using %f-ish floating point format. 3282 */ 3283/* NVgf: 3284 * This symbol defines the format string used for printing a Perl NV 3285 * using %g-ish floating point format. 3286 */ 3287#define IVdf "ld" /**/ 3288#define UVuf "lu" /**/ 3289#define UVof "lo" /**/ 3290#define UVxf "lx" /**/ 3291#define UVXf "lX" /**/ 3292#define NVef "e" /**/ 3293#define NVff "f" /**/ 3294#define NVgf "g" /**/ 3295 3296/* Pid_t: 3297 * This symbol holds the type used to declare process ids in the kernel. 3298 * It can be int, uint, pid_t, etc... It may be necessary to include 3299 * <sys/types.h> to get any typedef'ed information. 3300 */ 3301#define Pid_t pid_t /* PID type */ 3302 3303/* PRIVLIB: 3304 * This symbol contains the name of the private library for this package. 3305 * The library is private in the sense that it needn't be in anyone's 3306 * execution path, but it should be accessible by the world. The program 3307 * should be prepared to do ~ expansion. 3308 */ 3309/* PRIVLIB_EXP: 3310 * This symbol contains the ~name expanded version of PRIVLIB, to be used 3311 * in programs that are not prepared to deal with ~ expansion at run-time. 3312 */ 3313#define PRIVLIB "/sys/lib/perl/5.8.0" /**/ 3314#define PRIVLIB_EXP "/sys/lib/perl/5.8.0" /**/ 3315 3316/* PTRSIZE: 3317 * This symbol contains the size of a pointer, so that the C preprocessor 3318 * can make decisions based on it. It will be sizeof(void *) if 3319 * the compiler supports (void *); otherwise it will be 3320 * sizeof(char *). 3321 */ 3322#define PTRSIZE 4 /**/ 3323 3324/* Drand01: 3325 * This macro is to be used to generate uniformly distributed 3326 * random numbers over the range [0., 1.[. You may have to supply 3327 * an 'extern double drand48();' in your program since SunOS 4.1.3 3328 * doesn't provide you with anything relevant in its headers. 3329 * See HAS_DRAND48_PROTO. 3330 */ 3331/* Rand_seed_t: 3332 * This symbol defines the type of the argument of the 3333 * random seed function. 3334 */ 3335/* seedDrand01: 3336 * This symbol defines the macro to be used in seeding the 3337 * random number generator (see Drand01). 3338 */ 3339/* RANDBITS: 3340 * This symbol indicates how many bits are produced by the 3341 * function used to generate normalized random numbers. 3342 * Values include 15, 16, 31, and 48. 3343 */ 3344#define Drand01() (rand() / (double) ((unsigned long)1 << 15)) /**/ 3345#define Rand_seed_t unsigned /**/ 3346#define seedDrand01(x) srand((Rand_seed_t)x) /**/ 3347#define RANDBITS 15 /**/ 3348 3349/* SELECT_MIN_BITS: 3350 * This symbol holds the minimum number of bits operated by select. 3351 * That is, if you do select(n, ...), how many bits at least will be 3352 * cleared in the masks if some activity is detected. Usually this 3353 * is either n or 32*ceil(n/32), especially many little-endians do 3354 * the latter. This is only useful if you have select(), naturally. 3355 */ 3356#define SELECT_MIN_BITS 32 /**/ 3357 3358/* Select_fd_set_t: 3359 * This symbol holds the type used for the 2nd, 3rd, and 4th 3360 * arguments to select. Usually, this is 'fd_set *', if HAS_FD_SET 3361 * is defined, and 'int *' otherwise. This is only useful if you 3362 * have select(), of course. 3363 */ 3364#define Select_fd_set_t fd_set* /**/ 3365 3366/* SIG_NAME: 3367 * This symbol contains a list of signal names in order of 3368 * signal number. This is intended 3369 * to be used as a static array initialization, like this: 3370 * char *sig_name[] = { SIG_NAME }; 3371 * The signals in the list are separated with commas, and each signal 3372 * is surrounded by double quotes. There is no leading SIG in the signal 3373 * name, i.e. SIGQUIT is known as "QUIT". 3374 * Gaps in the signal numbers (up to NSIG) are filled in with NUMnn, 3375 * etc., where nn is the actual signal number (e.g. NUM37). 3376 * The signal number for sig_name[i] is stored in sig_num[i]. 3377 * The last element is 0 to terminate the list with a NULL. This 3378 * corresponds to the 0 at the end of the sig_num list. 3379 */ 3380/* SIG_NUM: 3381 * This symbol contains a list of signal numbers, in the same order as the 3382 * SIG_NAME list. It is suitable for static array initialization, as in: 3383 * int sig_num[] = { SIG_NUM }; 3384 * The signals in the list are separated with commas, and the indices 3385 * within that list and the SIG_NAME list match, so it's easy to compute 3386 * the signal name from a number or vice versa at the price of a small 3387 * dynamic linear lookup. 3388 * Duplicates are allowed, but are moved to the end of the list. 3389 * The signal number corresponding to sig_name[i] is sig_number[i]. 3390 * if (i < NSIG) then sig_number[i] == i. 3391 * The last element is 0, corresponding to the 0 at the end of 3392 * the sig_name list. 3393 */ 3394/* SIG_SIZE: 3395 * This variable contains the number of elements of the SIG_NAME 3396 * and SIG_NUM arrays, excluding the final NULL entry. 3397 */ 3398#define SIG_NAME "ZERO", "HUP", "INT", "QUIT", "ILL", "ABRT", "FPE", "KILL", "SEGV", "PIPE", "ALRM", "TERM", "USR1", "USR2", "BUS", "CHLD", "CONT", "STOP", "TSTP", "TTIN", "TTOU", "NUM21", "NUM22", "NUM23", "NUM24", "NUM25", "NUM26", "NUM27", "NUM28", "NUM29", "NUM30", "NUM31", "NUM32", "NUM33", "NUM34", "NUM35", "NUM36", "NUM37", "NUM38", "NUM39", "NUM40", "NUM41", "NUM42", "NUM43", "NUM44", "NUM45", "NUM46", "NUM47", "NUM48", "NUM49", 0 /**/ 3399#define SIG_NUM 0, 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, 0 /**/ 3400#define SIG_SIZE 50 /**/ 3401 3402/* SITEARCH: 3403 * This symbol contains the name of the private library for this package. 3404 * The library is private in the sense that it needn't be in anyone's 3405 * execution path, but it should be accessible by the world. The program 3406 * should be prepared to do ~ expansion. 3407 * The standard distribution will put nothing in this directory. 3408 * After perl has been installed, users may install their own local 3409 * architecture-dependent modules in this directory with 3410 * MakeMaker Makefile.PL 3411 * or equivalent. See INSTALL for details. 3412 */ 3413/* SITEARCH_EXP: 3414 * This symbol contains the ~name expanded version of SITEARCH, to be used 3415 * in programs that are not prepared to deal with ~ expansion at run-time. 3416 */ 3417#define SITEARCH "/sys/lib/perl/5.8.0/site_perl/386" /**/ 3418#define SITEARCH_EXP "/sys/lib/perl/site_perl/386" /**/ 3419 3420/* SITELIB: 3421 * This symbol contains the name of the private library for this package. 3422 * The library is private in the sense that it needn't be in anyone's 3423 * execution path, but it should be accessible by the world. The program 3424 * should be prepared to do ~ expansion. 3425 * The standard distribution will put nothing in this directory. 3426 * After perl has been installed, users may install their own local 3427 * architecture-independent modules in this directory with 3428 * MakeMaker Makefile.PL 3429 * or equivalent. See INSTALL for details. 3430 */ 3431/* SITELIB_EXP: 3432 * This symbol contains the ~name expanded version of SITELIB, to be used 3433 * in programs that are not prepared to deal with ~ expansion at run-time. 3434 */ 3435/* SITELIB_STEM: 3436 * This define is SITELIB_EXP with any trailing version-specific component 3437 * removed. The elements in inc_version_list (inc_version_list.U) can 3438 * be tacked onto this variable to generate a list of directories to search. 3439 */ 3440#define SITELIB "/sys/lib/perl/5.8.0/site_perl" /**/ 3441#define SITELIB_EXP "/sys/lib/perl/5.8.0/site_perl" /**/ 3442#define SITELIB_STEM "/sys/lib/perl/5.8.0/site_perl" /**/ 3443 3444/* Size_t_size: 3445 * This symbol holds the size of a Size_t in bytes. 3446 */ 3447#define Size_t_size 4 /* */ 3448 3449/* Size_t: 3450 * This symbol holds the type used to declare length parameters 3451 * for string functions. It is usually size_t, but may be 3452 * unsigned long, int, etc. It may be necessary to include 3453 * <sys/types.h> to get any typedef'ed information. 3454 */ 3455#define Size_t size_t /* length paramater for string functions */ 3456 3457/* Sock_size_t: 3458 * This symbol holds the type used for the size argument of 3459 * various socket calls (just the base type, not the pointer-to). 3460 */ 3461#define Sock_size_t int /**/ 3462 3463/* SSize_t: 3464 * This symbol holds the type used by functions that return 3465 * a count of bytes or an error condition. It must be a signed type. 3466 * It is usually ssize_t, but may be long or int, etc. 3467 * It may be necessary to include <sys/types.h> or <unistd.h> 3468 * to get any typedef'ed information. 3469 * We will pick a type such that sizeof(SSize_t) == sizeof(Size_t). 3470 */ 3471#define SSize_t ssize_t /* signed count of bytes */ 3472 3473/* STARTPERL: 3474 * This variable contains the string to put in front of a perl 3475 * script to make sure (one hopes) that it runs with perl and not 3476 * some shell. 3477 */ 3478#define STARTPERL "#!/bin/perl" /**/ 3479 3480/* STDCHAR: 3481 * This symbol is defined to be the type of char used in stdio.h. 3482 * It has the values "unsigned char" or "char". 3483 */ 3484#define STDCHAR char /**/ 3485 3486/* HAS_STDIO_STREAM_ARRAY: 3487 * This symbol, if defined, tells that there is an array 3488 * holding the stdio streams. 3489 */ 3490/* STDIO_STREAM_ARRAY: 3491 * This symbol tells the name of the array holding the stdio streams. 3492 * Usual values include _iob, __iob, and __sF. 3493 */ 3494/*#define HAS_STDIO_STREAM_ARRAY / **/ 3495#define STDIO_STREAM_ARRAY 3496 3497/* Uid_t_f: 3498 * This symbol defines the format string used for printing a Uid_t. 3499 */ 3500#define Uid_t_f "hd" /**/ 3501 3502/* Uid_t_sign: 3503 * This symbol holds the signedess of a Uid_t. 3504 * 1 for unsigned, -1 for signed. 3505 */ 3506#define Uid_t_sign -1 /* UID sign */ 3507 3508/* Uid_t_size: 3509 * This symbol holds the size of a Uid_t in bytes. 3510 */ 3511#define Uid_t_size 2 /* UID size */ 3512 3513/* Uid_t: 3514 * This symbol holds the type used to declare user ids in the kernel. 3515 * It can be int, ushort, uid_t, etc... It may be necessary to include 3516 * <sys/types.h> to get any typedef'ed information. 3517 */ 3518#define Uid_t uid_t /* UID type */ 3519 3520/* USE_64_BIT_INT: 3521 * This symbol, if defined, indicates that 64-bit integers should 3522 * be used when available. If not defined, the native integers 3523 * will be employed (be they 32 or 64 bits). The minimal possible 3524 * 64-bitness is used, just enough to get 64-bit integers into Perl. 3525 * This may mean using for example "long longs", while your memory 3526 * may still be limited to 2 gigabytes. 3527 */ 3528/* USE_64_BIT_ALL: 3529 * This symbol, if defined, indicates that 64-bit integers should 3530 * be used when available. If not defined, the native integers 3531 * will be used (be they 32 or 64 bits). The maximal possible 3532 * 64-bitness is employed: LP64 or ILP64, meaning that you will 3533 * be able to use more than 2 gigabytes of memory. This mode is 3534 * even more binary incompatible than USE_64_BIT_INT. You may not 3535 * be able to run the resulting executable in a 32-bit CPU at all or 3536 * you may need at least to reboot your OS to 64-bit mode. 3537 */ 3538#ifndef USE_64_BIT_INT 3539/*#define USE_64_BIT_INT / **/ 3540#endif 3541 3542#ifndef USE_64_BIT_ALL 3543/*#define USE_64_BIT_ALL / **/ 3544#endif 3545 3546/* USE_FAST_STDIO: 3547 * This symbol, if defined, indicates that Perl should 3548 * be built to use 'fast stdio'. 3549 * Defaults to define in Perls 5.8 and earlier, to undef later. 3550 */ 3551#ifndef USE_FAST_STDIO 3552/*#define USE_FAST_STDIO / **/ 3553#endif 3554 3555/* USE_LARGE_FILES: 3556 * This symbol, if defined, indicates that large file support 3557 * should be used when available. 3558 */ 3559#ifndef USE_LARGE_FILES 3560#define USE_LARGE_FILES /**/ 3561#endif 3562 3563/* USE_LONG_DOUBLE: 3564 * This symbol, if defined, indicates that long doubles should 3565 * be used when available. 3566 */ 3567#ifndef USE_LONG_DOUBLE 3568/*#define USE_LONG_DOUBLE / **/ 3569#endif 3570 3571/* USE_MORE_BITS: 3572 * This symbol, if defined, indicates that 64-bit interfaces and 3573 * long doubles should be used when available. 3574 */ 3575#ifndef USE_MORE_BITS 3576/*#define USE_MORE_BITS / **/ 3577#endif 3578 3579/* MULTIPLICITY: 3580 * This symbol, if defined, indicates that Perl should 3581 * be built to use multiplicity. 3582 */ 3583#ifndef MULTIPLICITY 3584/*#define MULTIPLICITY / **/ 3585#endif 3586 3587/* USE_PERLIO: 3588 * This symbol, if defined, indicates that the PerlIO abstraction should 3589 * be used throughout. If not defined, stdio should be 3590 * used in a fully backward compatible manner. 3591 */ 3592#ifndef USE_PERLIO 3593#define USE_PERLIO /**/ 3594#endif 3595 3596/* USE_SOCKS: 3597 * This symbol, if defined, indicates that Perl should 3598 * be built to use socks. 3599 */ 3600#ifndef USE_SOCKS 3601/*#define USE_SOCKS / **/ 3602#endif 3603 3604/* USE_ITHREADS: 3605 * This symbol, if defined, indicates that Perl should be built to 3606 * use the interpreter-based threading implementation. 3607 */ 3608/* USE_5005THREADS: 3609 * This symbol, if defined, indicates that Perl should be built to 3610 * use the 5.005-based threading implementation. 3611 */ 3612/* OLD_PTHREADS_API: 3613 * This symbol, if defined, indicates that Perl should 3614 * be built to use the old draft POSIX threads API. 3615 */ 3616/* USE_REENTRANT_API: 3617 * This symbol, if defined, indicates that Perl should 3618 * try to use the various _r versions of library functions. 3619 * This is extremely experimental. 3620 */ 3621/*#define USE_5005THREADS / **/ 3622/*#define USE_ITHREADS / **/ 3623#if defined(USE_5005THREADS) && !defined(USE_ITHREADS) 3624#define USE_THREADS /* until src is revised*/ 3625#endif 3626/*#define OLD_PTHREADS_API / **/ 3627/*#define USE_REENTRANT_API / **/ 3628 3629/* PERL_VENDORARCH: 3630 * If defined, this symbol contains the name of a private library. 3631 * The library is private in the sense that it needn't be in anyone's 3632 * execution path, but it should be accessible by the world. 3633 * It may have a ~ on the front. 3634 * The standard distribution will put nothing in this directory. 3635 * Vendors who distribute perl may wish to place their own 3636 * architecture-dependent modules and extensions in this directory with 3637 * MakeMaker Makefile.PL INSTALLDIRS=vendor 3638 * or equivalent. See INSTALL for details. 3639 */ 3640/* PERL_VENDORARCH_EXP: 3641 * This symbol contains the ~name expanded version of PERL_VENDORARCH, to be used 3642 * in programs that are not prepared to deal with ~ expansion at run-time. 3643 */ 3644/*#define PERL_VENDORARCH "" / **/ 3645/*#define PERL_VENDORARCH_EXP "" / **/ 3646 3647/* PERL_VENDORLIB_EXP: 3648 * This symbol contains the ~name expanded version of VENDORLIB, to be used 3649 * in programs that are not prepared to deal with ~ expansion at run-time. 3650 */ 3651/* PERL_VENDORLIB_STEM: 3652 * This define is PERL_VENDORLIB_EXP with any trailing version-specific component 3653 * removed. The elements in inc_version_list (inc_version_list.U) can 3654 * be tacked onto this variable to generate a list of directories to search. 3655 */ 3656/*#define PERL_VENDORLIB_EXP "" / **/ 3657/*#define PERL_VENDORLIB_STEM "" / **/ 3658 3659/* VOIDFLAGS: 3660 * This symbol indicates how much support of the void type is given by this 3661 * compiler. What various bits mean: 3662 * 3663 * 1 = supports declaration of void 3664 * 2 = supports arrays of pointers to functions returning void 3665 * 4 = supports comparisons between pointers to void functions and 3666 * addresses of void functions 3667 * 8 = suports declaration of generic void pointers 3668 * 3669 * The package designer should define VOIDUSED to indicate the requirements 3670 * of the package. This can be done either by #defining VOIDUSED before 3671 * including config.h, or by defining defvoidused in Myinit.U. If the 3672 * latter approach is taken, only those flags will be tested. If the 3673 * level of void support necessary is not present, defines void to int. 3674 */ 3675#ifndef VOIDUSED 3676#define VOIDUSED 15 3677#endif 3678#define VOIDFLAGS 15 3679#if (VOIDFLAGS & VOIDUSED) != VOIDUSED 3680#define void int /* is void to be avoided? */ 3681#define M_VOID /* Xenix strikes again */ 3682#endif 3683 3684/* HAS_CRYPT: 3685 * This symbol, if defined, indicates that the crypt routine is available 3686 * to encrypt passwords and the like. 3687 */ 3688/*#define HAS_CRYPT / **/ 3689 3690/* SETUID_SCRIPTS_ARE_SECURE_NOW: 3691 * This symbol, if defined, indicates that the bug that prevents 3692 * setuid scripts from being secure is not present in this kernel. 3693 */ 3694/* DOSUID: 3695 * This symbol, if defined, indicates that the C program should 3696 * check the script that it is executing for setuid/setgid bits, and 3697 * attempt to emulate setuid/setgid on systems that have disabled 3698 * setuid #! scripts because the kernel can't do it securely. 3699 * It is up to the package designer to make sure that this emulation 3700 * is done securely. Among other things, it should do an fstat on 3701 * the script it just opened to make sure it really is a setuid/setgid 3702 * script, it should make sure the arguments passed correspond exactly 3703 * to the argument on the #! line, and it should not trust any 3704 * subprocesses to which it must pass the filename rather than the 3705 * file descriptor of the script to be executed. 3706 */ 3707/*#define SETUID_SCRIPTS_ARE_SECURE_NOW / **/ 3708/*#define DOSUID / **/ 3709 3710/* Shmat_t: 3711 * This symbol holds the return type of the shmat() system call. 3712 * Usually set to 'void *' or 'char *'. 3713 */ 3714/* HAS_SHMAT_PROTOTYPE: 3715 * This symbol, if defined, indicates that the sys/shm.h includes 3716 * a prototype for shmat(). Otherwise, it is up to the program to 3717 * guess one. Shmat_t shmat(int, Shmat_t, int) is a good guess, 3718 * but not always right so it should be emitted by the program only 3719 * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs. 3720 */ 3721#define Shmat_t /**/ 3722/*#define HAS_SHMAT_PROTOTYPE / **/ 3723 3724/* I_NDBM: 3725 * This symbol, if defined, indicates that <ndbm.h> exists and should 3726 * be included. 3727 */ 3728/*#define I_NDBM / **/ 3729 3730/* I_STDARG: 3731 * This symbol, if defined, indicates that <stdarg.h> exists and should 3732 * be included. 3733 */ 3734/* I_VARARGS: 3735 * This symbol, if defined, indicates to the C program that it should 3736 * include <varargs.h>. 3737 */ 3738#define I_STDARG /**/ 3739/*#define I_VARARGS / **/ 3740 3741/* CAN_PROTOTYPE: 3742 * If defined, this macro indicates that the C compiler can handle 3743 * function prototypes. 3744 */ 3745/* _: 3746 * This macro is used to declare function parameters for folks who want 3747 * to make declarations with prototypes using a different style than 3748 * the above macros. Use double parentheses. For example: 3749 * 3750 * int main _((int argc, char *argv[])); 3751 */ 3752#define CAN_PROTOTYPE /**/ 3753#ifdef CAN_PROTOTYPE 3754#define _(args) args 3755#else 3756#define _(args) () 3757#endif 3758 3759/* SH_PATH: 3760 * This symbol contains the full pathname to the shell used on this 3761 * on this system to execute Bourne shell scripts. Usually, this will be 3762 * /bin/sh, though it's possible that some systems will have /bin/ksh, 3763 * /bin/pdksh, /bin/ash, /bin/bash, or even something such as 3764 * D:/bin/sh.exe. 3765 */ 3766#define SH_PATH "/bin/sh" /**/ 3767 3768/* USE_CROSS_COMPILE: 3769 * This symbol, if defined, indicates that Perl is being cross-compiled. 3770 */ 3771/* PERL_TARGETARCH: 3772 * This symbol, if defined, indicates the target architecture 3773 * Perl has been cross-compiled to. Undefined if not a cross-compile. 3774 */ 3775#ifndef USE_CROSS_COMPILE 3776/*#define USE_CROSS_COMPILE / **/ 3777#define PERL_TARGETARCH "" /**/ 3778#endif 3779 3780/* HAS_COPYSIGNL: 3781 * This symbol, if defined, indicates that the copysignl routine is 3782 * available. If aintl is also present we can emulate modfl. 3783 */ 3784/*#define HAS_COPYSIGNL /**/ 3785 3786/* USE_CPLUSPLUS: 3787 * This symbol, if defined, indicates that a C++ compiler was 3788 * used to compiled Perl and will be used to compile extensions. 3789 */ 3790/*#define USE_CPLUSPLUS /**/ 3791 3792/* HAS_DBMINIT_PROTO: 3793 * This symbol, if defined, indicates that the system provides 3794 * a prototype for the dbminit() function. Otherwise, it is up 3795 * to the program to supply one. A good guess is 3796 * extern int dbminit(char *); 3797 */ 3798/*#define HAS_DBMINIT_PROTO / **/ 3799 3800/* HAS_DIRFD: 3801 * This manifest constant lets the C program know that dirfd 3802 * is available. 3803 */ 3804/*#define HAS_DIRFD / **/ 3805 3806/* HAS_FLOCK_PROTO: 3807 * This symbol, if defined, indicates that the system provides 3808 * a prototype for the flock() function. Otherwise, it is up 3809 * to the program to supply one. A good guess is 3810 * extern int flock(int, int); 3811 */ 3812/*#define HAS_FLOCK_PROTO / **/ 3813 3814/* HAS_FPCLASSL: 3815 * This symbol, if defined, indicates that the fpclassl routine is 3816 * available to classify long doubles. Available for example in IRIX. 3817 * The returned values are defined in <ieeefp.h> and are: 3818 * 3819 * FP_SNAN signaling NaN 3820 * FP_QNAN quiet NaN 3821 * FP_NINF negative infinity 3822 * FP_PINF positive infinity 3823 * FP_NDENORM negative denormalized non-zero 3824 * FP_PDENORM positive denormalized non-zero 3825 * FP_NZERO negative zero 3826 * FP_PZERO positive zero 3827 * FP_NNORM negative normalized non-zero 3828 * FP_PNORM positive normalized non-zero 3829 */ 3830/*#define HAS_FPCLASSL / **/ 3831 3832/* HAS_NL_LANGINFO: 3833 * This symbol, if defined, indicates that the nl_langinfo routine is 3834 * available to return local data. You will also need <langinfo.h> 3835 * and therefore I_LANGINFO. 3836 */ 3837/*#define HAS_NL_LANGINFO / **/ 3838 3839/* HAS_PROCSELFEXE: 3840 * This symbol is defined if PROCSELFEXE_PATH is a symlink 3841 * to the absolute pathname of the executing program. 3842 */ 3843/* PROCSELFEXE_PATH: 3844 * If HAS_PROCSELFEXE is defined this symbol is the filename 3845 * of the symbolic link pointing to the absolute pathname of 3846 * the executing program. 3847 */ 3848/*#define HAS_PROCSELFEXE / **/ 3849#if defined(HAS_PROCSELFEXE) && !defined(PROCSELFEXE_PATH) 3850#define PROCSELFEXE_PATH /**/ 3851#endif 3852 3853/* HAS_PTHREAD_ATTR_SETSCOPE: 3854 * This symbol, if defined, indicates that the pthread_attr_setscope 3855 * system call is available to set the contention scope attribute of 3856 * a thread attribute object. 3857 */ 3858/*#define HAS_PTHREAD_ATTR_SETSCOPE / **/ 3859 3860/* HAS_SIGPROCMASK: 3861 * This symbol, if defined, indicates that the sigprocmask 3862 * system call is available to examine or change the signal mask 3863 * of the calling process. 3864 */ 3865#define HAS_SIGPROCMASK /**/ 3866 3867/* HAS_SOCKATMARK: 3868 * This symbol, if defined, indicates that the sockatmark routine is 3869 * available to test whether a socket is at the out-of-band mark. 3870 */ 3871/*#define HAS_SOCKATMARK / **/ 3872 3873/* HAS_SOCKATMARK_PROTO: 3874 * This symbol, if defined, indicates that the system provides 3875 * a prototype for the sockatmark() function. Otherwise, it is up 3876 * to the program to supply one. A good guess is 3877 * extern int sockatmark(int); 3878 */ 3879/*#define HAS_SOCKATMARK_PROTO / **/ 3880 3881/* HAS_SETRESGID_PROTO: 3882 * This symbol, if defined, indicates that the system provides 3883 * a prototype for the setresgid() function. Otherwise, it is up 3884 * to the program to supply one. Good guesses are 3885 * extern int setresgid(uid_t ruid, uid_t euid, uid_t suid); 3886 */ 3887/*#define HAS_SETRESGID_PROTO / **/ 3888 3889/* HAS_SETRESUID_PROTO: 3890 * This symbol, if defined, indicates that the system provides 3891 * a prototype for the setresuid() function. Otherwise, it is up 3892 * to the program to supply one. Good guesses are 3893 * extern int setresuid(uid_t ruid, uid_t euid, uid_t suid); 3894 */ 3895/*#define HAS_SETRESUID_PROTO / **/ 3896 3897/* HAS_STRFTIME: 3898 * This symbol, if defined, indicates that the strftime routine is 3899 * available to do time formatting. 3900 */ 3901#define HAS_STRFTIME /**/ 3902 3903/* HAS_STRLCAT 3904 * This symbol, if defined, indicates that the strlcat routine is 3905 * available to do string concatenation. 3906 */ 3907/*#define HAS_STRLCAT /**/ 3908 3909/* HAS_STRLCPY: 3910 * This symbol, if defined, indicates that the strlcpy routine is 3911 * available to do string copying. 3912 */ 3913/*#define HAS_STRLCPY /**/ 3914 3915/* HAS_SYSCALL_PROTO: 3916 * This symbol, if defined, indicates that the system provides 3917 * a prototype for the syscall() function. Otherwise, it is up 3918 * to the program to supply one. Good guesses are 3919 * extern int syscall(int, ...); 3920 * extern int syscall(long, ...); 3921 */ 3922/*#define HAS_SYSCALL_PROTO / **/ 3923 3924/* U32_ALIGNMENT_REQUIRED: 3925 * This symbol, if defined, indicates that you must access 3926 * character data through U32-aligned pointers. 3927 */ 3928#ifndef U32_ALIGNMENT_REQUIRED 3929#define U32_ALIGNMENT_REQUIRED /**/ 3930#endif 3931 3932/* HAS_USLEEP_PROTO: 3933 * This symbol, if defined, indicates that the system provides 3934 * a prototype for the usleep() function. Otherwise, it is up 3935 * to the program to supply one. A good guess is 3936 * extern int usleep(useconds_t); 3937 */ 3938/*#define HAS_USLEEP_PROTO / **/ 3939 3940/* I_CRYPT: 3941 * This symbol, if defined, indicates that <crypt.h> exists and 3942 * should be included. 3943 */ 3944/*#define I_CRYPT / **/ 3945 3946/* I_FP: 3947 * This symbol, if defined, indicates that <fp.h> exists and 3948 * should be included. 3949 */ 3950/*#define I_FP / **/ 3951 3952/* I_LANGINFO: 3953 * This symbol, if defined, indicates that <langinfo.h> exists and 3954 * should be included. 3955 */ 3956/*#define I_LANGINFO / **/ 3957 3958/* HAS_CTERMID_R: 3959 * This symbol, if defined, indicates that the ctermid_r routine 3960 * is available to ctermid re-entrantly. 3961 */ 3962/* CTERMID_R_PROTO: 3963 * This symbol encodes the prototype of ctermid_r. 3964 * It is zero if d_ctermid_r is undef, and one of the 3965 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ctermid_r 3966 * is defined. 3967 */ 3968/*#define HAS_CTERMID_R / **/ 3969#define CTERMID_R_PROTO 0 /**/ 3970 3971/* HAS_ENDHOSTENT_R: 3972 * This symbol, if defined, indicates that the endhostent_r routine 3973 * is available to endhostent re-entrantly. 3974 */ 3975/* ENDHOSTENT_R_PROTO: 3976 * This symbol encodes the prototype of endhostent_r. 3977 * It is zero if d_endhostent_r is undef, and one of the 3978 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endhostent_r 3979 * is defined. 3980 */ 3981/*#define HAS_ENDHOSTENT_R / **/ 3982#define ENDHOSTENT_R_PROTO 0 /**/ 3983 3984/* HAS_ENDNETENT_R: 3985 * This symbol, if defined, indicates that the endnetent_r routine 3986 * is available to endnetent re-entrantly. 3987 */ 3988/* ENDNETENT_R_PROTO: 3989 * This symbol encodes the prototype of endnetent_r. 3990 * It is zero if d_endnetent_r is undef, and one of the 3991 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endnetent_r 3992 * is defined. 3993 */ 3994/*#define HAS_ENDNETENT_R / **/ 3995#define ENDNETENT_R_PROTO 0 /**/ 3996 3997/* HAS_ENDPROTOENT_R: 3998 * This symbol, if defined, indicates that the endprotoent_r routine 3999 * is available to endprotoent re-entrantly. 4000 */ 4001/* ENDPROTOENT_R_PROTO: 4002 * This symbol encodes the prototype of endprotoent_r. 4003 * It is zero if d_endprotoent_r is undef, and one of the 4004 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endprotoent_r 4005 * is defined. 4006 */ 4007/*#define HAS_ENDPROTOENT_R / **/ 4008#define ENDPROTOENT_R_PROTO 0 /**/ 4009 4010/* HAS_ENDSERVENT_R: 4011 * This symbol, if defined, indicates that the endservent_r routine 4012 * is available to endservent re-entrantly. 4013 */ 4014/* ENDSERVENT_R_PROTO: 4015 * This symbol encodes the prototype of endservent_r. 4016 * It is zero if d_endservent_r is undef, and one of the 4017 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_endservent_r 4018 * is defined. 4019 */ 4020/*#define HAS_ENDSERVENT_R / **/ 4021#define ENDSERVENT_R_PROTO 0 /**/ 4022 4023/* HAS_GETHOSTBYADDR_R: 4024 * This symbol, if defined, indicates that the gethostbyaddr_r routine 4025 * is available to gethostbyaddr re-entrantly. 4026 */ 4027/* GETHOSTBYADDR_R_PROTO: 4028 * This symbol encodes the prototype of gethostbyaddr_r. 4029 * It is zero if d_gethostbyaddr_r is undef, and one of the 4030 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyaddr_r 4031 * is defined. 4032 */ 4033/*#define HAS_GETHOSTBYADDR_R / **/ 4034#define GETHOSTBYADDR_R_PROTO 0 /**/ 4035 4036/* HAS_GETHOSTBYNAME_R: 4037 * This symbol, if defined, indicates that the gethostbyname_r routine 4038 * is available to gethostbyname re-entrantly. 4039 */ 4040/* GETHOSTBYNAME_R_PROTO: 4041 * This symbol encodes the prototype of gethostbyname_r. 4042 * It is zero if d_gethostbyname_r is undef, and one of the 4043 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostbyname_r 4044 * is defined. 4045 */ 4046/*#define HAS_GETHOSTBYNAME_R / **/ 4047#define GETHOSTBYNAME_R_PROTO 0 /**/ 4048 4049/* HAS_GETHOSTENT_R: 4050 * This symbol, if defined, indicates that the gethostent_r routine 4051 * is available to gethostent re-entrantly. 4052 */ 4053/* GETHOSTENT_R_PROTO: 4054 * This symbol encodes the prototype of gethostent_r. 4055 * It is zero if d_gethostent_r is undef, and one of the 4056 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_gethostent_r 4057 * is defined. 4058 */ 4059/*#define HAS_GETHOSTENT_R / **/ 4060#define GETHOSTENT_R_PROTO 0 /**/ 4061 4062/* HAS_GETNETBYADDR_R: 4063 * This symbol, if defined, indicates that the getnetbyaddr_r routine 4064 * is available to getnetbyaddr re-entrantly. 4065 */ 4066/* GETNETBYADDR_R_PROTO: 4067 * This symbol encodes the prototype of getnetbyaddr_r. 4068 * It is zero if d_getnetbyaddr_r is undef, and one of the 4069 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyaddr_r 4070 * is defined. 4071 */ 4072/*#define HAS_GETNETBYADDR_R / **/ 4073#define GETNETBYADDR_R_PROTO 0 /**/ 4074 4075/* HAS_GETNETBYNAME_R: 4076 * This symbol, if defined, indicates that the getnetbyname_r routine 4077 * is available to getnetbyname re-entrantly. 4078 */ 4079/* GETNETBYNAME_R_PROTO: 4080 * This symbol encodes the prototype of getnetbyname_r. 4081 * It is zero if d_getnetbyname_r is undef, and one of the 4082 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetbyname_r 4083 * is defined. 4084 */ 4085/*#define HAS_GETNETBYNAME_R / **/ 4086#define GETNETBYNAME_R_PROTO 0 /**/ 4087 4088/* HAS_GETNETENT_R: 4089 * This symbol, if defined, indicates that the getnetent_r routine 4090 * is available to getnetent re-entrantly. 4091 */ 4092/* GETNETENT_R_PROTO: 4093 * This symbol encodes the prototype of getnetent_r. 4094 * It is zero if d_getnetent_r is undef, and one of the 4095 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getnetent_r 4096 * is defined. 4097 */ 4098/*#define HAS_GETNETENT_R / **/ 4099#define GETNETENT_R_PROTO 0 /**/ 4100 4101/* HAS_GETPROTOBYNAME_R: 4102 * This symbol, if defined, indicates that the getprotobyname_r routine 4103 * is available to getprotobyname re-entrantly. 4104 */ 4105/* GETPROTOBYNAME_R_PROTO: 4106 * This symbol encodes the prototype of getprotobyname_r. 4107 * It is zero if d_getprotobyname_r is undef, and one of the 4108 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobyname_r 4109 * is defined. 4110 */ 4111/*#define HAS_GETPROTOBYNAME_R / **/ 4112#define GETPROTOBYNAME_R_PROTO 0 /**/ 4113 4114/* HAS_GETPROTOBYNUMBER_R: 4115 * This symbol, if defined, indicates that the getprotobynumber_r routine 4116 * is available to getprotobynumber re-entrantly. 4117 */ 4118/* GETPROTOBYNUMBER_R_PROTO: 4119 * This symbol encodes the prototype of getprotobynumber_r. 4120 * It is zero if d_getprotobynumber_r is undef, and one of the 4121 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotobynumber_r 4122 * is defined. 4123 */ 4124/*#define HAS_GETPROTOBYNUMBER_R / **/ 4125#define GETPROTOBYNUMBER_R_PROTO 0 /**/ 4126 4127/* HAS_GETPROTOENT_R: 4128 * This symbol, if defined, indicates that the getprotoent_r routine 4129 * is available to getprotoent re-entrantly. 4130 */ 4131/* GETPROTOENT_R_PROTO: 4132 * This symbol encodes the prototype of getprotoent_r. 4133 * It is zero if d_getprotoent_r is undef, and one of the 4134 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getprotoent_r 4135 * is defined. 4136 */ 4137/*#define HAS_GETPROTOENT_R / **/ 4138#define GETPROTOENT_R_PROTO 0 /**/ 4139 4140/* HAS_GETSERVBYNAME_R: 4141 * This symbol, if defined, indicates that the getservbyname_r routine 4142 * is available to getservbyname re-entrantly. 4143 */ 4144/* GETSERVBYNAME_R_PROTO: 4145 * This symbol encodes the prototype of getservbyname_r. 4146 * It is zero if d_getservbyname_r is undef, and one of the 4147 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyname_r 4148 * is defined. 4149 */ 4150/*#define HAS_GETSERVBYNAME_R / **/ 4151#define GETSERVBYNAME_R_PROTO 0 /**/ 4152 4153/* HAS_GETSERVBYPORT_R: 4154 * This symbol, if defined, indicates that the getservbyport_r routine 4155 * is available to getservbyport re-entrantly. 4156 */ 4157/* GETSERVBYPORT_R_PROTO: 4158 * This symbol encodes the prototype of getservbyport_r. 4159 * It is zero if d_getservbyport_r is undef, and one of the 4160 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservbyport_r 4161 * is defined. 4162 */ 4163/*#define HAS_GETSERVBYPORT_R / **/ 4164#define GETSERVBYPORT_R_PROTO 0 /**/ 4165 4166/* HAS_GETSERVENT_R: 4167 * This symbol, if defined, indicates that the getservent_r routine 4168 * is available to getservent re-entrantly. 4169 */ 4170/* GETSERVENT_R_PROTO: 4171 * This symbol encodes the prototype of getservent_r. 4172 * It is zero if d_getservent_r is undef, and one of the 4173 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_getservent_r 4174 * is defined. 4175 */ 4176/*#define HAS_GETSERVENT_R / **/ 4177#define GETSERVENT_R_PROTO 0 /**/ 4178 4179/* HAS_PTHREAD_ATFORK: 4180 * This symbol, if defined, indicates that the pthread_atfork routine 4181 * is available to setup fork handlers. 4182 */ 4183/*#define HAS_PTHREAD_ATFORK / **/ 4184 4185/* HAS_READDIR64_R: 4186 * This symbol, if defined, indicates that the readdir64_r routine 4187 * is available to readdir64 re-entrantly. 4188 */ 4189/* READDIR64_R_PROTO: 4190 * This symbol encodes the prototype of readdir64_r. 4191 * It is zero if d_readdir64_r is undef, and one of the 4192 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_readdir64_r 4193 * is defined. 4194 */ 4195/*#define HAS_READDIR64_R / **/ 4196#define READDIR64_R_PROTO 0 /**/ 4197 4198/* HAS_SETHOSTENT_R: 4199 * This symbol, if defined, indicates that the sethostent_r routine 4200 * is available to sethostent re-entrantly. 4201 */ 4202/* SETHOSTENT_R_PROTO: 4203 * This symbol encodes the prototype of sethostent_r. 4204 * It is zero if d_sethostent_r is undef, and one of the 4205 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_sethostent_r 4206 * is defined. 4207 */ 4208/*#define HAS_SETHOSTENT_R / **/ 4209#define SETHOSTENT_R_PROTO 0 /**/ 4210 4211/* HAS_SETLOCALE_R: 4212 * This symbol, if defined, indicates that the setlocale_r routine 4213 * is available to setlocale re-entrantly. 4214 */ 4215/* SETLOCALE_R_PROTO: 4216 * This symbol encodes the prototype of setlocale_r. 4217 * It is zero if d_setlocale_r is undef, and one of the 4218 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setlocale_r 4219 * is defined. 4220 */ 4221/*#define HAS_SETLOCALE_R / **/ 4222#define SETLOCALE_R_PROTO 0 /**/ 4223 4224/* HAS_SETNETENT_R: 4225 * This symbol, if defined, indicates that the setnetent_r routine 4226 * is available to setnetent re-entrantly. 4227 */ 4228/* SETNETENT_R_PROTO: 4229 * This symbol encodes the prototype of setnetent_r. 4230 * It is zero if d_setnetent_r is undef, and one of the 4231 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setnetent_r 4232 * is defined. 4233 */ 4234/*#define HAS_SETNETENT_R / **/ 4235#define SETNETENT_R_PROTO 0 /**/ 4236 4237/* HAS_SETPROTOENT_R: 4238 * This symbol, if defined, indicates that the setprotoent_r routine 4239 * is available to setprotoent re-entrantly. 4240 */ 4241/* SETPROTOENT_R_PROTO: 4242 * This symbol encodes the prototype of setprotoent_r. 4243 * It is zero if d_setprotoent_r is undef, and one of the 4244 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setprotoent_r 4245 * is defined. 4246 */ 4247/*#define HAS_SETPROTOENT_R / **/ 4248#define SETPROTOENT_R_PROTO 0 /**/ 4249 4250/* HAS_SETSERVENT_R: 4251 * This symbol, if defined, indicates that the setservent_r routine 4252 * is available to setservent re-entrantly. 4253 */ 4254/* SETSERVENT_R_PROTO: 4255 * This symbol encodes the prototype of setservent_r. 4256 * It is zero if d_setservent_r is undef, and one of the 4257 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_setservent_r 4258 * is defined. 4259 */ 4260/*#define HAS_SETSERVENT_R / **/ 4261#define SETSERVENT_R_PROTO 0 /**/ 4262 4263/* HAS_TTYNAME_R: 4264 * This symbol, if defined, indicates that the ttyname_r routine 4265 * is available to ttyname re-entrantly. 4266 */ 4267/* TTYNAME_R_PROTO: 4268 * This symbol encodes the prototype of ttyname_r. 4269 * It is zero if d_ttyname_r is undef, and one of the 4270 * REENTRANT_PROTO_T_ABC macros of reentr.h if d_ttyname_r 4271 * is defined. 4272 */ 4273/*#define HAS_TTYNAME_R / **/ 4274#define TTYNAME_R_PROTO 0 /**/ 4275 4276#endif 4277 4278