1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
|
/* config.h.in. Generated from configure.ac by autoheader. */
/* The architecture this is running on */
#undef ARCHITECTURE
/* GC description */
#undef DEFAULT_GC_NAME
/* String of disabled features */
#undef DISABLED_FEATURES
/* Disable AOT Compiler */
#undef DISABLE_AOT_COMPILER
/* Disable support for multiple appdomains. */
#undef DISABLE_APPDOMAINS
/* Disable assembly remapping. */
#undef DISABLE_ASSEMBLY_REMAPPING
/* Disable agent attach support */
#undef DISABLE_ATTACH
/* Disable COM support */
#undef DISABLE_COM
/* Disable runtime debugging support */
#undef DISABLE_DEBUG
/* Disable System.Decimal support */
#undef DISABLE_DECIMAL
/* Disables building in the full table of WAPI messages */
#undef DISABLE_FULL_MESSAGES
/* Disable generics support */
#undef DISABLE_GENERICS
/* Icall tables disabled */
#undef DISABLE_ICALL_TABLES
/* Disable the JIT, only full-aot mode will be supported by the runtime. */
#undef DISABLE_JIT
/* Disable support for huge assemblies */
#undef DISABLE_LARGE_CODE
/* Disable support debug logging */
#undef DISABLE_LOGGING
/* Disable String normalization support. */
#undef DISABLE_NORMALIZATION
/* Disable Performance Counters. */
#undef DISABLE_PERFCOUNTERS
/* Disable P/Invoke support */
#undef DISABLE_PINVOKE
/* Disables the IO portability layer */
#undef DISABLE_PORTABILITY
/* Disable default profiler support */
#undef DISABLE_PROFILER
/* Disable reflection emit support */
#undef DISABLE_REFLECTION_EMIT
/* Disable assembly saving support in reflection emit */
#undef DISABLE_REFLECTION_EMIT_SAVE
/* Disable remoting support (This disables type proxies and make com
non-functional) */
#undef DISABLE_REMOTING
/* Disable CAS/CoreCLR security */
#undef DISABLE_SECURITY
/* Disable major=copying support in SGEN. */
#undef DISABLE_SGEN_MAJOR_COPYING
/* Disable major=marksweep-fixed support in SGEN. */
#undef DISABLE_SGEN_MAJOR_MARKSWEEP_FIXED
/* Disable major=marksweep-fixed-par support in SGEN. */
#undef DISABLE_SGEN_MAJOR_MARKSWEEP_FIXED_PAR
/* Disable major=marksweep-par support in SGEN. */
#undef DISABLE_SGEN_MAJOR_MARKSWEEP_PAR
/* Disable wbarrier=remset support in SGEN. */
#undef DISABLE_SGEN_REMSET
/* Disable Shadow Copy for AppDomains */
#undef DISABLE_SHADOW_COPY
/* Disable inter-process shared handles */
#undef DISABLE_SHARED_HANDLES
/* Disable shared perfcounters. */
#undef DISABLE_SHARED_PERFCOUNTERS
/* Disable SIMD intrinsics related optimizations. */
#undef DISABLE_SIMD
/* Disable sockets support */
#undef DISABLE_SOCKETS
/* Disable Soft Debugger Agent. */
#undef DISABLE_SOFT_DEBUG
/* Disable advanced SSA JIT optimizations */
#undef DISABLE_SSA
/* Disables the verifier */
#undef DISABLE_VERIFIER
/* Enable DTrace probes */
#undef ENABLE_DTRACE
/* Extension module enabled */
#undef ENABLE_EXTENSION_MODULE
/* Gsharing */
#undef ENABLE_GSHAREDVT
/* Icall export enabled */
#undef ENABLE_ICALL_EXPORT
/* Icall symbol map enabled */
#undef ENABLE_ICALL_SYMBOL_MAP
/* Enable the LLVM back end */
#undef ENABLE_LLVM
/* Have GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY */
#undef GLIBC_BEFORE_2_3_4_SCHED_SETAFFINITY
/* Has the 'aintl' function */
#undef HAVE_AINTL
/* Define to 1 if you have the <alloca.h> header file. */
#undef HAVE_ALLOCA_H
/* ARM v5 */
#undef HAVE_ARMV5
/* ARM v6 */
#undef HAVE_ARMV6
/* ARM v7 */
#undef HAVE_ARMV7
/* Supports C99 array initialization */
#undef HAVE_ARRAY_ELEM_INIT
/* Define to 1 if you have the <asm/sigcontext.h> header file. */
#undef HAVE_ASM_SIGCONTEXT_H
/* Define to 1 if you have the <attr/xattr.h> header file. */
#undef HAVE_ATTR_XATTR_H
/* Define to 1 if you have the `backtrace_symbols' function. */
#undef HAVE_BACKTRACE_SYMBOLS
/* Define to 1 if the system has the type `blkcnt_t'. */
#undef HAVE_BLKCNT_T
/* Define to 1 if the system has the type `blksize_t'. */
#undef HAVE_BLKSIZE_T
/* Define to 1 if you have the <checklist.h> header file. */
#undef HAVE_CHECKLIST_H
/* Define to 1 if you have the <CommonCrypto/CommonDigest.h> header file. */
#undef HAVE_COMMONCRYPTO_COMMONDIGEST_H
/* Define to 1 if you have the `confstr' function. */
#undef HAVE_CONFSTR
/* Have /dev/random */
#undef HAVE_CRYPT_RNG
/* Define to 1 if you have the <curses.h> header file. */
#undef HAVE_CURSES_H
/* Define to 1 if you have the declaration of `InterlockedAdd', and to 0 if
you don't. */
#undef HAVE_DECL_INTERLOCKEDADD
/* Define to 1 if you have the declaration of `InterlockedAdd64', and to 0 if
you don't. */
#undef HAVE_DECL_INTERLOCKEDADD64
/* Define to 1 if you have the declaration of `InterlockedCompareExchange64',
and to 0 if you don't. */
#undef HAVE_DECL_INTERLOCKEDCOMPAREEXCHANGE64
/* Define to 1 if you have the declaration of `InterlockedDecrement64', and to
0 if you don't. */
#undef HAVE_DECL_INTERLOCKEDDECREMENT64
/* Define to 1 if you have the declaration of `InterlockedExchange64', and to
0 if you don't. */
#undef HAVE_DECL_INTERLOCKEDEXCHANGE64
/* Define to 1 if you have the declaration of `InterlockedIncrement64', and to
0 if you don't. */
#undef HAVE_DECL_INTERLOCKEDINCREMENT64
/* Define to 1 if you have the declaration of `__readfsdword', and to 0 if you
don't. */
#undef HAVE_DECL___READFSDWORD
/* Support for the deprecated attribute */
#undef HAVE_DEPRECATED
/* Define to 1 if you have the <dirent.h> header file. */
#undef HAVE_DIRENT_H
/* Define to 1 if you have the `dladdr' function. */
#undef HAVE_DLADDR
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have the `dl_iterate_phdr' function. */
#undef HAVE_DL_ITERATE_PHDR
/* dlopen-based dynamic loader available */
#undef HAVE_DL_LOADER
/* Define to 1 if you have the <elf.h> header file. */
#undef HAVE_ELF_H
/* Define to 1 if you have the `endgrent' function. */
#undef HAVE_ENDGRENT
/* Define to 1 if you have the `endpwent' function. */
#undef HAVE_ENDPWENT
/* Define to 1 if you have the `endusershell' function. */
#undef HAVE_ENDUSERSHELL
/* epoll supported */
#undef HAVE_EPOLL
/* Define to 1 if you have the `epoll_ctl' function. */
#undef HAVE_EPOLL_CTL
/* Define to 1 if you have the <execinfo.h> header file. */
#undef HAVE_EXECINFO_H
/* Define to 1 if you have the `execvp' function. */
#undef HAVE_EXECVP
/* Define to 1 if you have the `fgetgrent' function. */
#undef HAVE_FGETGRENT
/* Define to 1 if you have the `fgetpwent' function. */
#undef HAVE_FGETPWENT
/* Define to 1 if you have the `finite' function. */
#undef HAVE_FINITE
/* Define to 1 if you have the <fstab.h> header file. */
#undef HAVE_FSTAB_H
/* Define to 1 if you have the `fstatat' function. */
#undef HAVE_FSTATAT
/* Define to 1 if you have the `fstatfs' function. */
#undef HAVE_FSTATFS
/* Define to 1 if you have the `fstatvfs' function. */
#undef HAVE_FSTATVFS
/* Define to 1 if you have the `futimens' function. */
#undef HAVE_FUTIMENS
/* Define to 1 if you have the `futimes' function. */
#undef HAVE_FUTIMES
/* GC requires thread registration */
#undef HAVE_GC_ALLOW_REGISTER_THREADS
/* Define to 1 if you have the <gc/gc.h> header file. */
#undef HAVE_GC_GC_H
/* Define to 1 if you have the <gc.h> header file. */
#undef HAVE_GC_H
/* Define to 1 if you have the `getdomainname' function. */
#undef HAVE_GETDOMAINNAME
/* Define to 1 if you have the `getfsstat' function. */
#undef HAVE_GETFSSTAT
/* Define to 1 if you have the `getgrent' function. */
#undef HAVE_GETGRENT
/* Define to 1 if you have the `getgrgid_r' function. */
#undef HAVE_GETGRGID_R
/* Define to 1 if you have the `getgrnam_r' function. */
#undef HAVE_GETGRNAM_R
/* Have gethostbyname2_r */
#undef HAVE_GETHOSTBYNAME2_R
/* Define to 1 if you have the `gethostid' function. */
#undef HAVE_GETHOSTID
/* Have getifaddrs */
#undef HAVE_GETIFADDRS
/* Define to 1 if you have the `getlogin_r' function. */
#undef HAVE_GETLOGIN_R
/* Define to 1 if you have the `getpriority' function. */
#undef HAVE_GETPRIORITY
/* Define if GetProcessId is available */
#undef HAVE_GETPROCESSID
/* Define to 1 if you have the `getpwent' function. */
#undef HAVE_GETPWENT
/* Define to 1 if you have the `getpwnam_r' function. */
#undef HAVE_GETPWNAM_R
/* Define to 1 if you have the `getpwuid_r' function. */
#undef HAVE_GETPWUID_R
/* Define to 1 if you have the `getresuid' function. */
#undef HAVE_GETRESUID
/* Define to 1 if you have the `getrlimit' function. */
#undef HAVE_GETRLIMIT
/* Define to 1 if you have the `getrusage' function. */
#undef HAVE_GETRUSAGE
/* Define to 1 if you have the <grp.h> header file. */
#undef HAVE_GRP_H
/* Define if you have the iconv() function and it works. */
#undef HAVE_ICONV
/* Define to 1 if you have the <ieeefp.h> header file. */
#undef HAVE_IEEEFP_H
/* Have if_nametoindex */
#undef HAVE_IF_NAMETOINDEX
/* Define to 1 if you have the `inet_aton' function. */
#undef HAVE_INET_ATON
/* Define to 1 if you have the `inet_pton' function. */
#undef HAVE_INET_PTON
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Have IPPROTO_IP */
#undef HAVE_IPPROTO_IP
/* Have IPPROTO_IPV6 */
#undef HAVE_IPPROTO_IPV6
/* Have IPPROTO_TCP */
#undef HAVE_IPPROTO_TCP
/* Have IPV6_PKTINFO */
#undef HAVE_IPV6_PKTINFO
/* Have IP_DONTFRAG */
#undef HAVE_IP_DONTFRAG
/* Have IP_DONTFRAGMENT */
#undef HAVE_IP_DONTFRAGMENT
/* Have IP_MTU_DISCOVER */
#undef HAVE_IP_MTU_DISCOVER
/* Have IP_PKTINFO */
#undef HAVE_IP_PKTINFO
/* Have IP_PMTUDISC_DO */
#undef HAVE_IP_PMTUDISC_DO
/* Define to 1 if you have the `isfinite' function. */
#undef HAVE_ISFINITE
/* isinf available */
#undef HAVE_ISINF
/* Define to 1 if you have the `kqueue' function. */
#undef HAVE_KQUEUE
/* Have __thread keyword */
#undef HAVE_KW_THREAD
/* Have large file support */
#undef HAVE_LARGE_FILE_SUPPORT
/* Define to 1 if you have the <libproc.h> header file. */
#undef HAVE_LIBPROC_H
/* Define to 1 if you have the `unwind' library (-lunwind). */
#undef HAVE_LIBUNWIND
/* Define to 1 if you have the <link.h> header file. */
#undef HAVE_LINK_H
/* Define to 1 if you have the <linux/magic.h> header file. */
#undef HAVE_LINUX_MAGIC_H
/* Define to 1 if you have the <linux/netlink.h> header file. */
#undef HAVE_LINUX_NETLINK_H
/* Define to 1 if you have the <linux/rtc.h> header file. */
#undef HAVE_LINUX_RTC_H
/* Define to 1 if you have the <linux/rtnetlink.h> header file. */
#undef HAVE_LINUX_RTNETLINK_H
/* Define to 1 if you have the `lockf' function. */
#undef HAVE_LOCKF
/* Define to 1 if you have the `lutimes' function. */
#undef HAVE_LUTIMES
/* Define to 1 if you have the `madvise' function. */
#undef HAVE_MADVISE
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the `mknodat' function. */
#undef HAVE_MKNODAT
/* Define to 1 if you have the `mkstemp' function. */
#undef HAVE_MKSTEMP
/* Define to 1 if you have the `mmap' function. */
#undef HAVE_MMAP
/* Define to 1 if you have the `mremap' function. */
#undef HAVE_MREMAP
/* Have MSG_NOSIGNAL */
#undef HAVE_MSG_NOSIGNAL
/* Define to 1 if you have the <nacl/nacl_dyncode.h> header file. */
#undef HAVE_NACL_NACL_DYNCODE_H
/* Define to 1 if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H
/* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H
/* Define to 1 if you have the <netinet/tcp.h> header file. */
#undef HAVE_NETINET_TCP_H
/* Define to 1 if you have the <net/if.h> header file. */
#undef HAVE_NET_IF_H
/* No GC support. */
#undef HAVE_NULL_GC
/* Have oprofile support */
#undef HAVE_OPROFILE
/* Define to 1 if you have the <pathconf.h> header file. */
#undef HAVE_PATHCONF_H
/* Define to 1 if you have the `poll' function. */
#undef HAVE_POLL
/* Define to 1 if you have the <poll.h> header file. */
#undef HAVE_POLL_H
/* Define to 1 if you have the `posix_fadvise' function. */
#undef HAVE_POSIX_FADVISE
/* Define to 1 if you have the `posix_fallocate' function. */
#undef HAVE_POSIX_FALLOCATE
/* Define to 1 if you have the `posix_madvise' function. */
#undef HAVE_POSIX_MADVISE
/* Define to 1 if you have the `preadv' function. */
#undef HAVE_PREADV
/* Define to 1 if you have the `psignal' function. */
#undef HAVE_PSIGNAL
/* Define to 1 if you have the `pthread_attr_getstack' function. */
#undef HAVE_PTHREAD_ATTR_GETSTACK
/* Define to 1 if you have the `pthread_attr_getstacksize' function. */
#undef HAVE_PTHREAD_ATTR_GETSTACKSIZE
/* Define to 1 if you have the `pthread_attr_get_np' function. */
#undef HAVE_PTHREAD_ATTR_GET_NP
/* Define to 1 if you have the `pthread_attr_setstacksize' function. */
#undef HAVE_PTHREAD_ATTR_SETSTACKSIZE
/* Define to 1 if you have the `pthread_getattr_np' function. */
#undef HAVE_PTHREAD_GETATTR_NP
/* Define to 1 if you have the `pthread_get_stackaddr_np' function. */
#undef HAVE_PTHREAD_GET_STACKADDR_NP
/* Define to 1 if you have the `pthread_get_stacksize_np' function. */
#undef HAVE_PTHREAD_GET_STACKSIZE_NP
/* Define to 1 if you have the <pthread.h> header file. */
#undef HAVE_PTHREAD_H
/* Define to 1 if you have the `pthread_kill' function. */
#undef HAVE_PTHREAD_KILL
/* Define to 1 if you have the `pthread_mutex_timedlock' function. */
#undef HAVE_PTHREAD_MUTEX_TIMEDLOCK
/* Define to 1 if you have the <pthread_np.h> header file. */
#undef HAVE_PTHREAD_NP_H
/* Define to 1 if you have the `pthread_setname_np' function. */
#undef HAVE_PTHREAD_SETNAME_NP
/* Define to 1 if you have the <pwd.h> header file. */
#undef HAVE_PWD_H
/* Define to 1 if you have the `pwritev' function. */
#undef HAVE_PWRITEV
/* Define to 1 if you have the `readlinkat' function. */
#undef HAVE_READLINKAT
/* Define to 1 if you have the `readv' function. */
#undef HAVE_READV
/* Define to 1 if you have the `remap_file_pages' function. */
#undef HAVE_REMAP_FILE_PAGES
/* Define to 1 if you have the `rint' function. */
#undef HAVE_RINT
/* Define to 1 if you have the `round' function. */
#undef HAVE_ROUND
/* Define to 1 if you have the `sched_getcpu' function. */
#undef HAVE_SCHED_GETCPU
/* Define to 1 if you have the `sched_setaffinity' function. */
#undef HAVE_SCHED_SETAFFINITY
/* Define to 1 if you have the `seekdir' function. */
#undef HAVE_SEEKDIR
/* Define to 1 if you have the <semaphore.h> header file. */
#undef HAVE_SEMAPHORE_H
/* Define to 1 if you have the `sendfile' function. */
#undef HAVE_SENDFILE
/* Define to 1 if you have the `setdomainname' function. */
#undef HAVE_SETDOMAINNAME
/* Define to 1 if you have the `setgrent' function. */
#undef HAVE_SETGRENT
/* Define to 1 if you have the `setgroups' function. */
#undef HAVE_SETGROUPS
/* Define to 1 if you have the `sethostid' function. */
#undef HAVE_SETHOSTID
/* Define to 1 if you have the `sethostname' function. */
#undef HAVE_SETHOSTNAME
/* Define to 1 if you have the `setpgid' function. */
#undef HAVE_SETPGID
/* Define to 1 if you have the `setpriority' function. */
#undef HAVE_SETPRIORITY
/* Define to 1 if you have the `setpwent' function. */
#undef HAVE_SETPWENT
/* Define to 1 if you have the `setresuid' function. */
#undef HAVE_SETRESUID
/* Define to 1 if you have the `setusershell' function. */
#undef HAVE_SETUSERSHELL
/* Define to 1 if you have the `shm_open' function. */
#undef HAVE_SHM_OPEN
/* Define to 1 if you have the `sigaction' function. */
#undef HAVE_SIGACTION
/* Define to 1 if you have the <signal.h> header file. */
#undef HAVE_SIGNAL_H
/* Have signbit */
#undef HAVE_SIGNBIT
/* Can get interface list */
#undef HAVE_SIOCGIFCONF
/* sockaddr_in6 has sin6_len */
#undef HAVE_SOCKADDR_IN6_SIN_LEN
/* sockaddr_in has sin_len */
#undef HAVE_SOCKADDR_IN_SIN_LEN
/* Have socklen_t */
#undef HAVE_SOCKLEN_T
/* Have SOL_IP */
#undef HAVE_SOL_IP
/* Have SOL_IPV6 */
#undef HAVE_SOL_IPV6
/* Have SOL_TCP */
#undef HAVE_SOL_TCP
/* Define to 1 if you have the `statfs' function. */
#undef HAVE_STATFS
/* Define to 1 if you have the `statvfs' function. */
#undef HAVE_STATVFS
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the `stime' function. */
#undef HAVE_STIME
/* Define to 1 if you have the `strerror_r' function. */
#undef HAVE_STRERROR_R
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define to 1 if `d_off' is a member of `struct dirent'. */
#undef HAVE_STRUCT_DIRENT_D_OFF
/* Define to 1 if `d_reclen' is a member of `struct dirent'. */
#undef HAVE_STRUCT_DIRENT_D_RECLEN
/* Define to 1 if `d_type' is a member of `struct dirent'. */
#undef HAVE_STRUCT_DIRENT_D_TYPE
/* Define to 1 if the system has the type `struct flock'. */
#undef HAVE_STRUCT_FLOCK
/* Define to 1 if the system has the type `struct iovec'. */
#undef HAVE_STRUCT_IOVEC
/* Have struct ip_mreq */
#undef HAVE_STRUCT_IP_MREQ
/* Have struct ip_mreqn */
#undef HAVE_STRUCT_IP_MREQN
/* Define to 1 if `kp_proc' is a member of `struct kinfo_proc'. */
#undef HAVE_STRUCT_KINFO_PROC_KP_PROC
/* Define to 1 if `pw_gecos' is a member of `struct passwd'. */
#undef HAVE_STRUCT_PASSWD_PW_GECOS
/* Define to 1 if the system has the type `struct pollfd'. */
#undef HAVE_STRUCT_POLLFD
/* Define to 1 if the system has the type `struct stat'. */
#undef HAVE_STRUCT_STAT
/* Define to 1 if `f_flags' is a member of `struct statfs'. */
#undef HAVE_STRUCT_STATFS_F_FLAGS
/* Define to 1 if `st_atim' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_ATIM
/* Define to 1 if `st_ctim' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_CTIM
/* Define to 1 if `st_mtim' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_MTIM
/* Define to 1 if the system has the type `struct timespec'. */
#undef HAVE_STRUCT_TIMESPEC
/* Define to 1 if the system has the type `struct timeval'. */
#undef HAVE_STRUCT_TIMEVAL
/* Define to 1 if the system has the type `struct timezone'. */
#undef HAVE_STRUCT_TIMEZONE
/* Define to 1 if the system has the type `struct utimbuf'. */
#undef HAVE_STRUCT_UTIMBUF
/* Define to 1 if the system has the type `suseconds_t'. */
#undef HAVE_SUSECONDS_T
/* Define to 1 if you have the `swab' function. */
#undef HAVE_SWAB
/* Define to 1 if you have the `sysconf' function. */
#undef HAVE_SYSCONF
/* Define to 1 if you have the <syslog.h> header file. */
#undef HAVE_SYSLOG_H
/* Define to 1 if you have the <sys/auxv.h> header file. */
#undef HAVE_SYS_AUXV_H
/* Define to 1 if you have the <sys/epoll.h> header file. */
#undef HAVE_SYS_EPOLL_H
/* Define to 1 if you have the <sys/event.h> header file. */
#undef HAVE_SYS_EVENT_H
/* Define to 1 if you have the <sys/extattr.h> header file. */
#undef HAVE_SYS_EXTATTR_H
/* Define to 1 if you have the <sys/filio.h> header file. */
#undef HAVE_SYS_FILIO_H
/* Define to 1 if you have the <sys/inotify.h> header file. */
#undef HAVE_SYS_INOTIFY_H
/* Define to 1 if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H
/* Define to 1 if you have the <sys/ipc.h> header file. */
#undef HAVE_SYS_IPC_H
/* Define to 1 if you have the <sys/mkdev.h> header file. */
#undef HAVE_SYS_MKDEV_H
/* Define to 1 if you have the <sys/mman.h> header file. */
#undef HAVE_SYS_MMAN_H
/* Define to 1 if you have the <sys/mount.h> header file. */
#undef HAVE_SYS_MOUNT_H
/* Define to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H
/* Define to 1 if you have the <sys/poll.h> header file. */
#undef HAVE_SYS_POLL_H
/* Define to 1 if you have the <sys/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H
/* Define to 1 if you have the <sys/sdt.h> header file. */
#undef HAVE_SYS_SDT_H
/* Define to 1 if you have the <sys/select.h> header file. */
#undef HAVE_SYS_SELECT_H
/* Define to 1 if you have the <sys/sem.h> header file. */
#undef HAVE_SYS_SEM_H
/* Define to 1 if you have the <sys/sendfile.h> header file. */
#undef HAVE_SYS_SENDFILE_H
/* Define to 1 if you have the <sys/socket.h> header file. */
#undef HAVE_SYS_SOCKET_H
/* Define to 1 if you have the <sys/sockio.h> header file. */
#undef HAVE_SYS_SOCKIO_H
/* Define to 1 if you have the <sys/statfs.h> header file. */
#undef HAVE_SYS_STATFS_H
/* Define to 1 if you have the <sys/statvfs.h> header file. */
#undef HAVE_SYS_STATVFS_H
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/syscall.h> header file. */
#undef HAVE_SYS_SYSCALL_H
/* Define to 1 if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have the <sys/uio.h> header file. */
#undef HAVE_SYS_UIO_H
/* Define to 1 if you have the <sys/un.h> header file. */
#undef HAVE_SYS_UN_H
/* Define to 1 if you have the <sys/user.h> header file. */
#undef HAVE_SYS_USER_H
/* Define to 1 if you have the <sys/utime.h> header file. */
#undef HAVE_SYS_UTIME_H
/* Define to 1 if you have the <sys/utsname.h> header file. */
#undef HAVE_SYS_UTSNAME_H
/* Define to 1 if you have the <sys/vfstab.h> header file. */
#undef HAVE_SYS_VFSTAB_H
/* Define to 1 if you have the <sys/wait.h> header file. */
#undef HAVE_SYS_WAIT_H
/* Define to 1 if you have the <sys/xattr.h> header file. */
#undef HAVE_SYS_XATTR_H
/* Have system zlib */
#undef HAVE_SYS_ZLIB
/* Define to 1 if you have the `telldir' function. */
#undef HAVE_TELLDIR
/* Define to 1 if you have the <termios.h> header file. */
#undef HAVE_TERMIOS_H
/* Define to 1 if you have the <term.h> header file. */
#undef HAVE_TERM_H
/* Have timezone variable */
#undef HAVE_TIMEZONE
/* tls_model available */
#undef HAVE_TLS_MODEL_ATTR
/* Have tm_gmtoff */
#undef HAVE_TM_GMTOFF
/* Define to 1 if you have the `trunc' function. */
#undef HAVE_TRUNC
/* Define to 1 if you have the `ttyname_r' function. */
#undef HAVE_TTYNAME_R
/* Define to 1 if you have the <ucontext.h> header file. */
#undef HAVE_UCONTEXT_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if you have /usr/include/malloc.h. */
#undef HAVE_USR_INCLUDE_MALLOC_H
/* Define to 1 if you have the `utimensat' function. */
#undef HAVE_UTIMENSAT
/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H
/* Support for the visibility ("hidden") attribute */
#undef HAVE_VISIBILITY_HIDDEN
/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF
/* Define to 1 if you have the <wchar.h> header file. */
#undef HAVE_WCHAR_H
/* Define to 1 if you have the <winternl.h> header file. */
#undef HAVE_WINTERNL_H
/* Have a working sigaltstack */
#undef HAVE_WORKING_SIGALTSTACK
/* Define to 1 if you have the `writev' function. */
#undef HAVE_WRITEV
/* Have system zlib */
#undef HAVE_ZLIB
/* Define to 1 if you have the `_finite' function. */
#undef HAVE__FINITE
/* Host Platform is Win32 */
#undef HOST_WIN32
/* Define as const if the declaration of iconv() needs const. */
#undef ICONV_CONST
/* Enable lazy gc thread creation by the embedding host. */
#undef LAZY_GC_THREAD_CREATION
/* Major version of LLVM libraries */
#undef LLVM_MAJOR_VERSION
/* Minor version of LLVM libraries */
#undef LLVM_MINOR_VERSION
/* Full version of LLVM libraties */
#undef LLVM_VERSION
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#undef LT_OBJDIR
/* Cross-compiling using MinGW */
#undef MINGW_CROSS_COMPILE
/* Enable the allocation and indexing of arrays greater than Int32.MaxValue */
#undef MONO_BIG_ARRAYS
/* The runtime is compiled for cross-compiling mode */
#undef MONO_CROSS_COMPILE
/* The LLVM back end is dynamically loaded */
#undef MONO_LLVM_LOADED
/* native types */
#undef MONO_NATIVE_TYPES
/* Reduce runtime requirements (and capabilities) */
#undef MONO_SMALL_CONFIG
/* Xen-specific behaviour */
#undef MONO_XEN_OPT
/* Length of zero length arrays */
#undef MONO_ZERO_LEN_ARRAY
/* Name of /dev/random */
#undef NAME_DEV_RANDOM
/* Define if Unix sockets cannot be created in an anonymous namespace */
#undef NEED_LINK_UNLINK
/* Name of package */
#undef PACKAGE
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
/* Define to the full name of this package. */
#undef PACKAGE_NAME
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
/* Define to the home page for this package. */
#undef PACKAGE_URL
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* Targeting the Android platform */
#undef PLATFORM_ANDROID
/* This platform does not support symlinks */
#undef PLATFORM_NO_SYMLINKS
/* pthread is a pointer */
#undef PTHREAD_POINTER_ID
/* size of machine integer registers */
#undef SIZEOF_REGISTER
/* The size of `size_t', as computed by sizeof. */
#undef SIZEOF_SIZE_T
/* The size of `void *', as computed by sizeof. */
#undef SIZEOF_VOID_P
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* ... */
#undef TARGET_AMD64
/* ... */
#undef TARGET_ANDROID
/* ... */
#undef TARGET_ARM
/* ... */
#undef TARGET_ARM64
/* byte order of target */
#undef TARGET_BYTE_ORDER
/* ... */
#undef TARGET_IA64
/* The JIT/AOT targets iOS */
#undef TARGET_IOS
/* The JIT/AOT targets Apple platforms */
#undef TARGET_MACH
/* ... */
#undef TARGET_MIPS
/* ... */
#undef TARGET_NACL
/* The JIT/AOT targets OSX */
#undef TARGET_OSX
/* ... */
#undef TARGET_POWERPC
/* ... */
#undef TARGET_POWERPC64
/* ... */
#undef TARGET_PS3
/* ... */
#undef TARGET_S390X
/* ... */
#undef TARGET_SPARC
/* ... */
#undef TARGET_SPARC64
/* Target OS is Win32/MinGW */
#undef TARGET_WIN32
/* ... */
#undef TARGET_X86
/* ... */
#undef TARGET_XBOX360
/* ... */
#undef USE_GCC_ATOMIC_OPS
/* Use jump tables in JIT */
#undef USE_JUMP_TABLES
/* Use kqueue for the threadpool */
#undef USE_KQUEUE_FOR_THREADPOOL
/* ... */
#undef USE_MACH_SEMA
/* Use malloc for each single mempool allocation */
#undef USE_MALLOC_FOR_MEMPOOLS
/* Version number of package */
#undef VERSION
/* ... */
#undef __default_codegen__
/* 64 bit mode with 4 byte longs and pointers */
#undef __mono_ilp32__
/* ... */
#undef __mono_ppc64__
/* ... */
#undef __native_client_codegen__
|