1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801
|
/* include/autoconf.h.in. Generated from configure.ac by autoheader. */
/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD
/* Defines how many threads aufs uses for I/O */
#undef AUFS_IO_THREADS
/* Host type from configure */
#undef CONFIG_HOST_TYPE
/* Define to 1 if using 'alloca.c'. */
#undef C_ALLOCA
/* Default FD_SETSIZE value */
#undef DEFAULT_FD_SETSIZE
/* The install prefix */
#undef DEFAULT_PREFIX
/* Enable following X-Forwarded-For headers */
#undef FOLLOW_X_FORWARDED_FOR
/* Whether gettimeofday takes only one argument */
#undef GETTIMEOFDAY_NO_TZP
/* Define to 1 if you have the <adserr.h> header file. */
#undef HAVE_ADSERR_H
/* Define to 1 if you have the <adshlp.h> header file. */
#undef HAVE_ADSHLP_H
/* Define to 1 if you have the <adsiid.h> header file. */
#undef HAVE_ADSIID_H
/* Define to 1 if you have the <aio.h> header file. */
#undef HAVE_AIO_H
/* Define to 1 if you have 'alloca', as a function or macro. */
#undef HAVE_ALLOCA
/* Define to 1 if <alloca.h> works. */
#undef HAVE_ALLOCA_H
/* Define to 1 if you have the `argz_add' function. */
#undef HAVE_ARGZ_ADD
/* Define to 1 if you have the `argz_append' function. */
#undef HAVE_ARGZ_APPEND
/* Define to 1 if you have the `argz_count' function. */
#undef HAVE_ARGZ_COUNT
/* Define to 1 if you have the `argz_create_sep' function. */
#undef HAVE_ARGZ_CREATE_SEP
/* Define to 1 if you have the <argz.h> header file. */
#undef HAVE_ARGZ_H
/* Define to 1 if you have the `argz_insert' function. */
#undef HAVE_ARGZ_INSERT
/* Define to 1 if you have the `argz_next' function. */
#undef HAVE_ARGZ_NEXT
/* Define to 1 if you have the `argz_stringify' function. */
#undef HAVE_ARGZ_STRINGIFY
/* Define to 1 if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H
/* Define to 1 if you have the <arpa/nameser.h> header file. */
#undef HAVE_ARPA_NAMESER_H
/* Define to 1 if you have the <assert.h> header file. */
#undef HAVE_ASSERT_H
/* Basic auth module is built */
#undef HAVE_AUTH_MODULE_BASIC
/* Digest auth module is built */
#undef HAVE_AUTH_MODULE_DIGEST
/* Negotiate auth module is built */
#undef HAVE_AUTH_MODULE_NEGOTIATE
/* NTLM auth module is built */
#undef HAVE_AUTH_MODULE_NTLM
/* Define to 1 if you have the `backtrace_symbols_fd' function. */
#undef HAVE_BACKTRACE_SYMBOLS_FD
/* Define to 1 if you have the `bcopy' function. */
#undef HAVE_BCOPY
/* Heimdal krb5.h is broken for C++ */
#undef HAVE_BROKEN_HEIMDAL_KRB5_H
/* Define to 1 if Solaris krb5.h is broken for C++ */
#undef HAVE_BROKEN_SOLARIS_KRB5_H
/* Define to 1 if you have the <bstring.h> header file. */
#undef HAVE_BSTRING_H
/* Define to 1 if you have the `bswap16' function. */
#undef HAVE_BSWAP16
/* Define to 1 if you have the `bswap32' function. */
#undef HAVE_BSWAP32
/* Define to 1 if you have the `bswap_16' function. */
#undef HAVE_BSWAP_16
/* Define to 1 if you have the `bswap_32' function. */
#undef HAVE_BSWAP_32
/* Define to 1 if you have the <byteswap.h> header file. */
#undef HAVE_BYTESWAP_H
/* Define to 1 if you have the `closedir' function. */
#undef HAVE_CLOSEDIR
/* The system provides struct cmsghdr */
#undef HAVE_CMSGHDR
/* Define to 1 if you have the <com_err.h> header file. */
#undef HAVE_COM_ERR_H
/* Define to 1 if CMSG_SPACE is constant */
#undef HAVE_CONSTANT_CMSG_SPACE
/* Define to 1 if you have the <cppunit/extensions/HelperMacros.h> header
file. */
#undef HAVE_CPPUNIT_EXTENSIONS_HELPERMACROS_H
/* Support setting CPU affinity for workers */
#undef HAVE_CPU_AFFINITY
/* cpu_set_t is defined by the system headers */
#undef HAVE_CPU_SET_T
/* Define to 1 if you have the `crypt' function. */
#undef HAVE_CRYPT
/* Define to 1 if you have the <crypt.h> header file. */
#undef HAVE_CRYPT_H
/* Define to 1 if you have the <ctype.h> header file. */
#undef HAVE_CTYPE_H
/* define if the compiler supports basic C++17 syntax */
#undef HAVE_CXX17
/* Define to 1 if you have the <db.h> header file. */
#undef HAVE_DB_H
/* Define to 1 if you have the declaration of `cygwin_conv_path', and to 0 if
you don't. */
#undef HAVE_DECL_CYGWIN_CONV_PATH
/* Define to 1 if you have the declaration of `krb5_kt_free_entry', and to 0
if you don't. */
#undef HAVE_DECL_KRB5_KT_FREE_ENTRY
/* Define to 1 if you have the <direct.h> header file. */
#undef HAVE_DIRECT_H
/* Define to 1 if you have the <dirent.h> header file. */
#undef HAVE_DIRENT_H
/* POSIX AIO Disk I/O module is built */
#undef HAVE_DISKIO_MODULE_AIO
/* Blocking Disk I/O module is built */
#undef HAVE_DISKIO_MODULE_BLOCKING
/* DiskDaemon Disk I/O module is built */
#undef HAVE_DISKIO_MODULE_DISKDAEMON
/* DiskThreads Disk I/O module is built */
#undef HAVE_DISKIO_MODULE_DISKTHREADS
/* IpcIo Disk I/O module is built */
#undef HAVE_DISKIO_MODULE_IPCIO
/* Mmapped Disk I/O module is built */
#undef HAVE_DISKIO_MODULE_MMAPPED
/* Define if you have the GNU dld library. */
#undef HAVE_DLD
/* Define to 1 if you have the <dld.h> header file. */
#undef HAVE_DLD_H
/* Define to 1 if you have the `dlerror' function. */
#undef HAVE_DLERROR
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have the <dl.h> header file. */
#undef HAVE_DL_H
/* Define to 1 if you have the <dsrole.h> header file. */
#undef HAVE_DSROLE_H
/* Define if you have the _dyld_func_lookup function. */
#undef HAVE_DYLD
/* Define to 1 if you have the <endian.h> header file. */
#undef HAVE_ENDIAN_H
/* Define to 1 if you have the <errno.h> header file. */
#undef HAVE_ERRNO_H
/* Define to 1 if you have error_message */
#undef HAVE_ERROR_MESSAGE
/* Define to 1 if the system has the type `error_t'. */
#undef HAVE_ERROR_T
/* Define to 1 if you have the <et/com_err.h> header file. */
#undef HAVE_ET_COM_ERR_H
/* Define to 1 if you have the `eui64_aton' function. */
#undef HAVE_EUI64_ATON
/* Define to 1 if you have the <execinfo.h> header file. */
#undef HAVE_EXECINFO_H
/* 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
/* fd_mask is defined by the system headers */
#undef HAVE_FD_MASK
/* Define to 1 if you have the <fnmatch.h> header file. */
#undef HAVE_FNMATCH_H
/* Define to 1 if you have the `fsync' function. */
#undef HAVE_FSYNC
/* "Define to 1 if aufs filesystem module is build" */
#undef HAVE_FS_AUFS
/* "Define to 1 if diskd filesystem module is build" */
#undef HAVE_FS_DISKD
/* "Define to 1 if rock filesystem module is build" */
#undef HAVE_FS_ROCK
/* "Define to 1 if ufs filesystem module is build" */
#undef HAVE_FS_UFS
/* Define if struct statfs has field f_frsize (Linux 2.6 or later) */
#undef HAVE_F_FRSIZE_IN_STATFS
/* Define to 1 if you have the `getdtablesize' function. */
#undef HAVE_GETDTABLESIZE
/* Define to 1 if you have the <getopt.h> header file. */
#undef HAVE_GETOPT_H
/* Define to 1 if you have the `getpagesize' function. */
#undef HAVE_GETPAGESIZE
/* Define to 1 if you have the `getpass' function. */
#undef HAVE_GETPASS
/* 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 `getspnam' function. */
#undef HAVE_GETSPNAM
/* Define to 1 if you have the `gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY
/* Define to 1 if you have krb5_get_init_creds_keytab */
#undef HAVE_GET_INIT_CREDS_KEYTAB
/* Define to 1 if you have the <glib.h> header file. */
#undef HAVE_GLIB_H
/* Define to 1 if you have the `glob' function. */
#undef HAVE_GLOB
/* Define to 1 if you have the <glob.h> header file. */
#undef HAVE_GLOB_H
/* Define to 1 if you have the <gnumalloc.h> header file. */
#undef HAVE_GNUMALLOC_H
/* Define to 1 if you have the <gnutls/abstract.h> header file. */
#undef HAVE_GNUTLS_ABSTRACT_H
/* Define to 1 if you have the <gnutls/gnutls.h> header file. */
#undef HAVE_GNUTLS_GNUTLS_H
/* Define to 1 if you have the <gnutls/x509.h> header file. */
#undef HAVE_GNUTLS_X509_H
/* Define to 1 if you have the <grp.h> header file. */
#undef HAVE_GRP_H
/* GSSAPI support */
#undef HAVE_GSSAPI
/* Define to 1 if you have the <gssapi/gssapi_ext.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_EXT_H
/* Define to 1 if you have the <gssapi/gssapi_generic.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_GENERIC_H
/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_H
/* Define to 1 if you have the <gssapi/gssapi_krb5.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_KRB5_H
/* Define to 1 if you have the <gssapi.h> header file. */
#undef HAVE_GSSAPI_H
/* Define to 1 if you have the `gsskrb5_extract_authz_data_from_sec_context'
function. */
#undef HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT
/* Define to 1 if you have the <gss.h> header file. */
#undef HAVE_GSS_H
/* Define to 1 if you have gss_map_name_to_any */
#undef HAVE_GSS_MAP_ANY_TO_ANY
/* Define to 1 if you have the `gss_map_name_to_any' function. */
#undef HAVE_GSS_MAP_NAME_TO_ANY
/* Define to 1 if you have the `htole16' function. */
#undef HAVE_HTOLE16
/* Define to 1 if you have the `htole32' function. */
#undef HAVE_HTOLE32
/* Define to 1 if you have the <iads.h> header file. */
#undef HAVE_IADS_H
/* Define to 1 if you have the `initgroups' function. */
#undef HAVE_INITGROUPS
/* Define to 1 if you have the <initguid.h> header file. */
#undef HAVE_INITGUID_H
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the `ioctl' function. */
#undef HAVE_IOCTL
/* The system provides struct iovec */
#undef HAVE_IOVEC
/* Define to 1 if you have the <io.h> header file. */
#undef HAVE_IO_H
/* Define to 1 if you have the <ipl.h> header file. */
#undef HAVE_IPL_H
/* Define to 1 if you have the <ip_compat.h> header file. */
#undef HAVE_IP_COMPAT_H
/* Define to 1 if you have the <ip_fil_compat.h> header file. */
#undef HAVE_IP_FIL_COMPAT_H
/* Define to 1 if you have the <ip_fil.h> header file. */
#undef HAVE_IP_FIL_H
/* Define to 1 if you have the <ip_nat.h> header file. */
#undef HAVE_IP_NAT_H
/* Define to 1 if you have the `kqueue' function. */
#undef HAVE_KQUEUE
/* KRB5 support */
#undef HAVE_KRB5
/* Define to 1 if you have krb5_free_error_message */
#undef HAVE_KRB5_FREE_ERROR_MESSAGE
/* Define to 1 if you have krb5_free_error_string */
#undef HAVE_KRB5_FREE_ERROR_STRING
/* Define to 1 if you have krb5_get_error_message */
#undef HAVE_KRB5_GET_ERROR_MESSAGE
/* Define to 1 if you have krb5_get_err_text */
#undef HAVE_KRB5_GET_ERR_TEXT
/* Define to 1 if you krb5_get_init_creds_free requires krb5_context */
#undef HAVE_KRB5_GET_INIT_CREDS_FREE_CONTEXT
/* Define to 1 if you have krb5_get_init_creds_opt_alloc */
#undef HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC
/* Define to 1 if you have krb5_get_profile */
#undef HAVE_KRB5_GET_PROFILE
/* Define to 1 if you have krb5_get_renewed_creds */
#undef HAVE_KRB5_GET_RENEWED_CREDS
/* Define to 1 if you have the <krb5.h> header file. */
#undef HAVE_KRB5_H
/* Define to 1 if you have krb5_kt_free_entry */
#undef HAVE_KRB5_KT_FREE_ENTRY
/* Define if kerberos has MEMORY: cache support */
#undef HAVE_KRB5_MEMORY_CACHE
/* Define if kerberos has MEMORY: keytab support */
#undef HAVE_KRB5_MEMORY_KEYTAB
/* Define to 1 if you have krb5_pac */
#undef HAVE_KRB5_PAC
/* Define to 1 if you have krb5_principal_get_realm */
#undef HAVE_KRB5_PRINCIPAL_GET_REALM
/* Define to 1 if you have the <lber.h> header file. */
#undef HAVE_LBER_H
/* Define to 1 if you have LDAP */
#undef HAVE_LDAP
/* Define to 1 if you have ldapssl_client_init */
#undef HAVE_LDAPSSL_CLIENT_INIT
/* Define to 1 if you have the <ldap.h> header file. */
#undef HAVE_LDAP_H
/* Define to 1 if you have LDAP_OPT_DEBUG_LEVEL */
#undef HAVE_LDAP_OPT_DEBUG_LEVEL
/* Define to 1 if you have LDAP_REBINDPROC_CALLBACK */
#undef HAVE_LDAP_REBINDPROC_CALLBACK
/* Define to 1 if you have LDAP_REBIND_FUNCTION */
#undef HAVE_LDAP_REBIND_FUNCTION
/* Define to 1 if you have LDAP_REBIND_PROC */
#undef HAVE_LDAP_REBIND_PROC
/* Define to 1 if you have LDAP_SCOPE_DEFAULT */
#undef HAVE_LDAP_SCOPE_DEFAULT
/* Define to 1 if you have ldap_start_tls_s */
#undef HAVE_LDAP_START_TLS_S
/* Define to 1 if you have ldap_url_desc2str */
#undef HAVE_LDAP_URL_DESC2STR
/* Define to 1 if you have LDAP_URL_LUD_SCHEME */
#undef HAVE_LDAP_URL_LUD_SCHEME
/* Define to 1 if you have ldap_url_parse */
#undef HAVE_LDAP_URL_PARSE
/* Define to 1 if you have the `le16toh' function. */
#undef HAVE_LE16TOH
/* Define to 1 if you have the `le32toh' function. */
#undef HAVE_LE32TOH
/* Define as 1 to enable 'cap' library support. */
#undef HAVE_LIBCAP
/* Define as 1 to enable 'cppunit' library support. */
#undef HAVE_LIBCPPUNIT
/* "Define to 1 if the ASN1_STRING_get0_data() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_ASN1_STRING_GET0_DATA
/* "Define to 1 if the BIO_get_data() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_BIO_GET_DATA
/* "Define to 1 if the BIO_get_init() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_BIO_GET_INIT
/* "Define to 1 if the BIO_meth_new() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_BIO_METH_NEW
/* "Define to 1 if the DH_up_ref() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_DH_UP_REF
/* "Define to 1 if the EVP_PKEY_get0_RSA() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_EVP_PKEY_GET0_RSA
/* "Define to 1 if the EVP_PKEY_get_default_digest_name() OpenSSL API function
exists" */
#undef HAVE_LIBCRYPTO_EVP_PKEY_GET_DEFAULT_DIGEST_NAME
/* "Define to 1 if the EVP_PKEY_up_ref() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_EVP_PKEY_UP_REF
/* "Define to 1 if the OPENSSL_LH_strhash() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_OPENSSL_LH_STRHASH
/* "Define to 1 if the X509_chain_up_ref() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_X509_CHAIN_UP_REF
/* "Define to 1 if the X509_CRL_up_ref() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_X509_CRL_UP_REF
/* "Define to 1 if the X509_get0_signature() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_X509_GET0_SIGNATURE
/* "Define to 1 if the X509_STORE_CTX_get0_cert() OpenSSL API function exists"
*/
#undef HAVE_LIBCRYPTO_X509_STORE_CTX_GET0_CERT
/* "Define to 1 if the X509_STORE_CTX_get0_untrusted() OpenSSL API function
exists" */
#undef HAVE_LIBCRYPTO_X509_STORE_CTX_GET0_UNTRUSTED
/* "Define to 1 if the X509_up_ref() OpenSSL API function exists" */
#undef HAVE_LIBCRYPTO_X509_UP_REF
/* "Define to 1 if the X509_VERIFY_PARAM_get_depth() OpenSSL API function
exists" */
#undef HAVE_LIBCRYPTO_X509_VERIFY_PARAM_GET_DEPTH
/* Define to 1 if you have the <libc.h> header file. */
#undef HAVE_LIBC_H
/* Define if you have the libdl library or equivalent. */
#undef HAVE_LIBDL
/* Define if libdlloader will be built on this platform */
#undef HAVE_LIBDLLOADER
/* Define to 1 if you have the <libecap/adapter/service.h> header file. */
#undef HAVE_LIBECAP_ADAPTER_SERVICE_H
/* Define to 1 if you have the <libecap/adapter/xaction.h> header file. */
#undef HAVE_LIBECAP_ADAPTER_XACTION_H
/* Define to 1 if you have the <libecap/common/area.h> header file. */
#undef HAVE_LIBECAP_COMMON_AREA_H
/* Define to 1 if you have the <libecap/common/body.h> header file. */
#undef HAVE_LIBECAP_COMMON_BODY_H
/* Define to 1 if you have the <libecap/common/delay.h> header file. */
#undef HAVE_LIBECAP_COMMON_DELAY_H
/* Define to 1 if you have the <libecap/common/forward.h> header file. */
#undef HAVE_LIBECAP_COMMON_FORWARD_H
/* Define to 1 if you have the <libecap/common/header.h> header file. */
#undef HAVE_LIBECAP_COMMON_HEADER_H
/* Define to 1 if you have the <libecap/common/memory.h> header file. */
#undef HAVE_LIBECAP_COMMON_MEMORY_H
/* Define to 1 if you have the <libecap/common/message.h> header file. */
#undef HAVE_LIBECAP_COMMON_MESSAGE_H
/* Define to 1 if you have the <libecap/common/named_values.h> header file. */
#undef HAVE_LIBECAP_COMMON_NAMED_VALUES_H
/* Define to 1 if you have the <libecap/common/names.h> header file. */
#undef HAVE_LIBECAP_COMMON_NAMES_H
/* Define to 1 if you have the <libecap/common/name.h> header file. */
#undef HAVE_LIBECAP_COMMON_NAME_H
/* Define to 1 if you have the <libecap/common/options.h> header file. */
#undef HAVE_LIBECAP_COMMON_OPTIONS_H
/* Define to 1 if you have the <libecap/common/registry.h> header file. */
#undef HAVE_LIBECAP_COMMON_REGISTRY_H
/* Define to 1 if you have the <libecap/common/version.h> header file. */
#undef HAVE_LIBECAP_COMMON_VERSION_H
/* Define to 1 if you have the <libecap/host/host.h> header file. */
#undef HAVE_LIBECAP_HOST_HOST_H
/* Define to 1 if you have the <libecap/host/xaction.h> header file. */
#undef HAVE_LIBECAP_HOST_XACTION_H
/* Define to 1 if you have the `gnumalloc' library (-lgnumalloc). */
#undef HAVE_LIBGNUMALLOC
/* Define as 1 to enable 'gnutls' library support. */
#undef HAVE_LIBGNUTLS
/* Define as 1 to enable 'gss' library support. */
#undef HAVE_LIBGSS
/* Define as 1 to enable 'heimdal-krb5' library support. */
#undef HAVE_LIBHEIMDAL_KRB5
/* Define to 1 if you have the `intl' library (-lintl). */
#undef HAVE_LIBINTL
/* Define as 1 to enable 'ldap' library support. */
#undef HAVE_LIBLDAP
/* Define to 1 if you have the `malloc' library (-lmalloc). */
#undef HAVE_LIBMALLOC
/* Define as 1 to enable 'mit-krb5' library support. */
#undef HAVE_LIBMIT_KRB5
/* Define as 1 to enable 'netfilter-conntrack' library support. */
#undef HAVE_LIBNETFILTER_CONNTRACK
/* Define to 1 if you have the
<libnetfilter_conntrack/libnetfilter_conntrack.h> header file. */
#undef HAVE_LIBNETFILTER_CONNTRACK_LIBNETFILTER_CONNTRACK_H
/* Define to 1 if you have the
<libnetfilter_conntrack/libnetfilter_conntrack_tcp.h> header file. */
#undef HAVE_LIBNETFILTER_CONNTRACK_LIBNETFILTER_CONNTRACK_TCP_H
/* Define as 1 to enable 'nettle' library support. */
#undef HAVE_LIBNETTLE
/* Define as 1 to enable 'psapi' library support. */
#undef HAVE_LIBPSAPI
/* Define as 1 to enable 'sasl' library support. */
#undef HAVE_LIBSASL
/* "Define to 1 if the OPENSSL_init_ssl() OpenSSL API function exists" */
#undef HAVE_LIBSSL_OPENSSL_INIT_SSL
/* "Define to 1 if the SSL_CIPHER_find() OpenSSL API function exists" */
#undef HAVE_LIBSSL_SSL_CIPHER_FIND
/* "Define to 1 if the SSL_CTX_set_tmp_rsa_callback() OpenSSL API function
exists" */
#undef HAVE_LIBSSL_SSL_CTX_SET_TMP_RSA_CALLBACK
/* "Define to 1 if the SSL_get_client_random() OpenSSL API function exists" */
#undef HAVE_LIBSSL_SSL_GET_CLIENT_RANDOM
/* "Define to 1 if the SSL_SESSION_get_id() OpenSSL API function exists" */
#undef HAVE_LIBSSL_SSL_SESSION_GET_ID
/* "Define to 1 if the SSL_SESSION_get_master_key() OpenSSL API function
exists" */
#undef HAVE_LIBSSL_SSL_SESSION_GET_MASTER_KEY
/* Define as 1 to enable 'systemd' library support. */
#undef HAVE_LIBSYSTEMD
/* Define as 1 to enable 'tdb' library support. */
#undef HAVE_LIBTDB
/* Define to 1 if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H
/* Define to 1 if you have the <linux/netfilter_ipv4.h> header file. */
#undef HAVE_LINUX_NETFILTER_IPV4_H
/* Define to 1 if you have the <linux/netfilter_ipv6/ip6_tables.h> header
file. */
#undef HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H
/* Define to 1 if you have the <linux/posix_types.h> header file. */
#undef HAVE_LINUX_POSIX_TYPES_H
/* Define to 1 if you have the <linux/types.h> header file. */
#undef HAVE_LINUX_TYPES_H
/* Define to 1 if you have the <lm.h> header file. */
#undef HAVE_LM_H
/* Define this if a modern libltdl is already installed */
#undef HAVE_LTDL
/* Define to 1 if you have the <machine/byte_swap.h> header file. */
#undef HAVE_MACHINE_BYTE_SWAP_H
/* Define to 1 if you have the <mach-o/dyld.h> header file. */
#undef HAVE_MACH_O_DYLD_H
/* Define to 1 if you have the `mallocblksize' function. */
#undef HAVE_MALLOCBLKSIZE
/* Define to 1 if you have the <malloc.h> header file. */
#undef HAVE_MALLOC_H
/* Define to 1 if you have the `mallopt' function. */
#undef HAVE_MALLOPT
/* Define to 1 if you have the <math.h> header file. */
#undef HAVE_MATH_H
/* Define to 1 if you have the `memcpy' function. */
#undef HAVE_MEMCPY
/* Define to 1 if you have the `memmove' function. */
#undef HAVE_MEMMOVE
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the `memrchr' function. */
#undef HAVE_MEMRCHR
/* Define to 1 if you have the `memset' function. */
#undef HAVE_MEMSET
/* Define to 1 if you have the <minix/config.h> header file. */
#undef HAVE_MINIX_CONFIG_H
/* Define to 1 if you have the `mkstemp' function. */
#undef HAVE_MKSTEMP
/* Define to 1 if you have the `mktime' function. */
#undef HAVE_MKTIME
/* mode_t is defined by the system headers */
#undef HAVE_MODE_T
/* Define to 1 if you have the <mount.h> header file. */
#undef HAVE_MOUNT_H
/* Define to 1 if you have the <mozldap/ldap.h> header file. */
#undef HAVE_MOZLDAP_LDAP_H
/* The system provides struct msghdr */
#undef HAVE_MSGHDR
/* Define to 1 if you have the `mstats' function. */
#undef HAVE_MSTATS
/* Define to 1 if you have the <mswsock.h> header file. */
#undef HAVE_MSWSOCK_H
/* mtyp_t is defined by the system headers */
#undef HAVE_MTYP_T
/* Define to 1 if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H
/* Define to 1 if you have the <netinet/icmp6.h> header file. */
#undef HAVE_NETINET_ICMP6_H
/* Define to 1 if you have the <netinet/if_ether.h> header file. */
#undef HAVE_NETINET_IF_ETHER_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/in_systm.h> header file. */
#undef HAVE_NETINET_IN_SYSTM_H
/* Define to 1 if you have the <netinet/ip6.h> header file. */
#undef HAVE_NETINET_IP6_H
/* Define to 1 if you have the <netinet/ipl.h> header file. */
#undef HAVE_NETINET_IPL_H
/* Define to 1 if you have the <netinet/ip_compat.h> header file. */
#undef HAVE_NETINET_IP_COMPAT_H
/* Define to 1 if you have the <netinet/ip_fil_compat.h> header file. */
#undef HAVE_NETINET_IP_FIL_COMPAT_H
/* Define to 1 if you have the <netinet/ip_fil.h> header file. */
#undef HAVE_NETINET_IP_FIL_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 <netinet/ip_icmp.h> header file. */
#undef HAVE_NETINET_IP_ICMP_H
/* Define to 1 if you have the <netinet/ip_nat.h> header file. */
#undef HAVE_NETINET_IP_NAT_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 <nettle/base64.h> header file. */
#undef HAVE_NETTLE_BASE64_H
/* Define to 1 if you have the <nettle/md5.h> header file. */
#undef HAVE_NETTLE_MD5_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/if.h> header file. */
#undef HAVE_NET_IF_H
/* Define to 1 if you have the <net/pfvar.h> header file. */
#undef HAVE_NET_PFVAR_H
/* Define to 1 if you have the <net/pf/pfvar.h> header file. */
#undef HAVE_NET_PF_PFVAR_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 <ntsecapi.h> header file. */
#undef HAVE_NTSECAPI_H
/* Define to 1 if you have the <objbase.h> header file. */
#undef HAVE_OBJBASE_H
/* Define to 1 if you have the `opendir' function. */
#undef HAVE_OPENDIR
/* Define to 1 if you have the <openssl/asn1.h> header file. */
#undef HAVE_OPENSSL_ASN1_H
/* Define to 1 if you have the <openssl/bio.h> header file. */
#undef HAVE_OPENSSL_BIO_H
/* Define to 1 if you have the <openssl/bn.h> header file. */
#undef HAVE_OPENSSL_BN_H
/* Define to 1 if you have the <openssl/crypto.h> header file. */
#undef HAVE_OPENSSL_CRYPTO_H
/* Define to 1 if you have the <openssl/decoder.h> header file. */
#undef HAVE_OPENSSL_DECODER_H
/* Define to 1 if you have the <openssl/dh.h> header file. */
#undef HAVE_OPENSSL_DH_H
/* Define to 1 if you have the <openssl/engine.h> header file. */
#undef HAVE_OPENSSL_ENGINE_H
/* Define to 1 if you have the <openssl/err.h> header file. */
#undef HAVE_OPENSSL_ERR_H
/* Define to 1 if you have the <openssl/evp.h> header file. */
#undef HAVE_OPENSSL_EVP_H
/* Define to 1 if you have the <openssl/lhash.h> header file. */
#undef HAVE_OPENSSL_LHASH_H
/* Define to 1 if you have the <openssl/md5.h> header file. */
#undef HAVE_OPENSSL_MD5_H
/* Define to 1 if you have the <openssl/opensslv.h> header file. */
#undef HAVE_OPENSSL_OPENSSLV_H
/* Define to 1 if you have the <openssl/pem.h> header file. */
#undef HAVE_OPENSSL_PEM_H
/* Define to 1 if you have the <openssl/rsa.h> header file. */
#undef HAVE_OPENSSL_RSA_H
/* Define to 1 if you have the <openssl/ssl.h> header file. */
#undef HAVE_OPENSSL_SSL_H
/* "Define to 1 if the TLS_client_method() OpenSSL API function exists" */
#undef HAVE_OPENSSL_TLS_CLIENT_METHOD
/* "Define to 1 if the TLS_method() OpenSSL API function exists" */
#undef HAVE_OPENSSL_TLS_METHOD
/* "Define to 1 if the TLS_server_method() OpenSSL API function exists" */
#undef HAVE_OPENSSL_TLS_SERVER_METHOD
/* Define to 1 if you have the <openssl/txt_db.h> header file. */
#undef HAVE_OPENSSL_TXT_DB_H
/* Define to 1 if you have the <openssl/x509v3.h> header file. */
#undef HAVE_OPENSSL_X509V3_H
/* Define to 1 if you have the <openssl/x509.h> header file. */
#undef HAVE_OPENSSL_X509_H
/* pad128_t is defined in system headers */
#undef HAVE_PAD128_T
/* Define to 1 if you have the <paths.h> header file. */
#undef HAVE_PATHS_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 `prctl' function. */
#undef HAVE_PRCTL
/* Define if libtool can extract symbol lists from object files. */
#undef HAVE_PRELOADED_SYMBOLS
/* Define to 1 if you have the <priv.h> header file. */
#undef HAVE_PRIV_H
/* Define to 1 if you have the `procctl' function. */
#undef HAVE_PROCCTL
/* Define to 1 if you have profile_get_integer */
#undef HAVE_PROFILE_GET_INTEGER
/* Define to 1 if you have the <profile.h> header file. */
#undef HAVE_PROFILE_H
/* Define to 1 if you have profile_release */
#undef HAVE_PROFILE_RELEASE
/* Define to 1 if you have the <psapi.h> header file. */
#undef HAVE_PSAPI_H
/* Define to 1 if you have the `psignal' function. */
#undef HAVE_PSIGNAL
/* Define to 1 if you have the `pthread_attr_setschedparam' function. */
#undef HAVE_PTHREAD_ATTR_SETSCHEDPARAM
/* Define to 1 if you have the `pthread_attr_setscope' function. */
#undef HAVE_PTHREAD_ATTR_SETSCOPE
/* Define to 1 if you have the `pthread_setschedparam' function. */
#undef HAVE_PTHREAD_SETSCHEDPARAM
/* Define to 1 if you have the `pthread_sigmask' function. */
#undef HAVE_PTHREAD_SIGMASK
/* Define to 1 if you have the `putenv' function. */
#undef HAVE_PUTENV
/* Define to 1 if you have the <pwd.h> header file. */
#undef HAVE_PWD_H
/* Define to 1 if you have the `readdir' function. */
#undef HAVE_READDIR
/* Define to 1 if you have the `regcomp' function. */
#undef HAVE_REGCOMP
/* Define to 1 if you have the `regexec' function. */
#undef HAVE_REGEXEC
/* Define to 1 if you have the <regex.h> header file. */
#undef HAVE_REGEX_H
/* Define to 1 if you have the `regfree' function. */
#undef HAVE_REGFREE
/* Define to 1 if you have the <resolv.h> header file. */
#undef HAVE_RESOLV_H
/* Define to 1 if you have the `res_init' function. */
#undef HAVE_RES_INIT
/* Define to 1 if you have the `rint' function. */
#undef HAVE_RINT
/* Define to 1 if you have the <rpcsvc/ypclnt.h> header file. */
#undef HAVE_RPCSVC_YPCLNT_H
/* Define to 1 if you have the <rpcsvc/yp_prot.h> header file. */
#undef HAVE_RPCSVC_YP_PROT_H
/* Define to 1 if you have the <rpc/rpc.h> header file. */
#undef HAVE_RPC_RPC_H
/* Define to 1 if you have the <sasl.h> header file. */
#undef HAVE_SASL_H
/* Define to 1 if you have the <sasl/sasl.h> header file. */
#undef HAVE_SASL_SASL_H
/* Define to 1 if you have the `sched_getaffinity' function. */
#undef HAVE_SCHED_GETAFFINITY
/* Define to 1 if you have the <sched.h> header file. */
#undef HAVE_SCHED_H
/* Define to 1 if you have the `sched_setaffinity' function. */
#undef HAVE_SCHED_SETAFFINITY
/* Define to 1 if you have the <sddl.h> header file. */
#undef HAVE_SDDL_H
/* Define to 1 if you have the <security.h> header file. */
#undef HAVE_SECURITY_H
/* 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 `select' function. */
#undef HAVE_SELECT
/* Define to 1 if you have the `seteuid' function. */
#undef HAVE_SETEUID
/* Define to 1 if you have the `setgroups' function. */
#undef HAVE_SETGROUPS
/* Define to 1 if you have the `setpflags' function. */
#undef HAVE_SETPFLAGS
/* Define to 1 if you have the `setpgrp' function. */
#undef HAVE_SETPGRP
/* Define to 1 if you have the `setresuid' function. */
#undef HAVE_SETRESUID
/* Define to 1 if you have the `setrlimit' function. */
#undef HAVE_SETRLIMIT
/* Define to 1 if you have the `setsid' function. */
#undef HAVE_SETSID
/* Define to 1 if you have the <shadow.h> header file. */
#undef HAVE_SHADOW_H
/* Define if you have the shl_load function. */
#undef HAVE_SHL_LOAD
/* Support shared memory features */
#undef HAVE_SHM
/* Define to 1 if you have the `sigaction' function. */
#undef HAVE_SIGACTION
/* Define to 1 if you have the <siginfo.h> header file. */
#undef HAVE_SIGINFO_H
/* Define to 1 if you have the <signal.h> header file. */
#undef HAVE_SIGNAL_H
/* Defined if struct sockaddr_in6 has sin6_len */
#undef HAVE_SIN6_LEN_IN_SAI
/* Define if sockaddr_in has field sin_len */
#undef HAVE_SIN_LEN_IN_SAI
/* Define to 1 if you have the `snprintf' function. */
#undef HAVE_SNPRINTF
/* The system provides sockaddr_un */
#undef HAVE_SOCKADDR_UN
/* Define to 1 if you have the `socketpair' function. */
#undef HAVE_SOCKETPAIR
/* socklen_t is defined by the system headers */
#undef HAVE_SOCKLEN_T
/* SPNEGO support */
#undef HAVE_SPNEGO
/* SSL_CTX_get0_certificate is available */
#undef HAVE_SSL_CTX_GET0_CERTIFICATE
/* "Define to 1 of the SSL_get0_param() OpenSSL API function exists" */
#undef HAVE_SSL_GET0_PARAM
/* Define to 1 if you have the <sspi.h> header file. */
#undef HAVE_SSPI_H
/* Define if sockaddr_storage has field ss_len */
#undef HAVE_SS_LEN_IN_SS
/* Define to 1 if you have the `statfs' function. */
#undef HAVE_STATFS
/* set to 1 if our system has statvfs(), and if it actually works */
#undef HAVE_STATVFS
/* Define to 1 if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_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 <stdio.h> header file. */
#undef HAVE_STDIO_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the `strerror' function. */
#undef HAVE_STRERROR
/* 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 you have the `strlcat' function. */
#undef HAVE_STRLCAT
/* Define to 1 if you have the `strlcpy' function. */
#undef HAVE_STRLCPY
/* Define to 1 if you have the `strtoll' function. */
#undef HAVE_STRTOLL
/* Define to 1 if `ip_hl' is a member of `struct iphdr'. */
#undef HAVE_STRUCT_IPHDR_IP_HL
/* Define to 1 if `nl_inipaddr.in6' is a member of `struct natlookup'. */
#undef HAVE_STRUCT_NATLOOKUP_NL_INIPADDR_IN6
/* Define to 1 if `nl_realipaddr.in6' is a member of `struct natlookup'. */
#undef HAVE_STRUCT_NATLOOKUP_NL_REALIPADDR_IN6
/* The system provides struct rusage */
#undef HAVE_STRUCT_RUSAGE
/* Define to 1 if `tm_gmtoff' is a member of `struct tm'. */
#undef HAVE_STRUCT_TM_TM_GMTOFF
/* Define to 1 if you have the <syscall.h> header file. */
#undef HAVE_SYSCALL_H
/* Define to 1 if you have the `sysconf' function. */
#undef HAVE_SYSCONF
/* Define to 1 if you have the `syslog' function. */
#undef HAVE_SYSLOG
/* Define to 1 if you have the <syslog.h> header file. */
#undef HAVE_SYSLOG_H
/* 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/bitypes.h> header file. */
#undef HAVE_SYS_BITYPES_H
/* Define to 1 if you have the <sys/bswap.h> header file. */
#undef HAVE_SYS_BSWAP_H
/* Define to 1 if you have the <sys/capability.h> header file. */
#undef HAVE_SYS_CAPABILITY_H
/* Define to 1 if you have the <sys/devpoll.h> header file. */
#undef HAVE_SYS_DEVPOLL_H
/* Define to 1 if you have the <sys/dl.h> header file. */
#undef HAVE_SYS_DL_H
/* Define to 1 if you have the <sys/endian.h> header file. */
#undef HAVE_SYS_ENDIAN_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/file.h> header file. */
#undef HAVE_SYS_FILE_H
/* Define to 1 if you have the <sys/ioccom.h> header file. */
#undef HAVE_SYS_IOCCOM_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.cc> header file. */
#undef HAVE_SYS_IPC_CC
/* Define to 1 if you have the <sys/md5.h> header file. */
#undef HAVE_SYS_MD5_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/msg.h> header file. */
#undef HAVE_SYS_MSG_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/prctl.h> header file. */
#undef HAVE_SYS_PRCTL_H
/* Define to 1 if you have the <sys/procctl.h> header file. */
#undef HAVE_SYS_PROCCTL_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/select.h> header file. */
#undef HAVE_SYS_SELECT_H
/* Define to 1 if you have the <sys/shm.h> header file. */
#undef HAVE_SYS_SHM_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/sysctl.h> header file. */
#undef HAVE_SYS_SYSCTL_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/vfs.h> header file. */
#undef HAVE_SYS_VFS_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 <tchar.h> header file. */
#undef HAVE_TCHAR_H
/* Define to 1 if you have the <tdb.h> header file. */
#undef HAVE_TDB_H
/* Define to 1 if you have the `tempnam' function. */
#undef HAVE_TEMPNAM
/* Define to 1 if you have the `timegm' function. */
#undef HAVE_TIMEGM
/* Define to 1 if you have the <time.h> header file. */
#undef HAVE_TIME_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* System supports unix sockets */
#undef HAVE_UNIXSOCKET
/* upad128_t is defined in system headers */
#undef HAVE_UPAD128_T
/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H
/* Define to 1 if you have the <valgrind/memcheck.h> header file. */
#undef HAVE_VALGRIND_MEMCHECK_H
/* Define to 1 if you have the <varargs.h> header file. */
#undef HAVE_VARARGS_H
/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF
/* Define to 1 if you have the <w32api/windows.h> header file. */
#undef HAVE_W32API_WINDOWS_H
/* Define to 1 if you have the <wchar.h> header file. */
#undef HAVE_WCHAR_H
/* Define to 1 if you have the <windows.h> header file. */
#undef HAVE_WINDOWS_H
/* Define to 1 if you have the <winldap.h> header file. */
#undef HAVE_WINLDAP_H
/* Define to 1 if you have the <winsock2.h> header file. */
#undef HAVE_WINSOCK2_H
/* This value is set to 1 to indicate that the system argz facility works */
#undef HAVE_WORKING_ARGZ
/* Define to 1 if you have the `write' function. */
#undef HAVE_WRITE
/* Define to 1 if you have the <ws2tcpip.h> header file. */
#undef HAVE_WS2TCPIP_H
/* "Define to 1 if the X509_VERIFY_PARAM_set_auth_level() OpenSSL API function
exists" */
#undef HAVE_X509_VERIFY_PARAM_SET_AUTH_LEVEL
/* Define to 1 if you have the `__htole16' function. */
#undef HAVE___HTOLE16
/* Define to 1 if you have the `__htole32' function. */
#undef HAVE___HTOLE32
/* Define to 1 if you have the `__le16toh' function. */
#undef HAVE___LE16TOH
/* Define to 1 if you have the `__le32toh' function. */
#undef HAVE___LE32TOH
/* Define to 1 if you have the `__res_init' function. */
#undef HAVE___RES_INIT
/* Enable ICAP client features in Squid */
#undef ICAP_CLIENT
/* Enable support for Transparent Proxy on systems using FreeBSD IPFW-style
firewalling. */
#undef IPFW_TRANSPARENT
/* Enable support for IPF-style transparent proxying */
#undef IPF_TRANSPARENT
/* libresolv.a has been hacked to export _dns_ttl_ */
#undef LIBRESOLV_DNS_TTL_HACK
/* Enable support for Transparent Proxy on Linux via Netfilter */
#undef LINUX_NETFILTER
/* Define if the OS needs help to load dependent libraries for dlopen(). */
#undef LTDL_DLOPEN_DEPLIBS
/* Define to the system default library search path. */
#undef LT_DLSEARCH_PATH
/* The archive extension */
#undef LT_LIBEXT
/* The archive prefix */
#undef LT_LIBPREFIX
/* Define to the extension used for runtime loadable modules, say, ".so". */
#undef LT_MODULE_EXT
/* Define to the name of the environment variable that determines the run-time
module search path. */
#undef LT_MODULE_PATH_VAR
/* Define to the sub-directory where libtool stores uninstalled libraries. */
#undef LT_OBJDIR
/* Define to the shared library suffix, say, ".dylib". */
#undef LT_SHARED_EXT
/* Define to the shared archive member specification, say "(shr.o)". */
#undef LT_SHARED_LIB_MEMBER
/* If MAXPATHLEN has not been defined */
#undef MAXPATHLEN
/* If we need to declare sys_errlist as extern */
#undef NEED_SYS_ERRLIST
/* Define if dlsym() requires a leading underscore in symbol names. */
#undef NEED_USCORE
/* 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
/* Defined to const or empty depending on the style used by the OS to refer to
the PAM message dialog func */
#undef PAM_CONV_FUNC_CONST_PARM
/* Enable support for PF-style transparent proxying */
#undef PF_TRANSPARENT
/* Print stack traces on fatal errors */
#undef PRINT_STACK_TRACE
/* The size of `int64_t', as computed by sizeof. */
#undef SIZEOF_INT64_T
/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The size of `off_t', as computed by sizeof. */
#undef SIZEOF_OFF_T
/* 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
/* Squid extended build info field for "squid -v" output */
#undef SQUID_BUILD_INFO
/* configure command line used to configure Squid */
#undef SQUID_CONFIGURE_OPTIONS
/* Define to const if X509_get0_signature() accepts const parameters; define
as empty otherwise. Don't leave it undefined! */
#undef SQUID_CONST_X509_GET0_SIGNATURE_ARGS
/* UDP receive buffer size */
#undef SQUID_DETECT_UDP_SO_RCVBUF
/* UDP send buffer size */
#undef SQUID_DETECT_UDP_SO_SNDBUF
/* Maximum number of open filedescriptors */
#undef SQUID_MAXFD
/* Define to enable SNMP monitoring of Squid */
#undef SQUID_SNMP
/* "Define to 1 if the SSL_get_certificate crashes squid" */
#undef SQUID_SSLGETCERTIFICATE_BUGGY
/* "Define to 1 if the TXT_DB uses OPENSSL_PSTRING data member" */
#undef SQUID_SSLTXTDB_PSTRINGDATA
/* "Define to 1 to use squid workaround for buggy versions of
sk_OPENSSL_PSTRING_value" */
#undef SQUID_STACKOF_PSTRINGDATA_HACK
/* TCP receive buffer size */
#undef SQUID_TCP_SO_RCVBUF
/* TCP send buffer size */
#undef SQUID_TCP_SO_SNDBUF
/* "Define to 1 if the SSL_get_new_ex_index() dup callback accepts 'const
CRYPTO_EX_DATA *'" */
#undef SQUID_USE_CONST_CRYPTO_EX_DATA_DUP
/* "Define to 1 if the SSL_CTX_new and similar openSSL API functions require
'const SSL_METHOD *'" */
#undef SQUID_USE_CONST_SSL_METHOD
/* "Define to 1 if the SSL_CTX_sess_set_get_cb() callback accepts a const ID
argument" */
#undef SQUID_USE_CONST_SSL_SESSION_CBID
/* "Define to 1 to use squid workaround for SSL_get_certificate" */
#undef SQUID_USE_SSLGETCERTIFICATE_HACK
/* "Define to 1 to use squid workaround for openssl IMPLEMENT_LHASH_* type
conversion errors" */
#undef SQUID_USE_SSLLHASH_HACK
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
automatically deduced at runtime.
STACK_DIRECTION > 0 => grows toward higher addresses
STACK_DIRECTION < 0 => grows toward lower addresses
STACK_DIRECTION = 0 => direction of growth unknown */
#undef STACK_DIRECTION
/* Define to 1 if all of the C90 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS
/* common adaptation support */
#undef USE_ADAPTATION
/* Apple Kerberos support is available */
#undef USE_APPLE_KRB5
/* Enable support for authentication */
#undef USE_AUTH
/* BerkleyDB support is available */
#undef USE_BERKLEYDB
/* Use Cache Digests for locating objects in neighbor caches. */
#undef USE_CACHE_DIGESTS
/* Traffic management via "delay pools". */
#undef USE_DELAY_POOLS
/* Use /dev/poll for the IO loop */
#undef USE_DEVPOLL
/* DiskIO modules are expected to be available. */
#undef USE_DISKIO
/* Whether to use eCAP support */
#undef USE_ECAP
/* Use epoll() for the IO loop */
#undef USE_EPOLL
/* Use multi-language support on error pages */
#undef USE_ERR_LOCALES
/* Enable Forw/Via database */
#undef USE_FORW_VIA_DB
/* Define this to include code for the Hypertext Cache Protocol (HTCP) */
#undef USE_HTCP
/* Define to enable code which volates the HTTP standard specification */
#undef USE_HTTP_VIOLATIONS
/* Define to use Squid ICMP and Network Measurement features (highly
recommended!) */
#undef USE_ICMP
/* Enable support for IPv6 */
#undef USE_IPV6
/* Use kqueue() for the IO loop */
#undef USE_KQUEUE
/* Enable support for QOS netfilter mark preservation */
#undef USE_LIBNETFILTERCONNTRACK
/* Support Loadable Modules */
#undef USE_LOADABLE_MODULES
/* Enable support for /dev/pf NAT lookups */
#undef USE_NAT_DEVPF
/* OpenSSL support is available */
#undef USE_OPENSSL
/* Use poll() for the IO loop */
#undef USE_POLL
/* Enable Zero Penalty Hit QOS. When set, Squid will alter the TOS field of
HIT responses to help policing network traffic */
#undef USE_QOS_TOS
/* Use select() for the IO loop */
#undef USE_SELECT
/* Workaround IPFilter minor_t breakage */
#undef USE_SOLARIS_IPFILTER_MINOR_T_HACK
/* Solaris Kerberos support is available */
#undef USE_SOLARIS_KRB5
/* Define this to include code which lets you use ethernet addresses. This
code uses API initially defined in 4.4-BSD. */
#undef USE_SQUID_EUI
/* Use ssl-crtd daemon */
#undef USE_SSL_CRTD
/* Enable extensions on AIX 3, Interix. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
/* Enable general extensions on macOS. */
#ifndef _DARWIN_C_SOURCE
# undef _DARWIN_C_SOURCE
#endif
/* Enable general extensions on Solaris. */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable X/Open compliant socket functions that do not require linking
with -lxnet on HP-UX 11.11. */
#ifndef _HPUX_ALT_XOPEN_SOCKET_API
# undef _HPUX_ALT_XOPEN_SOCKET_API
#endif
/* Identify the host operating system as Minix.
This macro does not affect the system headers' behavior.
A future release of Autoconf may stop defining this macro. */
#ifndef _MINIX
# undef _MINIX
#endif
/* Enable general extensions on NetBSD.
Enable NetBSD compatibility extensions on Minix. */
#ifndef _NETBSD_SOURCE
# undef _NETBSD_SOURCE
#endif
/* Enable OpenBSD compatibility extensions on NetBSD.
Oddly enough, this does nothing on OpenBSD. */
#ifndef _OPENBSD_SOURCE
# undef _OPENBSD_SOURCE
#endif
/* Define to 1 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_SOURCE
# undef _POSIX_SOURCE
#endif
/* Define to 2 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_1_SOURCE
# undef _POSIX_1_SOURCE
#endif
/* Enable POSIX-compatible threading on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif
/* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
# undef __STDC_WANT_IEC_60559_BFP_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
# undef __STDC_WANT_IEC_60559_DFP_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
# undef __STDC_WANT_IEC_60559_TYPES_EXT__
#endif
/* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
#ifndef __STDC_WANT_LIB_EXT2__
# undef __STDC_WANT_LIB_EXT2__
#endif
/* Enable extensions specified by ISO/IEC 24747:2009. */
#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
# undef __STDC_WANT_MATH_SPEC_FUNCS__
#endif
/* Enable extensions on HP NonStop. */
#ifndef _TANDEM_SOURCE
# undef _TANDEM_SOURCE
#endif
/* Enable X/Open extensions. Define to 500 only if necessary
to make mbstate_t available. */
#ifndef _XOPEN_SOURCE
# undef _XOPEN_SOURCE
#endif
/* Enable useage of unlinkd */
#undef USE_UNLINKD
/* Define to enable WCCP */
#undef USE_WCCP
/* Define to enable WCCP V2 */
#undef USE_WCCPv2
/* Enable code supporting MS Windows service mode */
#undef USE_WIN32_SERVICE
/* Version number of package */
#undef VERSION
/* Valgrind memory debugger support */
#undef WITH_VALGRIND
/* 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
/* Show malloc statistics in status page */
#undef XMALLOC_STATISTICS
/* Enable support for the X-Accelerator-Vary HTTP header */
#undef X_ACCELERATOR_VARY
/* Nameserver Counter for IPv6 _res */
#undef _SQUID_RES_NSADDR6_COUNT
/* If _res_ext structure has nsaddr_list member */
#undef _SQUID_RES_NSADDR6_LARRAY
/* If _res structure has _ext.nsaddrs member */
#undef _SQUID_RES_NSADDR6_LPTR
/* Nameserver counter for IPv4 _res */
#undef _SQUID_RES_NSADDR_COUNT
/* If _res structure has ns_list member */
#undef _SQUID_RES_NSADDR_LIST
/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#undef _UINT32_T
/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#undef _UINT64_T
/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#undef _UINT8_T
/* Define so that glibc/gnulib argp.h does not typedef error_t. */
#undef __error_t_defined
/* Define to empty if `const' does not conform to ANSI C. */
#undef const
/* Define to a type to use for 'error_t' if it is not otherwise available. */
#undef error_t
/* Define to `int' if <sys/types.h> doesn't define. */
#undef gid_t
/* Define to the type of a signed integer type of width exactly 16 bits if
such a type exists and the standard includes do not define it. */
#undef int16_t
/* Define to the type of a signed integer type of width exactly 32 bits if
such a type exists and the standard includes do not define it. */
#undef int32_t
/* Define to the type of a signed integer type of width exactly 64 bits if
such a type exists and the standard includes do not define it. */
#undef int64_t
/* Define to the type of a signed integer type of width exactly 8 bits if such
a type exists and the standard includes do not define it. */
#undef int8_t
/* Define to 1 if you have Mozilla LDAP SDK */
#undef m4_translit
/* Define to `long int' if <sys/types.h> does not define. */
#undef off_t
/* Define as a signed integer type capable of holding a process identifier. */
#undef pid_t
/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t
/* Define to `int' if <sys/types.h> does not define. */
#undef ssize_t
/* Define to `int' if <sys/types.h> doesn't define. */
#undef uid_t
/* Define to the type of an unsigned integer type of width exactly 16 bits if
such a type exists and the standard includes do not define it. */
#undef uint16_t
/* Define to the type of an unsigned integer type of width exactly 32 bits if
such a type exists and the standard includes do not define it. */
#undef uint32_t
/* Define to the type of an unsigned integer type of width exactly 64 bits if
such a type exists and the standard includes do not define it. */
#undef uint64_t
/* Define to the type of an unsigned integer type of width exactly 8 bits if
such a type exists and the standard includes do not define it. */
#undef uint8_t
|