1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
|
/* config.h.in. Generated from configure.ac by autoheader. */
/* Absolute path of source tree */
#undef ABS_TOP_SRCDIR
/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD
/* Special CFEngine symbol */
#undef AUTOCONF_HOSTNAME
/* Speial CFEngine symbol */
#undef AUTOCONF_SYSNAME
/* binaries location */
#undef BINDIR
/* "Software build year" */
#undef BUILD_YEAR
/* Define if you want builtin Enterprise extensions */
#undef BUILTIN_EXTENSIONS
/* "Copyright. To be used in help screens" */
#undef CF_COPYRIGHT
/* Datadir location */
#undef CF_DATADIR
/* "Website. To be used in help screens" */
#undef CF_WEBSITE
/* Path to chpass tool */
#undef CHPASS
/* Path to chpasswd tool */
#undef CHPASSWD
/* Define to 1 if using `getloadavg.c'. */
#undef C_GETLOADAVG
/* Define to 1 for DGUX with <sys/dg_sys_info.h>. */
#undef DGUX
/* Whether endnetgrent returns int */
#undef ENDNETGRENT_RETURNS_INT
/* Define to 1 if the `getloadavg' function needs to be run setuid or setgid.
*/
#undef GETLOADAVG_PRIVILEGED
/* Define to 1 if you have the <acl.h> header file. */
#undef HAVE_ACL_H
/* Define to 1 if you have the <acl/libacl.h> header file. */
#undef HAVE_ACL_LIBACL_H
/* Define to 1 if you have the `asprintf' function. */
#undef HAVE_ASPRINTF
/* Define to 1 if you have the <attr/xattr.h> header file. */
#undef HAVE_ATTR_XATTR_H
/* Define to 1 if you have the <avahi-client/client.h> header file. */
#undef HAVE_AVAHI_CLIENT_CLIENT_H
/* Define to 1 if you have the <avahi-common/address.h> header file. */
#undef HAVE_AVAHI_COMMON_ADDRESS_H
/* Define to 1 if you have the `chflags' function. */
#undef HAVE_CHFLAGS
/* Define if chpass tool is present */
#undef HAVE_CHPASS
/* Define if chpasswd tool is present */
#undef HAVE_CHPASSWD
/* Define to 1 if the system has the type `clockid_t'. */
#undef HAVE_CLOCKID_T
/* Define to 1 if you have the `copy_file_range' function. */
#undef HAVE_COPY_FILE_RANGE
/* Define to 1 if you have the <curl/curl.h> header file. */
#undef HAVE_CURL_CURL_H
/* Define to 1 if you have the declaration of `alarm', and to 0 if you don't.
*/
#undef HAVE_DECL_ALARM
/* Define to 1 if you have the declaration of `chmod', and to 0 if you don't.
*/
#undef HAVE_DECL_CHMOD
/* Define to 1 if you have the declaration of `chown', and to 0 if you don't.
*/
#undef HAVE_DECL_CHOWN
/* Define to 1 if you have the declaration of `clock_gettime', and to 0 if you
don't. */
#undef HAVE_DECL_CLOCK_GETTIME
/* Define to 1 if you have the declaration of `closefrom', and to 0 if you
don't. */
#undef HAVE_DECL_CLOSEFROM
/* Define to 1 if you have the declaration of `dirfd', and to 0 if you don't.
*/
#undef HAVE_DECL_DIRFD
/* Define to 1 if you have the declaration of `drand48', and to 0 if you
don't. */
#undef HAVE_DECL_DRAND48
/* Define to 1 if you have the declaration of `endnetgrent', and to 0 if you
don't. */
#undef HAVE_DECL_ENDNETGRENT
/* Define to 1 if you have the declaration of `FALLOC_FL_PUNCH_HOLE', and to 0
if you don't. */
#undef HAVE_DECL_FALLOC_FL_PUNCH_HOLE
/* Define to 1 if you have the declaration of `fchmod', and to 0 if you don't.
*/
#undef HAVE_DECL_FCHMOD
/* Define to 1 if you have the declaration of `fchmodat', and to 0 if you
don't. */
#undef HAVE_DECL_FCHMODAT
/* Define to 1 if you have the declaration of `fchownat', and to 0 if you
don't. */
#undef HAVE_DECL_FCHOWNAT
/* Define to 1 if you have the declaration of `fgetgrent', and to 0 if you
don't. */
#undef HAVE_DECL_FGETGRENT
/* Define to 1 if you have the declaration of `FICLONE', and to 0 if you
don't. */
#undef HAVE_DECL_FICLONE
/* Define to 1 if you have the declaration of `fstatat', and to 0 if you
don't. */
#undef HAVE_DECL_FSTATAT
/* Define to 1 if you have the declaration of `fsync', and to 0 if you don't.
*/
#undef HAVE_DECL_FSYNC
/* Define to 1 if you have the declaration of `getaddrinfo', and to 0 if you
don't. */
#undef HAVE_DECL_GETADDRINFO
/* Define to 1 if you have the declaration of `getgid', and to 0 if you don't.
*/
#undef HAVE_DECL_GETGID
/* Define to 1 if you have the declaration of `getline', and to 0 if you
don't. */
#undef HAVE_DECL_GETLINE
/* Define to 1 if you have the declaration of `getloadavg', and to 0 if you
don't. */
#undef HAVE_DECL_GETLOADAVG
/* Define to 1 if you have the declaration of `getnetgrent', and to 0 if you
don't. */
#undef HAVE_DECL_GETNETGRENT
/* Define to 1 if you have the declaration of `gettid', and to 0 if you don't.
*/
#undef HAVE_DECL_GETTID
/* Define to 1 if you have the declaration of `getuid', and to 0 if you don't.
*/
#undef HAVE_DECL_GETUID
/* Define to 1 if you have the declaration of `glob', and to 0 if you don't.
*/
#undef HAVE_DECL_GLOB
/* Define to 1 if you have the declaration of `gmtime_r', and to 0 if you
don't. */
#undef HAVE_DECL_GMTIME_R
/* Define to 1 if you have the declaration of `inet_ntop', and to 0 if you
don't. */
#undef HAVE_DECL_INET_NTOP
/* Define to 1 if you have the declaration of `inet_pton', and to 0 if you
don't. */
#undef HAVE_DECL_INET_PTON
/* Define to 1 if you have the declaration of `isfinite', and to 0 if you
don't. */
#undef HAVE_DECL_ISFINITE
/* Define to 1 if you have the declaration of `le32toh', and to 0 if you
don't. */
#undef HAVE_DECL_LE32TOH
/* Define to 1 if you have the declaration of `localtime_r', and to 0 if you
don't. */
#undef HAVE_DECL_LOCALTIME_R
/* Define to 1 if you have the declaration of `log2', and to 0 if you don't.
*/
#undef HAVE_DECL_LOG2
/* Define to 1 if you have the declaration of `lstat', and to 0 if you don't.
*/
#undef HAVE_DECL_LSTAT
/* Define to 1 if you have the declaration of `memdup', and to 0 if you don't.
*/
#undef HAVE_DECL_MEMDUP
/* Define to 1 if you have the declaration of `memmem', and to 0 if you don't.
*/
#undef HAVE_DECL_MEMMEM
/* Define to 1 if you have the declaration of `memrchr', and to 0 if you
don't. */
#undef HAVE_DECL_MEMRCHR
/* Define to 1 if you have the declaration of `mkdtemp', and to 0 if you
don't. */
#undef HAVE_DECL_MKDTEMP
/* Define to 1 if you have the declaration of `nanosleep', and to 0 if you
don't. */
#undef HAVE_DECL_NANOSLEEP
/* Define to 1 if you have the declaration of `openat', and to 0 if you don't.
*/
#undef HAVE_DECL_OPENAT
/* Define to 1 if you have the declaration of `pthread_attr_setstacksize', and
to 0 if you don't. */
#undef HAVE_DECL_PTHREAD_ATTR_SETSTACKSIZE
/* Define to 1 if you have the declaration of `pthread_sigmask', and to 0 if
you don't. */
#undef HAVE_DECL_PTHREAD_SIGMASK
/* Define to 1 if you have the declaration of `readlinkat', and to 0 if you
don't. */
#undef HAVE_DECL_READLINKAT
/* Define to 1 if you have the declaration of `realpath', and to 0 if you
don't. */
#undef HAVE_DECL_REALPATH
/* Define to 1 if you have the declaration of `round', and to 0 if you don't.
*/
#undef HAVE_DECL_ROUND
/* Define to 1 if you have the declaration of `sched_yield', and to 0 if you
don't. */
#undef HAVE_DECL_SCHED_YIELD
/* Define to 1 if you have the declaration of `SEEK_DATA', and to 0 if you
don't. */
#undef HAVE_DECL_SEEK_DATA
/* Define to 1 if you have the declaration of `seteuid', and to 0 if you
don't. */
#undef HAVE_DECL_SETEUID
/* Define to 1 if you have the declaration of `setlinebuf', and to 0 if you
don't. */
#undef HAVE_DECL_SETLINEBUF
/* Define to 1 if you have the declaration of `setnetgrent', and to 0 if you
don't. */
#undef HAVE_DECL_SETNETGRENT
/* Define to 1 if you have the declaration of `socketpair', and to 0 if you
don't. */
#undef HAVE_DECL_SOCKETPAIR
/* Define to 1 if you have the declaration of `srand48', and to 0 if you
don't. */
#undef HAVE_DECL_SRAND48
/* Define to 1 if you have the declaration of `SSL_CTX_clear_options', and to
0 if you don't. */
#undef HAVE_DECL_SSL_CTX_CLEAR_OPTIONS
/* Define to 1 if you have the declaration of `stpncpy', and to 0 if you
don't. */
#undef HAVE_DECL_STPNCPY
/* Define to 1 if you have the declaration of `strcasecmp', and to 0 if you
don't. */
#undef HAVE_DECL_STRCASECMP
/* Define to 1 if you have the declaration of `strcasestr', and to 0 if you
don't. */
#undef HAVE_DECL_STRCASESTR
/* Define to 1 if you have the declaration of `strchrnul', and to 0 if you
don't. */
#undef HAVE_DECL_STRCHRNUL
/* Define to 1 if you have the declaration of `strdup', and to 0 if you don't.
*/
#undef HAVE_DECL_STRDUP
/* Define to 1 if you have the declaration of `strerror', and to 0 if you
don't. */
#undef HAVE_DECL_STRERROR
/* Define to 1 if you have the declaration of `strlcat', and to 0 if you
don't. */
#undef HAVE_DECL_STRLCAT
/* Define to 1 if you have the declaration of `strlcpy', and to 0 if you
don't. */
#undef HAVE_DECL_STRLCPY
/* Define to 1 if you have the declaration of `strncasecmp', and to 0 if you
don't. */
#undef HAVE_DECL_STRNCASECMP
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
don't. */
#undef HAVE_DECL_STRNLEN
/* Define to 1 if you have the declaration of `strrstr', and to 0 if you
don't. */
#undef HAVE_DECL_STRRSTR
/* Define to 1 if you have the declaration of `strsep', and to 0 if you don't.
*/
#undef HAVE_DECL_STRSEP
/* Define to 1 if you have the declaration of `strsignal', and to 0 if you
don't. */
#undef HAVE_DECL_STRSIGNAL
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
*/
#undef HAVE_DECL_STRSTR
/* Define to 1 if you have the declaration of `uname', and to 0 if you don't.
*/
#undef HAVE_DECL_UNAME
/* Define to 1 if you have the declaration of `unsetenv', and to 0 if you
don't. */
#undef HAVE_DECL_UNSETENV
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
#undef HAVE_DIRENT_H
/* Define to 1 if you have the `dirfd' function. */
#undef HAVE_DIRFD
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have the `door' function. */
#undef HAVE_DOOR
/* Define to 1 if you have the <dustat.h> header file. */
#undef HAVE_DUSTAT_H
/* Define to 1 if you have the <endian.h> header file. */
#undef HAVE_ENDIAN_H
/* Define to 1 if you have the `endnetgrent' function. */
#undef HAVE_ENDNETGRENT
/* Define to 1 if you have the `endpwent' function. */
#undef HAVE_ENDPWENT
/* Define to 1 if you have the `fchmod' function. */
#undef HAVE_FCHMOD
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Whether to use fexecve(3) to execute a new process */
#undef HAVE_FEXECVE
/* 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 if fgetpwent and fgetgrent functions are present */
#undef HAVE_FGETPWENT_FGETGRENT
/* Define if fgetspent is available */
#undef HAVE_FGETSPENT
/* Define to 1 if you have the `fpathconf' function. */
#undef HAVE_FPATHCONF
/* Define to 1 if you have the `gethostent' function. */
#undef HAVE_GETHOSTENT
/* Define to 1 if you have the `gethostname' function. */
#undef HAVE_GETHOSTNAME
/* Define to 1 if you have the `getifaddrs' function. */
#undef HAVE_GETIFADDRS
/* Define to 1 if you have the `getloadavg' function. */
#undef HAVE_GETLOADAVG
/* Define to 1 if you have the `getnetgrent' function. */
#undef HAVE_GETNETGRENT
/* Define to 1 if you have the <getopt.h> header file. */
#undef HAVE_GETOPT_H
/* Define to 1 if you have the `getprocs64' function. */
#undef HAVE_GETPROCS64
/* Define to 1 if you have the `getpwent' function. */
#undef HAVE_GETPWENT
/* Define to 1 if you have the `getzoneid' function. */
#undef HAVE_GETZONEID
/* Define to 1 if you have the `getzonenamebyid' function. */
#undef HAVE_GETZONENAMEBYID
/* Define to 1 if you have the <ieeefp.h> header file. */
#undef HAVE_IEEEFP_H
/* Define to 1 if the system has the type `intmax_t'. */
#undef HAVE_INTMAX_T
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the `jail_get' function. */
#undef HAVE_JAIL_GET
/* Define to 1 if you have the <kstat.h> header file. */
#undef HAVE_KSTAT_H
/* Whether to use lchown(3) to change ownerships */
#undef HAVE_LCHOWN
/* Define to 1 if you have the `lckpwdf' function. */
#undef HAVE_LCKPWDF
/* Define to 1 if you have the `acl' library (-lacl). */
#undef HAVE_LIBACL
/* Define to 1 if you have the `crypto' library (-lcrypto). */
#undef HAVE_LIBCRYPTO
/* Define to 1 if you have the `curl' library (-lcurl). */
#undef HAVE_LIBCURL
/* Define to 1 if you have the `dgc' library (-ldgc). */
#undef HAVE_LIBDGC
/* Define to 1 if you have the `dl' library (-ldl). */
#undef HAVE_LIBDL
/* Define to 1 if you have the `kstat' library (-lkstat). */
#undef HAVE_LIBKSTAT
/* Define to 1 if you have the `lmdb' library (-llmdb). */
#undef HAVE_LIBLMDB
/* Define to 1 if you have the `m' library (-lm). */
#undef HAVE_LIBM
/* Define to 1 if you have the `mysqlclient' library (-lmysqlclient). */
#undef HAVE_LIBMYSQLCLIENT
/* Define to 1 if you have the `nss_nis' library (-lnss_nis). */
#undef HAVE_LIBNSS_NIS
/* Define to 1 if you have the `pam' library (-lpam). */
#undef HAVE_LIBPAM
/* Define to 1 if you have the `pcre2-8' library (-lpcre2-8). */
#undef HAVE_LIBPCRE2_8
/* Define to 1 if you have the `pq' library (-lpq). */
#undef HAVE_LIBPQ
/* Define to 1 if you have the <libpq-fe.h> header file. */
#undef HAVE_LIBPQ_FE_H
/* Define to 1 if you have the `qdbm' library (-lqdbm). */
#undef HAVE_LIBQDBM
/* Define to 1 if you have the `rt' library (-lrt). */
#undef HAVE_LIBRT
/* Define if -lsec is available */
#undef HAVE_LIBSEC
/* Define to 1 if you have the `ssl' library (-lssl). */
#undef HAVE_LIBSSL
/* Define to 1 if you have the `systemd' library (-lsystemd). */
#undef HAVE_LIBSYSTEMD
/* Define to 1 if you have the `tokyocabinet' library (-ltokyocabinet). */
#undef HAVE_LIBTOKYOCABINET
/* Define to 1 if you have the `virt' library (-lvirt). */
#undef HAVE_LIBVIRT
/* Define to 1 if you have the <libvirt/libvirt.h> header file. */
#undef HAVE_LIBVIRT_LIBVIRT_H
/* Define to 1 if you have the `xml2' library (-lxml2). */
#undef HAVE_LIBXML2
/* Define to 1 if you have the <libxml/xmlwriter.h> header file. */
#undef HAVE_LIBXML_XMLWRITER_H
/* Define to 1 if you have the `yaml' library (-lyaml). */
#undef HAVE_LIBYAML
/* Define to 1 if you have the <linux/fs.h> header file. */
#undef HAVE_LINUX_FS_H
/* Define to 1 if you have the `llistxattr' function. */
#undef HAVE_LLISTXATTR
/* Define to 1 if you have the <lmdb.h> header file. */
#undef HAVE_LMDB_H
/* Define to 1 if you have the `localeconv' function. */
#undef HAVE_LOCALECONV
/* Define to 1 if you have the <locale.h> header file. */
#undef HAVE_LOCALE_H
/* Define to 1 if the system has the type `long double'. */
#undef HAVE_LONG_DOUBLE
/* Define to 1 if the system has the type `long long int'. */
#undef HAVE_LONG_LONG_INT
/* Define to 1 if you have the <mach/mach.h> header file. */
#undef HAVE_MACH_MACH_H
/* Define to 1 if you have the <malloc.h> header file. */
#undef HAVE_MALLOC_H
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the `mkfifo' function. */
#undef HAVE_MKFIFO
/* Define to 1 if BSD .msg_accrights supported */
#undef HAVE_MSGHDR_ACCRIGHTS
/* Define to 1 if SCM_RIGHTS supported */
#undef HAVE_MSGHDR_MSG_CONTROL
/* Define to 1 if you have the <mysql.h> header file. */
#undef HAVE_MYSQL_H
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
#undef HAVE_NDIR_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/ip.h> header file. */
#undef HAVE_NETINET_IP_H
/* Define to 1 if you have the <net/if_arp.h> header file. */
#undef HAVE_NET_IF_ARP_H
/* Define to 1 if you have the <net/if_dl.h> header file. */
#undef HAVE_NET_IF_DL_H
/* Define to 1 if you have the <net/route.h> header file. */
#undef HAVE_NET_ROUTE_H
/* Define to 1 if you have the <nlist.h> header file. */
#undef HAVE_NLIST_H
/* Define to 1 if no BSD .msg_accrights support */
#undef HAVE_NO_MSGHDR_ACCRIGHTS
/* Define to 1 if SCM_RIGHTS support */
#undef HAVE_NO_MSGHDR_MSG_CONTROL
/* Define to 1 if you have the <openssl/opensslv.h> header file. */
#undef HAVE_OPENSSL_OPENSSLV_H
/* The old route entry structure in newer BSDs */
#undef HAVE_ORTENTRY
/* Define to 1 if you have the <pcre2.h> header file. */
#undef HAVE_PCRE2_H
/* Define to 1 if you have the `pstat_getdynamic' function. */
#undef HAVE_PSTAT_GETDYNAMIC
/* Define to 1 if you have the `pstat_getfile2' function. */
#undef HAVE_PSTAT_GETFILE2
/* Define if you have POSIX threads libraries and header files. */
#undef HAVE_PTHREAD
/* Define to 1 if the system has the type `ptrdiff_t'. */
#undef HAVE_PTRDIFF_T
/* Define if pw tool is present */
#undef HAVE_PW
/* Define if pwdadm tool is present */
#undef HAVE_PWDADM
/* Define to 1 if you have the <qdbm/depot.h> header file. */
#undef HAVE_QDBM_DEPOT_H
/* Do we have any route entry structure? */
#undef HAVE_RTENTRY
/* Define to 1 if you have the `sched_yield' function. */
#undef HAVE_SCHED_YIELD
/* sd_notify_barrier on recent systemd */
#undef HAVE_SD_NOTIFY_BARRIER
/* Define to 1 if you have the <security/pam_appl.h> header file. */
#undef HAVE_SECURITY_PAM_APPL_H
/* Define to 1 if you have the `sendfile' function. */
#undef HAVE_SENDFILE
/* Define to 1 if you have the `sendto' function. */
#undef HAVE_SENDTO
/* Define to 1 if you have the `setegid' function. */
#undef HAVE_SETEGID
/* Define to 1 if you have the `seteuid' function. */
#undef HAVE_SETEUID
/* Define to 1 if you have the `setlocale' function. */
#undef HAVE_SETLOCALE
/* Define to 1 if you have the `setnetgrent' function. */
#undef HAVE_SETNETGRENT
/* Define to 1 if you have the `setpwent' function. */
#undef HAVE_SETPWENT
/* Define to 1 if you have the `setregid' function. */
#undef HAVE_SETREGID
/* Define to 1 if you have the `setreuid' function. */
#undef HAVE_SETREUID
/* Define to 1 if you have the `setsid' function. */
#undef HAVE_SETSID
/* Define to 1 if you have the `setsockopt' function. */
#undef HAVE_SETSOCKOPT
/* Define to 1 if you have the <shadow.h> header file. */
#undef HAVE_SHADOW_H
/* Define to 1 if you have the `sleep' function. */
#undef HAVE_SLEEP
/* Define to 1 if you have a C99 compliant `snprintf' function. */
#undef HAVE_SNPRINTF
/* Define to 1 if you have the `socket' function. */
#undef HAVE_SOCKET
/* Define to 1 if the system has the type `socklen_t'. */
#undef HAVE_SOCKLEN_T
/* 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 <stdarg.h> header file. */
#undef HAVE_STDARG_H
/* Define to 1 if stdbool.h conforms to C99. */
#undef HAVE_STDBOOL_H
/* Define to 1 if you have the <stddef.h> header file. */
#undef HAVE_STDDEF_H
/* 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 <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 `ifr_hwaddr' is a member of `struct ifreq'. */
#undef HAVE_STRUCT_IFREQ_IFR_HWADDR
/* Define to 1 if `decimal_point' is a member of `struct lconv'. */
#undef HAVE_STRUCT_LCONV_DECIMAL_POINT
/* Define to 1 if `thousands_sep' is a member of `struct lconv'. */
#undef HAVE_STRUCT_LCONV_THOUSANDS_SEP
/* Define to 1 if `n_un.n_name' is a member of `struct nlist'. */
#undef HAVE_STRUCT_NLIST_N_UN_N_NAME
/* Define to 1 if `sa_len' is a member of `struct sockaddr'. */
#undef HAVE_STRUCT_SOCKADDR_SA_LEN
/* Define to 1 if the system has the type `struct sockaddr_storage'. */
#undef HAVE_STRUCT_SOCKADDR_STORAGE
/* Define to 1 if `st_blocks' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BLOCKS
/* Define to 1 if `st_mtim' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_MTIM
/* Define to 1 if `st_mtimespec' is a member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_MTIMESPEC
/* Define to 1 if `uptime' is a member of `struct sysinfo'. */
#undef HAVE_STRUCT_SYSINFO_UPTIME
/* Define to 1 if you have the `sysconf' function. */
#undef HAVE_SYSCONF
/* Define to 1 if you have the `sysinfo' function. */
#undef HAVE_SYSINFO
/* Define to 1 if you have the <systemd/sd-daemon.h> header file. */
#undef HAVE_SYSTEMD_SD_DAEMON_H
/* Define to 1 if you have the <sys/acl.h> header file. */
#undef HAVE_SYS_ACL_H
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
*/
#undef HAVE_SYS_DIR_H
/* Define to 1 if you have the <sys/filesys.h> header file. */
#undef HAVE_SYS_FILESYS_H
/* Define to 1 if you have the <sys/jail.h> header file. */
#undef HAVE_SYS_JAIL_H
/* Define to 1 if you have the <sys/loadavg.h> header file. */
#undef HAVE_SYS_LOADAVG_H
/* Define to 1 if you have the <sys/malloc.h> header file. */
#undef HAVE_SYS_MALLOC_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/mpctl.h> header file. */
#undef HAVE_SYS_MPCTL_H
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
*/
#undef HAVE_SYS_NDIR_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/pstat.h> header file. */
#undef HAVE_SYS_PSTAT_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/sendfile.h> header file. */
#undef HAVE_SYS_SENDFILE_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/sysctl.h> header file. */
#undef HAVE_SYS_SYSCTL_H
/* Define to 1 if you have the <sys/sysmacros.h> header file. */
#undef HAVE_SYS_SYSMACROS_H
/* Define to 1 if you have the <sys/systeminfo.h> header file. */
#undef HAVE_SYS_SYSTEMINFO_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/vfs.h> header file. */
#undef HAVE_SYS_VFS_H
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
#undef HAVE_SYS_WAIT_H
/* Define to 1 if you have the <sys/xattr.h> header file. */
#undef HAVE_SYS_XATTR_H
/* Define to 1 if you have the <tchdb.h> header file. */
#undef HAVE_TCHDB_H
/* Define to 1 if you have the <tcutil.h> header file. */
#undef HAVE_TCUTIL_H
/* Define to 1 if you have the <time.h> header file. */
#undef HAVE_TIME_H
/* Define if TLS 1.1 is supported by OpenSSL */
#undef HAVE_TLS_1_1
/* Define if TLS 1.2 is supported by OpenSSL */
#undef HAVE_TLS_1_2
/* Define if TLS 1.3 is supported by OpenSSL */
#undef HAVE_TLS_1_3
/* Define to 1 if the system has the type `uintmax_t'. */
#undef HAVE_UINTMAX_T
/* Define to 1 if the system has the type `uintptr_t'. */
#undef HAVE_UINTPTR_T
/* Define to 1 if you have the `ulckpwdf' function. */
#undef HAVE_ULCKPWDF
/* Define to 1 if you have the `uname' function. */
#undef HAVE_UNAME
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if the system has the type `unsigned long long int'. */
#undef HAVE_UNSIGNED_LONG_LONG_INT
/* Define if useradd tool is present */
#undef HAVE_USERADD
/* Define if userdel tool is present */
#undef HAVE_USERDEL
/* Define if usermod tool is present */
#undef HAVE_USERMOD
/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H
/* Define to 1 if you have the <utmpx.h> header file. */
#undef HAVE_UTMPX_H
/* Define to 1 if you have the <utmp.h> header file. */
#undef HAVE_UTMP_H
/* Define to 1 if you have the <varargs.h> header file. */
#undef HAVE_VARARGS_H
/* Define to 1 if you have the `vasprintf' function. */
#undef HAVE_VASPRINTF
/* Define to 1 if you have the `va_copy' function or macro. */
#undef HAVE_VA_COPY
/* Define to 1 if you have the <vfs.h> header file. */
#undef HAVE_VFS_H
/* Define to 1 if you have a C99 compliant `vsnprintf' function. */
#undef HAVE_VSNPRINTF
/* Define to 1 if you have the <winsock2.h> header file. */
#undef HAVE_WINSOCK2_H
/* Define to 1 if you have the <ws2tcpip.h> header file. */
#undef HAVE_WS2TCPIP_H
/* Define to 1 if you have the <yaml.h> header file. */
#undef HAVE_YAML_H
/* Define to 1 if you have the <zone.h> header file. */
#undef HAVE_ZONE_H
/* Define to 1 if the system has the type `_Bool'. */
#undef HAVE__BOOL
/* Define to 1 if you have the `__va_copy' function or macro. */
#undef HAVE___VA_COPY
/* Define to 1 if you have properly defined `ctime' function */
#undef HAVE_ctime_PROPER
/* Define to 1 if you have properly defined `mkdir' function */
#undef HAVE_mkdir_PROPER
/* Define to 1 if you have properly defined `rename' function */
#undef HAVE_rename_PROPER
/* Define to 1 if you have properly defined `stat' function */
#undef HAVE_stat_PROPER
/* Inputs directory location */
#undef INPUTDIR
/* Define if Lightning MDB is available */
#undef LMDB
/* Logdir location */
#undef LOGDIR
/* Define to the sub-directory where libtool stores uninstalled libraries. */
#undef LT_OBJDIR
/* Masterfiles directory location */
#undef MASTERDIR
/* Define to 1 if your `struct nlist' has an `n_un' member. Obsolete, depend
on `HAVE_STRUCT_NLIST_N_UN_N_NAME */
#undef NLIST_NAME_UNION
/* Suppress deprecation warnings from OpenSSL 3 */
#undef OPENSSL_SUPPRESS_DEPRECATED
/* 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
/* piddir location */
#undef PIDDIR
/* Define to necessary symbol if this constant uses a non-standard name on
your system. */
#undef PTHREAD_CREATE_JOINABLE
/* Path to pw tool */
#undef PW
/* Path to pwdadm tool */
#undef PWDADM
/* Define if QDBM is available */
#undef QDB
/* Release number */
#undef RELEASE
/* Whether sendto does not returns ssize_t */
#undef SENDTO_RETURNS_SSIZE_T
/* Whether setnetgrent returns int */
#undef SETNETGRENT_RETURNS_INT
/* Path to the POSIX-compatible shell */
#undef SHELL_PATH
/* State directory location */
#undef STATEDIR
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define to 1 on System V Release 4. */
#undef SVR4
/* Define if Tokyo Cabinet is available. */
#undef TCDB
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME
/* Define to 1 for Encore UMAX. */
#undef UMAX
/* Define to 1 for Encore UMAX 4.3 that has <inq_status/cpustats.h> instead of
<sys/cpustats.h>. */
#undef UMAX4_3
/* Path to useradd tool */
#undef USERADD
/* Path to userdel tool */
#undef USERDEL
/* Path to usermod tool */
#undef USERMOD
/* Version number of package */
#undef VERSION
/* Define if PCRE2 is being used */
#undef WITH_PCRE2
/* Define if you have a libc that supports extended attributes */
#undef WITH_XATTR
/* Define if your xattr implementation has extra arguments */
#undef WITH_XATTR_EXTRA_ARGS
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
# define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
# undef WORDS_BIGENDIAN
# endif
#endif
/* Workdir location */
#undef WORKDIR
/* Define if XEN cpuid-based HVM detection is available. */
#undef XEN_CPUID_SUPPORT
/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
`char[]'. */
#undef YYTEXT_POINTER
/* Enable large inode numbers on Mac OS X 10.5. */
#ifndef _DARWIN_USE_64_BIT_INODE
# define _DARWIN_USE_64_BIT_INODE 1
#endif
/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS
/* Define for large files, on AIX-style hosts. */
#undef _LARGE_FILES
/* Enable wide data structures everywhere */
#undef _PSTAT64
/* SUSv3 */
#undef _XOPEN_SOURCE
/* Extended UNIX 98 interfaces */
#undef __EXTENSIONS__
/* Define to rpl_asprintf if the replacement function should be used. */
#undef asprintf
/* Define to empty if `const' does not conform to ANSI C. */
#undef const
/* Define to rpl_fprintf if the replacement function should be used. */
#undef fprintf
/* Define to `int' if <sys/types.h> doesn't define. */
#undef gid_t
/* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
not define. */
#undef intmax_t
/* Define to `int' if <sys/types.h> does not define. */
#undef mode_t
/* Define to `long int' if <sys/types.h> does not define. */
#undef off_t
/* Define to `int' if <sys/types.h> does not define. */
#undef pid_t
/* Define to rpl_printf if the replacement function should be used. */
#undef printf
/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t
/* Define to rpl_snprintf if the replacement function should be used. */
#undef snprintf
/* Define to `int' if <sys/types.h> doesn't define. */
#undef uid_t
/* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
do not define. */
#undef uintmax_t
/* Define to the type of an unsigned integer type wide enough to hold a
pointer, if such a type exists, and if the system does not define it. */
#undef uintptr_t
/* Define to rpl_vasprintf if the replacement function should be used. */
#undef vasprintf
/* Define to rpl_vfprintf if the replacement function should be used. */
#undef vfprintf
/* Define to rpl_vprintf if the replacement function should be used. */
#undef vprintf
/* Define to rpl_vsnprintf if the replacement function should be used. */
#undef vsnprintf
|