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 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489
|
/* include/config.h.in. Generated from configure.in by autoheader. */
/* Whether the host os is aix */
#undef AIX
/* Whether the AIX send_file() API is available */
#undef AIX_SENDFILE_API
/* Does extattr API work */
#undef BROKEN_EXTATTR
/* Does getgrnam work correctly */
#undef BROKEN_GETGRNAM
/* Whether the nisplus include files are broken */
#undef BROKEN_NISPLUS_INCLUDE_FILES
/* Broken RedHat 7.2 system header files */
#undef BROKEN_REDHAT_7_SYSTEM_HEADERS
/* Does strndup work correctly */
#undef BROKEN_STRNDUP
/* Does strnlen work correctly */
#undef BROKEN_STRNLEN
/* Does this system use unicode compose characters */
#undef BROKEN_UNICODE_COMPOSE_CHARACTERS
/* Whether to enable cluster extensions */
#undef CLUSTER_SUPPORT
/* Whether the compiler supports the LL prefix on long long integers */
#undef COMPILER_SUPPORTS_LL
/* Whether the host os is Darwin/MacOSX */
#undef DARWINOS
/* Default display charset name */
#undef DEFAULT_DISPLAY_CHARSET
/* Default dos charset name */
#undef DEFAULT_DOS_CHARSET
/* Default unix charset name */
#undef DEFAULT_UNIX_CHARSET
/* Define to check invariants around some common functions */
#undef DMALLOC_FUNC_CHECK
/* Define to turn on dmalloc debugging */
#undef ENABLE_DMALLOC
/* Whether the host os is FreeBSD */
#undef FREEBSD
/* Whether the FreeBSD sendfile() API is available */
#undef FREEBSD_SENDFILE_API
/* Whether we are running on 64bit linux */
#undef HAVE_64BIT_LINUX
/* Whether acl_get_perm_np() is available */
#undef HAVE_ACL_GET_PERM_NP
/* Whether the krb5_address struct has a addrtype property */
#undef HAVE_ADDRTYPE_IN_KRB5_ADDRESS
/* Whether the krb5_address struct has a addr_type property */
#undef HAVE_ADDR_TYPE_IN_KRB5_ADDRESS
/* Define to 1 if you have the `add_proplist_entry' function. */
#undef HAVE_ADD_PROPLIST_ENTRY
/* Define to 1 if you have the <afs/afs.h> header file. */
#undef HAVE_AFS_AFS_H
/* Define to 1 if you have the <afs.h> header file. */
#undef HAVE_AFS_H
/* Whether 64 bit aio is available */
#undef HAVE_AIOCB64
/* Have aio_cancel */
#undef HAVE_AIO_CANCEL
/* Have aio_cancel64 */
#undef HAVE_AIO_CANCEL64
/* Have aio_error */
#undef HAVE_AIO_ERROR
/* Have aio_error64 */
#undef HAVE_AIO_ERROR64
/* Have aio_fsync */
#undef HAVE_AIO_FSYNC
/* Have aio_fsync64 */
#undef HAVE_AIO_FSYNC64
/* Define to 1 if you have the <aio.h> header file. */
#undef HAVE_AIO_H
/* Have aio_read */
#undef HAVE_AIO_READ
/* Have aio_read64 */
#undef HAVE_AIO_READ64
/* Have aio_return */
#undef HAVE_AIO_RETURN
/* Have aio_return64 */
#undef HAVE_AIO_RETURN64
/* Have aio_suspend */
#undef HAVE_AIO_SUSPEND
/* Have aio_suspend64 */
#undef HAVE_AIO_SUSPEND64
/* Have aio_write */
#undef HAVE_AIO_WRITE
/* Have aio_write64 */
#undef HAVE_AIO_WRITE64
/* Whether AIX ACLs are available */
#undef HAVE_AIX_ACLS
/* Define to 1 if you have the <alloca.h> header file. */
#undef HAVE_ALLOCA_H
/* Whether the AP_OPTS_USE_SUBKEY ap option is available */
#undef HAVE_AP_OPTS_USE_SUBKEY
/* Define to 1 if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H
/* check for <asm/types.h> */
#undef HAVE_ASM_TYPES_H
/* Define to 1 if you have the `asprintf' function. */
#undef HAVE_ASPRINTF
/* Whether asprintf() is available */
#undef HAVE_ASPRINTF_DECL
/* Define to 1 if you have the `atexit' function. */
#undef HAVE_ATEXIT
/* Define to 1 if you have the `attr_get' function. */
#undef HAVE_ATTR_GET
/* Define to 1 if you have the `attr_getf' function. */
#undef HAVE_ATTR_GETF
/* Define to 1 if you have the `attr_list' function. */
#undef HAVE_ATTR_LIST
/* Define to 1 if you have the `attr_listf' function. */
#undef HAVE_ATTR_LISTF
/* Define to 1 if you have the `attr_remove' function. */
#undef HAVE_ATTR_REMOVE
/* Define to 1 if you have the `attr_removef' function. */
#undef HAVE_ATTR_REMOVEF
/* Define to 1 if you have the `attr_set' function. */
#undef HAVE_ATTR_SET
/* Define to 1 if you have the `attr_setf' function. */
#undef HAVE_ATTR_SETF
/* Define to 1 if you have the <attr/xattr.h> header file. */
#undef HAVE_ATTR_XATTR_H
/* Define to 1 if you have the `backtrace_symbols' function. */
#undef HAVE_BACKTRACE_SYMBOLS
/* Define to 1 if you have the `ber_scanf' function. */
#undef HAVE_BER_SCANF
/* What header to include for iconv() function: biconv.h */
#undef HAVE_BICONV
/* Whether bigcrypt is available */
#undef HAVE_BIGCRYPT
/* Whether fcntl64 locks are broken */
#undef HAVE_BROKEN_FCNTL64_LOCKS
/* Whether getgroups is broken */
#undef HAVE_BROKEN_GETGROUPS
/* Whether readdir() returns the wrong name offset */
#undef HAVE_BROKEN_READDIR_NAME
/* Whether there is a C99 compliant vsnprintf */
#undef HAVE_C99_VSNPRINTF
/* Whether cap_get_proc is available */
#undef HAVE_CAP_GET_PROC
/* Define to 1 if you have the <CFStringEncodingConverter.h> header file. */
#undef HAVE_CFSTRINGENCODINGCONVERTER_H
/* Whether the krb5_checksum struct has a checksum property */
#undef HAVE_CHECKSUM_IN_KRB5_CHECKSUM
/* Define to 1 if you have the `chmod' function. */
#undef HAVE_CHMOD
/* Define to 1 if you have the `chown' function. */
#undef HAVE_CHOWN
/* Define to 1 if you have the `chroot' function. */
#undef HAVE_CHROOT
/* Define to 1 if you have the `chsize' function. */
#undef HAVE_CHSIZE
/* Whether clock_gettime is available */
#undef HAVE_CLOCK_GETTIME
/* Whether the clock_gettime clock ID CLOCK_MONOTONIC is available */
#undef HAVE_CLOCK_MONOTONIC
/* Whether the clock_gettime clock ID CLOCK_PROCESS_CPUTIME_ID is available */
#undef HAVE_CLOCK_PROCESS_CPUTIME_ID
/* Whether the clock_gettime clock ID CLOCK_REALTIME is available */
#undef HAVE_CLOCK_REALTIME
/* Define to 1 if you have the `closedir64' function. */
#undef HAVE_CLOSEDIR64
/* Whether the compiler will optimize out function calls */
#undef HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS
/* Define to 1 if you have the <com_err.h> header file. */
#undef HAVE_COM_ERR_H
/* Whether the system has connect() */
#undef HAVE_CONNECT
/* Define to 1 if you have the `copy_Authenticator' function. */
#undef HAVE_COPY_AUTHENTICATOR
/* Define to 1 if you have the <CoreFoundation/CFStringEncodingConverter.h>
header file. */
#undef HAVE_COREFOUNDATION_CFSTRINGENCODINGCONVERTER_H
/* Define to 1 if you have the `creat64' function. */
#undef HAVE_CREAT64
/* Whether the system has the crypt() function */
#undef HAVE_CRYPT
/* Define to 1 if you have the `crypt16' function. */
#undef HAVE_CRYPT16
/* Define to 1 if you have the <ctype.h> header file. */
#undef HAVE_CTYPE_H
/* Whether we have CUPS */
#undef HAVE_CUPS
/* Define to 1 if you have the `decode_krb5_ap_req' function. */
#undef HAVE_DECODE_KRB5_AP_REQ
/* Define to 1 if you have the `delproplist' function. */
#undef HAVE_DELPROPLIST
/* Define to 1 if you have the `des_set_key' function. */
#undef HAVE_DES_SET_KEY
/* Whether the 'dev64_t' type is available */
#undef HAVE_DEV64_T
/* Whether the major macro for dev_t is available */
#undef HAVE_DEVICE_MAJOR_FN
/* Whether the minor macro for dev_t is available */
#undef HAVE_DEVICE_MINOR_FN
/* Define to 1 if you have the `devnm' function. */
#undef HAVE_DEVNM
/* Define to 1 if you have the <devnm.h> header file. */
#undef HAVE_DEVNM_H
/* Whether dirent has a d_off member */
#undef HAVE_DIRENT_D_OFF
/* 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 `dlclose' function. */
#undef HAVE_DLCLOSE
/* 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 `dlopen' function. */
#undef HAVE_DLOPEN
/* Define to 1 if you have the `dlsym' function. */
#undef HAVE_DLSYM
/* Define to 1 if you have the `dlsym_prepend_underscore' function. */
#undef HAVE_DLSYM_PREPEND_UNDERSCORE
/* struct dqblk .dqb_fsoftlimit */
#undef HAVE_DQB_FSOFTLIMIT
/* Define to 1 if you have the `dup2' function. */
#undef HAVE_DUP2
/* Whether the ENCTYPE_ARCFOUR_HMAC_MD5 key type is available */
#undef HAVE_ENCTYPE_ARCFOUR_HMAC_MD5
/* Define to 1 if you have the `endmntent' function. */
#undef HAVE_ENDMNTENT
/* Define to 1 if you have the `endnetgrent' function. */
#undef HAVE_ENDNETGRENT
/* Whether errno() is available */
#undef HAVE_ERRNO_DECL
/* Whether the EncryptedData struct has a etype property */
#undef HAVE_ETYPE_IN_ENCRYPTEDDATA
/* Define to 1 if you have the <execinfo.h> header file. */
#undef HAVE_EXECINFO_H
/* Define to 1 if you have the `execl' function. */
#undef HAVE_EXECL
/* Whether large file support can be enabled */
#undef HAVE_EXPLICIT_LARGEFILE_SUPPORT
/* Define to 1 if you have the `extattr_delete_fd' function. */
#undef HAVE_EXTATTR_DELETE_FD
/* Define to 1 if you have the `extattr_delete_file' function. */
#undef HAVE_EXTATTR_DELETE_FILE
/* Define to 1 if you have the `extattr_delete_link' function. */
#undef HAVE_EXTATTR_DELETE_LINK
/* Define to 1 if you have the `extattr_get_fd' function. */
#undef HAVE_EXTATTR_GET_FD
/* Define to 1 if you have the `extattr_get_file' function. */
#undef HAVE_EXTATTR_GET_FILE
/* Define to 1 if you have the `extattr_get_link' function. */
#undef HAVE_EXTATTR_GET_LINK
/* Define to 1 if you have the `extattr_list_fd' function. */
#undef HAVE_EXTATTR_LIST_FD
/* Define to 1 if you have the `extattr_list_file' function. */
#undef HAVE_EXTATTR_LIST_FILE
/* Define to 1 if you have the `extattr_list_link' function. */
#undef HAVE_EXTATTR_LIST_LINK
/* Define to 1 if you have the `extattr_set_fd' function. */
#undef HAVE_EXTATTR_SET_FD
/* Define to 1 if you have the `extattr_set_file' function. */
#undef HAVE_EXTATTR_SET_FILE
/* Define to 1 if you have the `extattr_set_link' function. */
#undef HAVE_EXTATTR_SET_LINK
/* Whether the krb5_error struct has a e_data pointer */
#undef HAVE_E_DATA_POINTER_IN_KRB5_ERROR
/* Define to 1 if you have the `FAMOpen2' function. */
#undef HAVE_FAMOPEN2
/* Whether FAM is file notifications are available */
#undef HAVE_FAM_CHANGE_NOTIFY
/* Define to 1 if you have the <fam.h> header file. */
#undef HAVE_FAM_H
/* Whether fam.h contains a typedef for enum FAMCodes */
#undef HAVE_FAM_H_FAMCODES_TYPEDEF
/* Define to 1 if you have the `fchmod' function. */
#undef HAVE_FCHMOD
/* Define to 1 if you have the `fchown' function. */
#undef HAVE_FCHOWN
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Whether fcntl locking is available */
#undef HAVE_FCNTL_LOCK
/* Define to 1 if you have the `fcvt' function. */
#undef HAVE_FCVT
/* Define to 1 if you have the `fcvtl' function. */
#undef HAVE_FCVTL
/* Define to 1 if you have the `fdelproplist' function. */
#undef HAVE_FDELPROPLIST
/* Define to 1 if you have the `fgetea' function. */
#undef HAVE_FGETEA
/* Define to 1 if you have the `fgetproplist' function. */
#undef HAVE_FGETPROPLIST
/* Define to 1 if you have the `fgetxattr' function. */
#undef HAVE_FGETXATTR
/* Define to 1 if you have the `flistea' function. */
#undef HAVE_FLISTEA
/* Define to 1 if you have the `flistxattr' function. */
#undef HAVE_FLISTXATTR
/* Define to 1 if you have the <float.h> header file. */
#undef HAVE_FLOAT_H
/* Define to 1 if you have the `fopen64' function. */
#undef HAVE_FOPEN64
/* Define to 1 if you have the `free_AP_REQ' function. */
#undef HAVE_FREE_AP_REQ
/* Define to 1 if you have the `fremoveea' function. */
#undef HAVE_FREMOVEEA
/* Define to 1 if you have the `fremovexattr' function. */
#undef HAVE_FREMOVEXATTR
/* Define to 1 if you have the `fseek64' function. */
#undef HAVE_FSEEK64
/* Define to 1 if you have the `fseeko64' function. */
#undef HAVE_FSEEKO64
/* Define to 1 if you have the `fsetea' function. */
#undef HAVE_FSETEA
/* Define to 1 if you have the `fsetproplist' function. */
#undef HAVE_FSETPROPLIST
/* Define to 1 if you have the `fsetxattr' function. */
#undef HAVE_FSETXATTR
/* Define to 1 if you have the `fstat' function. */
#undef HAVE_FSTAT
/* Whether fstat64() is available */
#undef HAVE_FSTAT64
/* Define to 1 if you have the `fsync' function. */
#undef HAVE_FSYNC
/* Define to 1 if you have the `ftell64' function. */
#undef HAVE_FTELL64
/* Define to 1 if you have the `ftello64' function. */
#undef HAVE_FTELLO64
/* Define to 1 if you have the `ftruncate' function. */
#undef HAVE_FTRUNCATE
/* Define to 1 if you have the `ftruncate64' function. */
#undef HAVE_FTRUNCATE64
/* Truncate extend */
#undef HAVE_FTRUNCATE_EXTEND
/* Whether there is a __FUNCTION__ macro */
#undef HAVE_FUNCTION_MACRO
/* Define to 1 if you have the `getauthuid' function. */
#undef HAVE_GETAUTHUID
/* Define to 1 if you have the `getcwd' function. */
#undef HAVE_GETCWD
/* Define to 1 if you have the `getdents' function. */
#undef HAVE_GETDENTS
/* Define to 1 if you have the `getdents64' function. */
#undef HAVE_GETDENTS64
/* Define to 1 if you have the `getdirentries' function. */
#undef HAVE_GETDIRENTRIES
/* Define to 1 if you have the `getea' function. */
#undef HAVE_GETEA
/* Define to 1 if you have the `getgrent' function. */
#undef HAVE_GETGRENT
/* Define to 1 if you have the `getgrnam' function. */
#undef HAVE_GETGRNAM
/* Define to 1 if you have the `getgrouplist' function. */
#undef HAVE_GETGROUPLIST
/* Define to 1 if you have the `getmntent' function. */
#undef HAVE_GETMNTENT
/* Define to 1 if you have the `getnetgrent' function. */
#undef HAVE_GETNETGRENT
/* Define to 1 if you have the `getproplist' function. */
#undef HAVE_GETPROPLIST
/* Whether getprpwnam is available */
#undef HAVE_GETPRPWNAM
/* Define to 1 if you have the `getpwanam' function. */
#undef HAVE_GETPWANAM
/* Define to 1 if you have the `getrlimit' function. */
#undef HAVE_GETRLIMIT
/* Whether getspnam is available */
#undef HAVE_GETSPNAM
/* Whether gettimeofday() is available */
#undef HAVE_GETTIMEOFDAY_TZ
/* Define to 1 if you have the `getutmpx' function. */
#undef HAVE_GETUTMPX
/* Define to 1 if you have the `getxattr' function. */
#undef HAVE_GETXATTR
/* Define to 1 if you have the `get_proplist_entry' function. */
#undef HAVE_GET_PROPLIST_ENTRY
/* What header to include for iconv() function: giconv.h */
#undef HAVE_GICONV
/* 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 `grantpt' function. */
#undef HAVE_GRANTPT
/* Define to 1 if you have the <grp.h> header file. */
#undef HAVE_GRP_H
/* Whether GSSAPI is available */
#undef HAVE_GSSAPI
/* 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.h> header file. */
#undef HAVE_GSSAPI_H
/* Define to 1 if you have the `gss_display_status' function. */
#undef HAVE_GSS_DISPLAY_STATUS
/* Define to 1 if you have the <history.h> header file. */
#undef HAVE_HISTORY_H
/* Whether HPUX ACLs are available */
#undef HAVE_HPUX_ACLS
/* What header to include for iconv() function: iconv.h */
#undef HAVE_ICONV
/* Whether iface AIX is available */
#undef HAVE_IFACE_AIX
/* Whether iface ifconf is available */
#undef HAVE_IFACE_IFCONF
/* Whether iface ifreq is available */
#undef HAVE_IFACE_IFREQ
/* Whether the compiler supports immediate structures */
#undef HAVE_IMMEDIATE_STRUCTURES
/* Define to 1 if you have the `initgroups' function. */
#undef HAVE_INITGROUPS
/* Define to 1 if you have the `innetgr' function. */
#undef HAVE_INNETGR
/* Whether the 'ino64_t' type is available */
#undef HAVE_INO64_T
/* Whether int16 typedef is included by rpc/rpc.h */
#undef HAVE_INT16_FROM_RPC_RPC_H
/* Whether int32 typedef is included by rpc/rpc.h */
#undef HAVE_INT32_FROM_RPC_RPC_H
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Whether we have iPrint */
#undef HAVE_IPRINT
/* Whether IRIX ACLs are available */
#undef HAVE_IRIX_ACLS
/* Whether kernel notifies changes */
#undef HAVE_KERNEL_CHANGE_NOTIFY
/* Whether IRIX kernel oplock type definitions are available */
#undef HAVE_KERNEL_OPLOCKS_IRIX
/* Whether to use linux kernel oplocks */
#undef HAVE_KERNEL_OPLOCKS_LINUX
/* Whether the kernel supports share modes */
#undef HAVE_KERNEL_SHARE_MODES
/* Whether to have KRB5 support */
#undef HAVE_KRB5
/* Whether the type krb5_addresses type exists */
#undef HAVE_KRB5_ADDRESSES
/* Define to 1 if you have the `krb5_auth_con_setkey' function. */
#undef HAVE_KRB5_AUTH_CON_SETKEY
/* Define to 1 if you have the `krb5_auth_con_setuseruserkey' function. */
#undef HAVE_KRB5_AUTH_CON_SETUSERUSERKEY
/* Whether the type krb5_crypto exists */
#undef HAVE_KRB5_CRYPTO
/* Define to 1 if you have the `krb5_crypto_destroy' function. */
#undef HAVE_KRB5_CRYPTO_DESTROY
/* Define to 1 if you have the `krb5_crypto_init' function. */
#undef HAVE_KRB5_CRYPTO_INIT
/* Define to 1 if you have the `krb5_c_enctype_compare' function. */
#undef HAVE_KRB5_C_ENCTYPE_COMPARE
/* Define to 1 if you have the `krb5_c_verify_checksum' function. */
#undef HAVE_KRB5_C_VERIFY_CHECKSUM
/* Define to 1 if you have the `krb5_decode_ap_req' function. */
#undef HAVE_KRB5_DECODE_AP_REQ
/* Whether the type krb5_encrypt_block exists */
#undef HAVE_KRB5_ENCRYPT_BLOCK
/* Define to 1 if you have the `krb5_encrypt_data' function. */
#undef HAVE_KRB5_ENCRYPT_DATA
/* Define to 1 if you have the `krb5_enctypes_compatible_keys' function. */
#undef HAVE_KRB5_ENCTYPES_COMPATIBLE_KEYS
/* Define to 1 if you have the `krb5_free_ap_req' function. */
#undef HAVE_KRB5_FREE_AP_REQ
/* Define to 1 if you have the `krb5_free_data_contents' function. */
#undef HAVE_KRB5_FREE_DATA_CONTENTS
/* Define to 1 if you have the `krb5_free_error_contents' function. */
#undef HAVE_KRB5_FREE_ERROR_CONTENTS
/* Define to 1 if you have the `krb5_free_keytab_entry_contents' function. */
#undef HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS
/* Define to 1 if you have the `krb5_free_ktypes' function. */
#undef HAVE_KRB5_FREE_KTYPES
/* Define to 1 if you have the `krb5_free_unparsed_name' function. */
#undef HAVE_KRB5_FREE_UNPARSED_NAME
/* Define to 1 if you have the `krb5_get_default_in_tkt_etypes' function. */
#undef HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES
/* Define to 1 if you have the `krb5_get_init_creds_opt_set_pac_request'
function. */
#undef HAVE_KRB5_GET_INIT_CREDS_OPT_SET_PAC_REQUEST
/* Define to 1 if you have the `krb5_get_kdc_cred' function. */
#undef HAVE_KRB5_GET_KDC_CRED
/* Define to 1 if you have the `krb5_get_permitted_enctypes' function. */
#undef HAVE_KRB5_GET_PERMITTED_ENCTYPES
/* Define to 1 if you have the `krb5_get_pw_salt' function. */
#undef HAVE_KRB5_GET_PW_SALT
/* Define to 1 if you have the `krb5_get_renewed_creds' function. */
#undef HAVE_KRB5_GET_RENEWED_CREDS
/* Define to 1 if you have the <krb5.h> header file. */
#undef HAVE_KRB5_H
/* Whether the krb5_creds struct has a keyblock property */
#undef HAVE_KRB5_KEYBLOCK_IN_CREDS
/* Whether the krb5_keyblock struct has a keyvalue property */
#undef HAVE_KRB5_KEYBLOCK_KEYVALUE
/* Whether krb5_keytab_entry has key member */
#undef HAVE_KRB5_KEYTAB_ENTRY_KEY
/* Whether krb5_keytab_entry has keyblock member */
#undef HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK
/* Whether KRB5_KEYUSAGE_APP_DATA_CKSUM is available */
#undef HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM
/* Define to 1 if you have the `krb5_krbhst_get_addrinfo' function. */
#undef HAVE_KRB5_KRBHST_GET_ADDRINFO
/* Define to 1 if you have the `krb5_kt_compare' function. */
#undef HAVE_KRB5_KT_COMPARE
/* Define to 1 if you have the `krb5_kt_free_entry' function. */
#undef HAVE_KRB5_KT_FREE_ENTRY
/* Whether KRB5_KU_OTHER_CKSUM is available */
#undef HAVE_KRB5_KU_OTHER_CKSUM
/* Define to 1 if you have the `krb5_locate_kdc' function. */
#undef HAVE_KRB5_LOCATE_KDC
/* Define to 1 if you have the `krb5_mk_req_extended' function. */
#undef HAVE_KRB5_MK_REQ_EXTENDED
/* Define to 1 if you have the `krb5_parse_name_norealm' function. */
#undef HAVE_KRB5_PARSE_NAME_NOREALM
/* Define to 1 if you have the `krb5_principal2salt' function. */
#undef HAVE_KRB5_PRINCIPAL2SALT
/* Define to 1 if you have the `krb5_principal_compare_any_realm' function. */
#undef HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM
/* Define to 1 if you have the `krb5_principal_get_comp_string' function. */
#undef HAVE_KRB5_PRINCIPAL_GET_COMP_STRING
/* Whether krb5_princ_component is available */
#undef HAVE_KRB5_PRINC_COMPONENT
/* Define to 1 if you have the `krb5_princ_size' function. */
#undef HAVE_KRB5_PRINC_SIZE
/* Whether the krb5_creds struct has a session property */
#undef HAVE_KRB5_SESSION_IN_CREDS
/* Define to 1 if you have the `krb5_set_default_in_tkt_etypes' function. */
#undef HAVE_KRB5_SET_DEFAULT_IN_TKT_ETYPES
/* Define to 1 if you have the `krb5_set_default_tgs_ktypes' function. */
#undef HAVE_KRB5_SET_DEFAULT_TGS_KTYPES
/* Define to 1 if you have the `krb5_set_real_time' function. */
#undef HAVE_KRB5_SET_REAL_TIME
/* Define to 1 if you have the `krb5_string_to_key' function. */
#undef HAVE_KRB5_STRING_TO_KEY
/* Define to 1 if you have the `krb5_string_to_key_salt' function. */
#undef HAVE_KRB5_STRING_TO_KEY_SALT
/* Whether the krb5_ticket struct has a enc_part2 property */
#undef HAVE_KRB5_TKT_ENC_PART2
/* Define to 1 if you have the `krb5_use_enctype' function. */
#undef HAVE_KRB5_USE_ENCTYPE
/* Whether the KV5M_KEYTAB option is available */
#undef HAVE_KV5M_KEYTAB
/* Define to 1 if you have the <langinfo.h> header file. */
#undef HAVE_LANGINFO_H
/* Define to 1 if you have the <lastlog.h> header file. */
#undef HAVE_LASTLOG_H
/* Define to 1 if you have the <lber.h> header file. */
#undef HAVE_LBER_H
/* Whether ldap is available */
#undef HAVE_LDAP
/* Define to 1 if you have the `ldap_add_result_entry' function. */
#undef HAVE_LDAP_ADD_RESULT_ENTRY
/* Define to 1 if you have the `ldap_dn2ad_canonical' function. */
#undef HAVE_LDAP_DN2AD_CANONICAL
/* Define to 1 if you have the <ldap.h> header file. */
#undef HAVE_LDAP_H
/* Define to 1 if you have the `ldap_init' function. */
#undef HAVE_LDAP_INIT
/* Define to 1 if you have the `ldap_initialize' function. */
#undef HAVE_LDAP_INITIALIZE
/* Define to 1 if you have the `ldap_set_rebind_proc' function. */
#undef HAVE_LDAP_SET_REBIND_PROC
/* Define to 1 if you have the `lgetea' function. */
#undef HAVE_LGETEA
/* Define to 1 if you have the `lgetxattr' function. */
#undef HAVE_LGETXATTR
/* Define to 1 if you have the `asn1' library (-lasn1). */
#undef HAVE_LIBASN1
/* Define to 1 if you have the `com_err' library (-lcom_err). */
#undef HAVE_LIBCOM_ERR
/* Define to 1 if you have the `crypto' library (-lcrypto). */
#undef HAVE_LIBCRYPTO
/* Define to 1 if you have the `dl' library (-ldl). */
#undef HAVE_LIBDL
/* Define to 1 if you have the `exc' library (-lexc). */
#undef HAVE_LIBEXC
/* Define to 1 if you have the <libexc.h> header file. */
#undef HAVE_LIBEXC_H
/* Define to 1 if you have the `fam' library (-lfam). */
#undef HAVE_LIBFAM
/* Define to 1 if you have the `gssapi' library (-lgssapi). */
#undef HAVE_LIBGSSAPI
/* Define to 1 if you have the `gssapi_krb5' library (-lgssapi_krb5). */
#undef HAVE_LIBGSSAPI_KRB5
/* Define to 1 if you have the `inet' library (-linet). */
#undef HAVE_LIBINET
/* Define to 1 if you have the `k5crypto' library (-lk5crypto). */
#undef HAVE_LIBK5CRYPTO
/* Define to 1 if you have the `krb5' library (-lkrb5). */
#undef HAVE_LIBKRB5
/* Define to 1 if you have the `lber' library (-llber). */
#undef HAVE_LIBLBER
/* Define to 1 if you have the `ldap' library (-lldap). */
#undef HAVE_LIBLDAP
/* Define to 1 if you have the `nscd' library (-lnscd). */
#undef HAVE_LIBNSCD
/* Define to 1 if you have the `nsl' library (-lnsl). */
#undef HAVE_LIBNSL
/* Define to 1 if you have the `nsl_s' library (-lnsl_s). */
#undef HAVE_LIBNSL_S
/* Whether libpam is available */
#undef HAVE_LIBPAM
/* Whether the system has readline */
#undef HAVE_LIBREADLINE
/* Define to 1 if you have the `resolv' library (-lresolv). */
#undef HAVE_LIBRESOLV
/* Define to 1 if you have the `roken' library (-lroken). */
#undef HAVE_LIBROKEN
/* Define to 1 if you have the `sendfile' library (-lsendfile). */
#undef HAVE_LIBSENDFILE
/* Define to 1 if you have the `socket' library (-lsocket). */
#undef HAVE_LIBSOCKET
/* Whether libunwind is available */
#undef HAVE_LIBUNWIND
/* Define to 1 if you have the <libunwind.h> header file. */
#undef HAVE_LIBUNWIND_H
/* Whether libunwind-ptrace.a is available. */
#undef HAVE_LIBUNWIND_PTRACE
/* Define to 1 if you have the <libunwind-ptrace.h> header file. */
#undef HAVE_LIBUNWIND_PTRACE_H
/* Define to 1 if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H
/* Define to 1 if you have the `link' function. */
#undef HAVE_LINK
/* Whether the Linux ptrace(2) interface is available. */
#undef HAVE_LINUX_PTRACE
/* Whether Linux xfs quota support is available */
#undef HAVE_LINUX_XFS_QUOTAS
/* Define to 1 if you have the `listea' function. */
#undef HAVE_LISTEA
/* Define to 1 if you have the `listxattr' function. */
#undef HAVE_LISTXATTR
/* Define to 1 if you have the `llistea' function. */
#undef HAVE_LLISTEA
/* Define to 1 if you have the `llistxattr' function. */
#undef HAVE_LLISTXATTR
/* Define to 1 if you have the `llseek' function. */
#undef HAVE_LLSEEK
/* Define to 1 if you have the <locale.h> header file. */
#undef HAVE_LOCALE_H
/* Whether the host supports long long's */
#undef HAVE_LONGLONG
/* Define to 1 if you have the `lremoveea' function. */
#undef HAVE_LREMOVEEA
/* Define to 1 if you have the `lremovexattr' function. */
#undef HAVE_LREMOVEXATTR
/* Define to 1 if you have the `lseek64' function. */
#undef HAVE_LSEEK64
/* Define to 1 if you have the `lsetea' function. */
#undef HAVE_LSETEA
/* Define to 1 if you have the `lsetxattr' function. */
#undef HAVE_LSETXATTR
/* Define to 1 if you have the `lstat64' function. */
#undef HAVE_LSTAT64
/* Whether the krb5_address struct has a magic property */
#undef HAVE_MAGIC_IN_KRB5_ADDRESS
/* Whether the macro for makedev is available */
#undef HAVE_MAKEDEV
/* 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
/* Whether memset() is available */
#undef HAVE_MEMSET
/* Define to 1 if you have the `mknod' function. */
#undef HAVE_MKNOD
/* Define to 1 if you have the `mknod64' function. */
#undef HAVE_MKNOD64
/* Define to 1 if you have the `mktime' function. */
#undef HAVE_MKTIME
/* Define to 1 if you have the `mlock' function. */
#undef HAVE_MLOCK
/* Define to 1 if you have the `mlockall' function. */
#undef HAVE_MLOCKALL
/* Whether mmap works */
#undef HAVE_MMAP
/* Define to 1 if you have the <mntent.h> header file. */
#undef HAVE_MNTENT_H
/* Define to 1 if you have the `munlock' function. */
#undef HAVE_MUNLOCK
/* Define to 1 if you have the `munlockall' function. */
#undef HAVE_MUNLOCKALL
/* Define to 1 if you have the `nanosleep' function. */
#undef HAVE_NANOSLEEP
/* Whether to use native iconv */
#undef HAVE_NATIVE_ICONV
/* 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_ip.h> header file. */
#undef HAVE_NETINET_IN_IP_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/ip.h> header file. */
#undef HAVE_NETINET_IP_H
/* Define to 1 if you have the <netinet/tcp.h> header file. */
#undef HAVE_NETINET_TCP_H
/* Define to 1 if you have the <net/if.h> header file. */
#undef HAVE_NET_IF_H
/* Do we have rl_completion_matches? */
#undef HAVE_NEW_LIBREADLINE
/* Define to 1 if you have the `nl_langinfo' function. */
#undef HAVE_NL_LANGINFO
/* Whether no ACLs support is available */
#undef HAVE_NO_ACLS
/* Whether no asynchronous io support is available */
#undef HAVE_NO_AIO
/* Define to 1 if you have the `nscd_flush_cache' function. */
#undef HAVE_NSCD_FLUSH_CACHE
/* Define to 1 if you have the <nsswitch.h> header file. */
#undef HAVE_NSSWITCH_H
/* Define to 1 if you have the <nss_common.h> header file. */
#undef HAVE_NSS_COMMON_H
/* Define to 1 if you have the <nss.h> header file. */
#undef HAVE_NSS_H
/* Defined if union nss_XbyY_key has ipnode field */
#undef HAVE_NSS_XBYY_KEY_IPNODE
/* Define to 1 if you have the <ns_api.h> header file. */
#undef HAVE_NS_API_H
/* Whether off64_t is available */
#undef HAVE_OFF64_T
/* Define to 1 if you have the `open64' function. */
#undef HAVE_OPEN64
/* Define to 1 if you have the `opendir64' function. */
#undef HAVE_OPENDIR64
/* Defined if struct passwd has pw_age field */
#undef HAVE_PASSWD_PW_AGE
/* Defined if struct passwd has pw_comment field */
#undef HAVE_PASSWD_PW_COMMENT
/* Define to 1 if you have the `pathconf' function. */
#undef HAVE_PATHCONF
/* Define to 1 if you have the `pipe' function. */
#undef HAVE_PIPE
/* 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
/* Whether POSIX ACLs are available */
#undef HAVE_POSIX_ACLS
/* Whether POSIX capabilities are available */
#undef HAVE_POSIX_CAPABILITIES
/* Whether prctl is available */
#undef HAVE_PRCTL
/* Define to 1 if you have the `pread' function. */
#undef HAVE_PREAD
/* Define to 1 if you have the `pread64' function. */
#undef HAVE_PREAD64
/* Whether putprpwnam is available */
#undef HAVE_PUTPRPWNAM
/* Define to 1 if you have the `pututline' function. */
#undef HAVE_PUTUTLINE
/* Define to 1 if you have the `pututxline' function. */
#undef HAVE_PUTUTXLINE
/* Define to 1 if you have the `pwrite' function. */
#undef HAVE_PWRITE
/* Define to 1 if you have the `pwrite64' function. */
#undef HAVE_PWRITE64
/* Whether CRAY int quotactl (char *spec, int request, char *arg); is
available */
#undef HAVE_QUOTACTL_3
/* Whether long quotactl(int cmd, char *special, qid_t id, caddr_t addr) is
available */
#undef HAVE_QUOTACTL_4A
/* Whether int quotactl(const char *path, int cmd, int id, char *addr) is
available */
#undef HAVE_QUOTACTL_4B
/* Whether Linux quota support is available */
#undef HAVE_QUOTACTL_LINUX
/* Define to 1 if you have the `rand' function. */
#undef HAVE_RAND
/* Define to 1 if you have the `random' function. */
#undef HAVE_RANDOM
/* Define to 1 if you have the `rdchk' function. */
#undef HAVE_RDCHK
/* Define to 1 if you have the `readdir64' function. */
#undef HAVE_READDIR64
/* Define to 1 if you have the <readline.h> header file. */
#undef HAVE_READLINE_H
/* Define to 1 if you have the <readline/history.h> header file. */
#undef HAVE_READLINE_HISTORY_H
/* Define to 1 if you have the <readline/readline.h> header file. */
#undef HAVE_READLINE_READLINE_H
/* Define to 1 if you have the `readlink' function. */
#undef HAVE_READLINK
/* Define to 1 if you have the `realpath' function. */
#undef HAVE_REALPATH
/* Define to 1 if you have the `removeea' function. */
#undef HAVE_REMOVEEA
/* Define to 1 if you have the `removexattr' function. */
#undef HAVE_REMOVEXATTR
/* Define to 1 if you have the `rename' function. */
#undef HAVE_RENAME
/* Define to 1 if you have the `rewinddir64' function. */
#undef HAVE_REWINDDIR64
/* Define to 1 if you have the `roken_getaddrinfo_hostspec' function. */
#undef HAVE_ROKEN_GETADDRINFO_HOSTSPEC
/* Whether current user is root */
#undef HAVE_ROOT
/* Define to 1 if you have the <rpcsvc/nis.h> header file. */
#undef HAVE_RPCSVC_NIS_H
/* 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
/* Whether there is a conflicting AUTH_ERROR define in rpc/rpc.h */
#undef HAVE_RPC_AUTH_ERROR_CONFLICT
/* Define to 1 if you have the <rpc/nettype.h> header file. */
#undef HAVE_RPC_NETTYPE_H
/* Define to 1 if you have the <rpc/rpc.h> header file. */
#undef HAVE_RPC_RPC_H
/* Whether mkstemp is secure */
#undef HAVE_SECURE_MKSTEMP
/* 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 <security/pam_modules.h> header file. */
#undef HAVE_SECURITY_PAM_MODULES_H
/* Define to 1 if you have the <security/_pam_macros.h> header file. */
#undef HAVE_SECURITY__PAM_MACROS_H
/* Define to 1 if you have the `seekdir64' function. */
#undef HAVE_SEEKDIR64
/* Define to 1 if you have the `select' function. */
#undef HAVE_SELECT
/* Whether sendfile() is available */
#undef HAVE_SENDFILE
/* Whether sendfile64() is available */
#undef HAVE_SENDFILE64
/* Whether sendfilev() is available */
#undef HAVE_SENDFILEV
/* Whether sendfilev64() is available */
#undef HAVE_SENDFILEV64
/* Define to 1 if you have the `setbuffer' function. */
#undef HAVE_SETBUFFER
/* Define to 1 if you have the `setea' function. */
#undef HAVE_SETEA
/* Define to 1 if you have the `setenv' function. */
#undef HAVE_SETENV
/* Define to 1 if you have the `setgidx' function. */
#undef HAVE_SETGIDX
/* Define to 1 if you have the `setgroups' function. */
#undef HAVE_SETGROUPS
/* Define to 1 if you have the `setlinebuf' function. */
#undef HAVE_SETLINEBUF
/* Define to 1 if you have the `setlocale' function. */
#undef HAVE_SETLOCALE
/* Define to 1 if you have the `setluid' function. */
#undef HAVE_SETLUID
/* Define to 1 if you have the `setmntent' function. */
#undef HAVE_SETMNTENT
/* Define to 1 if you have the `setnetgrent' function. */
#undef HAVE_SETNETGRENT
/* Define to 1 if you have the `setpgid' function. */
#undef HAVE_SETPGID
/* Define to 1 if you have the `setpriv' function. */
#undef HAVE_SETPRIV
/* Define to 1 if you have the `setproplist' function. */
#undef HAVE_SETPROPLIST
/* Whether the system has setresgid */
#undef HAVE_SETRESGID
/* Whether setresgid() is available */
#undef HAVE_SETRESGID_DECL
/* Whether the system has setresuid */
#undef HAVE_SETRESUID
/* Whether setresuid() is available */
#undef HAVE_SETRESUID_DECL
/* Define to 1 if you have the `setsid' function. */
#undef HAVE_SETSID
/* Define to 1 if you have the `setuidx' function. */
#undef HAVE_SETUIDX
/* Define to 1 if you have the `setxattr' function. */
#undef HAVE_SETXATTR
/* Whether set_auth_parameters is available */
#undef HAVE_SET_AUTH_PARAMETERS
/* Define to 1 if you have the <shadow.h> header file. */
#undef HAVE_SHADOW_H
/* Define to 1 if you have the `shmget' function. */
#undef HAVE_SHMGET
/* Define to 1 if you have the `shm_open' function. */
#undef HAVE_SHM_OPEN
/* Define to 1 if you have the `sigaction' function. */
#undef HAVE_SIGACTION
/* Define to 1 if you have the `sigblock' function. */
#undef HAVE_SIGBLOCK
/* Define to 1 if you have the `sigprocmask' function. */
#undef HAVE_SIGPROCMASK
/* Define to 1 if you have the `sigset' function. */
#undef HAVE_SIGSET
/* Whether we have the atomic_t variable type */
#undef HAVE_SIG_ATOMIC_T_TYPE
/* Define to 1 if you have the `sizeof_proplist_entry' function. */
#undef HAVE_SIZEOF_PROPLIST_ENTRY
/* Define to 1 if you have the `snprintf' function. */
#undef HAVE_SNPRINTF
/* Whether snprintf() is available */
#undef HAVE_SNPRINTF_DECL
/* Whether we have the variable type socklen_t */
#undef HAVE_SOCKLEN_T_TYPE
/* Whether the sockaddr_in struct has a sin_len property */
#undef HAVE_SOCK_SIN_LEN
/* Whether solaris ACLs are available */
#undef HAVE_SOLARIS_ACLS
/* Define to 1 if you have the `srand' function. */
#undef HAVE_SRAND
/* Define to 1 if you have the `srandom' function. */
#undef HAVE_SRANDOM
/* Whether stat64() is available */
#undef HAVE_STAT64
/* whether struct stat has sub-second timestamps without struct timespec */
#undef HAVE_STAT_HIRES_TIMESTAMPS
/* whether struct stat contains st_atim */
#undef HAVE_STAT_ST_ATIM
/* whether struct stat contains st_atimensec */
#undef HAVE_STAT_ST_ATIMENSEC
/* Whether the stat struct has a st_blksize property */
#undef HAVE_STAT_ST_BLKSIZE
/* Whether the stat struct has a st_block property */
#undef HAVE_STAT_ST_BLOCKS
/* whether struct stat contains st_ctim */
#undef HAVE_STAT_ST_CTIM
/* whether struct stat contains st_ctimensec */
#undef HAVE_STAT_ST_CTIMENSEC
/* whether struct stat contains st_mtim */
#undef HAVE_STAT_ST_MTIM
/* whether struct stat contains st_mtimensec */
#undef HAVE_STAT_ST_MTIMENSEC
/* Define to 1 if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_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 `strcasecmp' function. */
#undef HAVE_STRCASECMP
/* Define to 1 if you have the `strchr' function. */
#undef HAVE_STRCHR
/* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP
/* Define to 1 if you have the `strerror' function. */
#undef HAVE_STRERROR
/* Define to 1 if you have the `strftime' function. */
#undef HAVE_STRFTIME
/* 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 `strndup' function. */
#undef HAVE_STRNDUP
/* Define to 1 if you have the `strnlen' function. */
#undef HAVE_STRNLEN
/* Define to 1 if you have the <stropts.h> header file. */
#undef HAVE_STROPTS_H
/* Define to 1 if you have the `strpbrk' function. */
#undef HAVE_STRPBRK
/* Define to 1 if you have the `strsignal' function. */
#undef HAVE_STRSIGNAL
/* Define to 1 if you have the `strtoul' function. */
#undef HAVE_STRTOUL
/* Whether the 'DIR64' abstract data type is available */
#undef HAVE_STRUCT_DIR64
/* Whether the 'dirent64' struct is available */
#undef HAVE_STRUCT_DIRENT64
/* Whether the flock64 struct is available */
#undef HAVE_STRUCT_FLOCK64
/* Define to 1 if `method_attrlist' is member of `struct secmethod_table'. */
#undef HAVE_STRUCT_SECMETHOD_TABLE_METHOD_ATTRLIST
/* Define to 1 if `method_version' is member of `struct secmethod_table'. */
#undef HAVE_STRUCT_SECMETHOD_TABLE_METHOD_VERSION
/* Define to 1 if `st_rdev' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_RDEV
/* Whether we have struct timespec */
#undef HAVE_STRUCT_TIMESPEC
/* Define to 1 if your `struct stat' has `st_rdev'. Deprecated, use
`HAVE_STRUCT_STAT_ST_RDEV' instead. */
#undef HAVE_ST_RDEV
/* Define to 1 if you have the `symlink' function. */
#undef HAVE_SYMLINK
/* Define to 1 if you have the `syscall' function. */
#undef HAVE_SYSCALL
/* 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 <sys/acl.h> header file. */
#undef HAVE_SYS_ACL_H
/* Define to 1 if you have the <sys/attributes.h> header file. */
#undef HAVE_SYS_ATTRIBUTES_H
/* Whether sys/capability.h is present */
#undef HAVE_SYS_CAPABILITY_H
/* Define to 1 if you have the <sys/cdefs.h> header file. */
#undef HAVE_SYS_CDEFS_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/dmapi.h> header file. */
#undef HAVE_SYS_DMAPI_H
/* Define to 1 if you have the <sys/dmi.h> header file. */
#undef HAVE_SYS_DMI_H
/* Define to 1 if you have the <sys/dustat.h> header file. */
#undef HAVE_SYS_DUSTAT_H
/* Define to 1 if you have the <sys/ea.h> header file. */
#undef HAVE_SYS_EA_H
/* Define to 1 if you have the <sys/extattr.h> header file. */
#undef HAVE_SYS_EXTATTR_H
/* Define to 1 if you have the <sys/fcntl.h> header file. */
#undef HAVE_SYS_FCNTL_H
/* Define to 1 if you have the <sys/filio.h> header file. */
#undef HAVE_SYS_FILIO_H
/* Define to 1 if you have the <sys/filsys.h> header file. */
#undef HAVE_SYS_FILSYS_H
/* Define to 1 if you have the <sys/fs/s5param.h> header file. */
#undef HAVE_SYS_FS_S5PARAM_H
/* Define to 1 if you have the <sys/fs/vx_quota.h> header file. */
#undef HAVE_SYS_FS_VX_QUOTA_H
/* Define to 1 if you have the <sys/id.h> header file. */
#undef HAVE_SYS_ID_H
/* Define to 1 if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H
/* Define to 1 if you have the <sys/ipc.h> header file. */
#undef HAVE_SYS_IPC_H
/* Define to 1 if you have the <sys/jfsdmapi.h> header file. */
#undef HAVE_SYS_JFSDMAPI_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/mode.h> header file. */
#undef HAVE_SYS_MODE_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/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/prctl.h> header file. */
#undef HAVE_SYS_PRCTL_H
/* Define to 1 if you have the <sys/priv.h> header file. */
#undef HAVE_SYS_PRIV_H
/* Define to 1 if you have the <sys/proplist.h> header file. */
#undef HAVE_SYS_PROPLIST_H
/* Define to 1 if you have the <sys/ptrace.h> header file. */
#undef HAVE_SYS_PTRACE_H
/* Whether the new lib/sysquotas.c interface can be used */
#undef HAVE_SYS_QUOTAS
/* Define to 1 if you have the <sys/quota.h> header file. */
#undef HAVE_SYS_QUOTA_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/security.h> header file. */
#undef HAVE_SYS_SECURITY_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/syslog.h> header file. */
#undef HAVE_SYS_SYSLOG_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/termio.h> header file. */
#undef HAVE_SYS_TERMIO_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/unistd.h> header file. */
#undef HAVE_SYS_UNISTD_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 <sys/xattr.h> header file. */
#undef HAVE_SYS_XATTR_H
/* Define to 1 if you have the `telldir64' function. */
#undef HAVE_TELLDIR64
/* Define to 1 if you have the <termios.h> header file. */
#undef HAVE_TERMIOS_H
/* Define to 1 if you have the <termio.h> header file. */
#undef HAVE_TERMIO_H
/* Whether the krb5_ap_req struct has a ticket pointer */
#undef HAVE_TICKET_POINTER_IN_KRB5_AP_REQ
/* Define to 1 if you have the `timegm' function. */
#undef HAVE_TIMEGM
/* Whether Tru64 ACLs are available */
#undef HAVE_TRU64_ACLS
/* Whether crypt needs truncated salt */
#undef HAVE_TRUNCATED_SALT
/* Whether uint16 typedef is included by rpc/rpc.h */
#undef HAVE_UINT16_FROM_RPC_RPC_H
/* Whether uint32 typedef is included by rpc/rpc.h */
#undef HAVE_UINT32_FROM_RPC_RPC_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* If we need to build with unixscoket support */
#undef HAVE_UNIXSOCKET
/* Whether UnixWare ACLs are available */
#undef HAVE_UNIXWARE_ACLS
/* Whether the 'unsigned char' type is available */
#undef HAVE_UNSIGNED_CHAR
/* Define to 1 if you have the `updwtmp' function. */
#undef HAVE_UPDWTMP
/* Define to 1 if you have the `updwtmpx' function. */
#undef HAVE_UPDWTMPX
/* Define to 1 if you have the `usleep' function. */
#undef HAVE_USLEEP
/* Whether struct utimbuf is available */
#undef HAVE_UTIMBUF
/* Define to 1 if you have the `utime' function. */
#undef HAVE_UTIME
/* Define to 1 if you have the `utimes' function. */
#undef HAVE_UTIMES
/* 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
/* Whether the utmp struct has a property ut_addr */
#undef HAVE_UT_UT_ADDR
/* Whether the utmp struct has a property ut_exit */
#undef HAVE_UT_UT_EXIT
/* Whether the utmp struct has a property ut_host */
#undef HAVE_UT_UT_HOST
/* Whether the utmp struct has a property ut_id */
#undef HAVE_UT_UT_ID
/* Whether the utmp struct has a property ut_name */
#undef HAVE_UT_UT_NAME
/* Whether the utmp struct has a property ut_pid */
#undef HAVE_UT_UT_PID
/* Whether the utmp struct has a property ut_time */
#undef HAVE_UT_UT_TIME
/* Whether the utmp struct has a property ut_tv */
#undef HAVE_UT_UT_TV
/* Whether the utmp struct has a property ut_type */
#undef HAVE_UT_UT_TYPE
/* Whether the utmp struct has a property ut_user */
#undef HAVE_UT_UT_USER
/* Whether the utmpx struct has a property ut_syslen */
#undef HAVE_UX_UT_SYSLEN
/* Define to 1 if you have the <valgrind.h> header file. */
#undef HAVE_VALGRIND_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 <valgrind/valgrind.h> header file. */
#undef HAVE_VALGRIND_VALGRIND_H
/* Define to 1 if you have the `vasprintf' function. */
#undef HAVE_VASPRINTF
/* Whether vasprintf() is available */
#undef HAVE_VASPRINTF_DECL
/* Whether va_copy() is available */
#undef HAVE_VA_COPY
/* Whether the C compiler understands volatile */
#undef HAVE_VOLATILE
/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF
/* Whether vsnprintf() is available */
#undef HAVE_VSNPRINTF_DECL
/* Define to 1 if you have the `vsyslog' function. */
#undef HAVE_VSYSLOG
/* Define to 1 if you have the `waitpid' function. */
#undef HAVE_WAITPID
/* Define if you have working AF_LOCAL sockets */
#undef HAVE_WORKING_AF_LOCAL
/* Whether the WRFILE:-keytab is supported */
#undef HAVE_WRFILE_KEYTAB
/* Define to 1 if you have the <xfs/dmapi.h> header file. */
#undef HAVE_XFS_DMAPI_H
/* Whether xfs quota support is available */
#undef HAVE_XFS_QUOTAS
/* Define to 1 if you have the `yp_get_default_domain' function. */
#undef HAVE_YP_GET_DEFAULT_DOMAIN
/* Define to 1 if you have the `_acl' function. */
#undef HAVE__ACL
/* Define to 1 if you have the `_chdir' function. */
#undef HAVE__CHDIR
/* Define to 1 if you have the `_close' function. */
#undef HAVE__CLOSE
/* Define to 1 if you have the `_closedir' function. */
#undef HAVE__CLOSEDIR
/* Define to 1 if you have the `_dup' function. */
#undef HAVE__DUP
/* Define to 1 if you have the `_dup2' function. */
#undef HAVE__DUP2
/* Define to 1 if you have the `_et_list' function. */
#undef HAVE__ET_LIST
/* Define to 1 if you have the `_facl' function. */
#undef HAVE__FACL
/* Define to 1 if you have the `_fchdir' function. */
#undef HAVE__FCHDIR
/* Define to 1 if you have the `_fcntl' function. */
#undef HAVE__FCNTL
/* Define to 1 if you have the `_fork' function. */
#undef HAVE__FORK
/* Define to 1 if you have the `_fstat' function. */
#undef HAVE__FSTAT
/* Define to 1 if you have the `_fstat64' function. */
#undef HAVE__FSTAT64
/* Define to 1 if you have the `_getcwd' function. */
#undef HAVE__GETCWD
/* Define to 1 if you have the `_llseek' function. */
#undef HAVE__LLSEEK
/* Define to 1 if you have the `_lseek' function. */
#undef HAVE__LSEEK
/* Define to 1 if you have the `_lstat' function. */
#undef HAVE__LSTAT
/* Define to 1 if you have the `_lstat64' function. */
#undef HAVE__LSTAT64
/* Define to 1 if you have the `_open' function. */
#undef HAVE__OPEN
/* Define to 1 if you have the `_open64' function. */
#undef HAVE__OPEN64
/* Define to 1 if you have the `_opendir' function. */
#undef HAVE__OPENDIR
/* Define to 1 if you have the `_pread' function. */
#undef HAVE__PREAD
/* Define to 1 if you have the `_pread64' function. */
#undef HAVE__PREAD64
/* Define to 1 if you have the `_pwrite' function. */
#undef HAVE__PWRITE
/* Define to 1 if you have the `_pwrite64' function. */
#undef HAVE__PWRITE64
/* Define to 1 if you have the `_read' function. */
#undef HAVE__READ
/* Define to 1 if you have the `_readdir' function. */
#undef HAVE__READDIR
/* Define to 1 if you have the `_readdir64' function. */
#undef HAVE__READDIR64
/* Define to 1 if you have the `_seekdir' function. */
#undef HAVE__SEEKDIR
/* Define to 1 if you have the `_stat' function. */
#undef HAVE__STAT
/* Define to 1 if you have the `_stat64' function. */
#undef HAVE__STAT64
/* Define to 1 if you have the `_telldir' function. */
#undef HAVE__TELLDIR
/* Define to 1 if you have the `_write' function. */
#undef HAVE__WRITE
/* Define to 1 if you have the `__acl' function. */
#undef HAVE___ACL
/* Define to 1 if you have the `__chdir' function. */
#undef HAVE___CHDIR
/* Define to 1 if you have the `__close' function. */
#undef HAVE___CLOSE
/* Define to 1 if you have the `__closedir' function. */
#undef HAVE___CLOSEDIR
/* Define to 1 if you have the `__dup' function. */
#undef HAVE___DUP
/* Define to 1 if you have the `__dup2' function. */
#undef HAVE___DUP2
/* Define to 1 if you have the `__facl' function. */
#undef HAVE___FACL
/* Define to 1 if you have the `__fchdir' function. */
#undef HAVE___FCHDIR
/* Define to 1 if you have the `__fcntl' function. */
#undef HAVE___FCNTL
/* Define to 1 if you have the `__fork' function. */
#undef HAVE___FORK
/* Define to 1 if you have the `__fstat' function. */
#undef HAVE___FSTAT
/* Define to 1 if you have the `__fstat64' function. */
#undef HAVE___FSTAT64
/* Define to 1 if you have the `__fxstat' function. */
#undef HAVE___FXSTAT
/* Define to 1 if you have the `__getcwd' function. */
#undef HAVE___GETCWD
/* Define to 1 if you have the `__getdents' function. */
#undef HAVE___GETDENTS
/* Define to 1 if you have the `__llseek' function. */
#undef HAVE___LLSEEK
/* Define to 1 if you have the `__lseek' function. */
#undef HAVE___LSEEK
/* Define to 1 if you have the `__lstat' function. */
#undef HAVE___LSTAT
/* Define to 1 if you have the `__lstat64' function. */
#undef HAVE___LSTAT64
/* Define to 1 if you have the `__lxstat' function. */
#undef HAVE___LXSTAT
/* Define to 1 if you have the `__open' function. */
#undef HAVE___OPEN
/* Define to 1 if you have the `__open64' function. */
#undef HAVE___OPEN64
/* Define to 1 if you have the `__opendir' function. */
#undef HAVE___OPENDIR
/* Define to 1 if you have the `__pread' function. */
#undef HAVE___PREAD
/* Define to 1 if you have the `__pread64' function. */
#undef HAVE___PREAD64
/* Define to 1 if you have the `__pwrite' function. */
#undef HAVE___PWRITE
/* Define to 1 if you have the `__pwrite64' function. */
#undef HAVE___PWRITE64
/* Define to 1 if you have the `__read' function. */
#undef HAVE___READ
/* Define to 1 if you have the `__readdir' function. */
#undef HAVE___READDIR
/* Define to 1 if you have the `__readdir64' function. */
#undef HAVE___READDIR64
/* Define to 1 if you have the `__seekdir' function. */
#undef HAVE___SEEKDIR
/* Define to 1 if you have the `__stat' function. */
#undef HAVE___STAT
/* Define to 1 if you have the `__stat64' function. */
#undef HAVE___STAT64
/* Define to 1 if you have the `__sys_llseek' function. */
#undef HAVE___SYS_LLSEEK
/* Define to 1 if you have the `__telldir' function. */
#undef HAVE___TELLDIR
/* Whether __va_copy() is available */
#undef HAVE___VA_COPY
/* Define to 1 if you have the `__write' function. */
#undef HAVE___WRITE
/* Define to 1 if you have the `__xstat' function. */
#undef HAVE___XSTAT
/* Whether the host os is HPUX */
#undef HPUX
/* Whether the hpux sendfile() API is available */
#undef HPUX_SENDFILE_API
/* Whether to use intel spinlocks */
#undef INTEL_SPINLOCKS
/* Whether the host os is irix */
#undef IRIX
/* Whether the host os is irix6 */
#undef IRIX6
/* Whether krb5_princ_realm returns krb5_realm or krb5_data */
#undef KRB5_PRINC_REALM_RETURNS_REALM
/* Number of arguments to krb5_verify_checksum */
#undef KRB5_VERIFY_CHECKSUM_ARGS
/* Number of arguments to ldap_set_rebind_proc */
#undef LDAP_SET_REBIND_PROC_ARGS
/* Whether the host os is linux */
#undef LINUX
/* Whether (linux) sendfile() is broken */
#undef LINUX_BROKEN_SENDFILE_API
/* Whether linux sendfile() API is available */
#undef LINUX_SENDFILE_API
/* Whether to use mips spinlocks */
#undef MIPS_SPINLOCKS
/* Whether MMAP is broken */
#undef MMAP_BLACKLIST
/* Whether the host os is NeXT v2 */
#undef NEXT2
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
#undef NO_MINUS_C_MINUS_O
/* Whether the host os is osf1 */
#undef OSF1
/* 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 version of this package. */
#undef PACKAGE_VERSION
/* Does a POSIX ACL need a mask element */
#undef POSIX_ACL_NEEDS_MASK
/* Whether to use powerpc spinlocks */
#undef POWERPC_SPINLOCKS
/* Whether pututline returns pointer */
#undef PUTUTLINE_RETURNS_UTMP
/* Whether the host os is qnx */
#undef QNX
/* Whether the realpath function allows NULL */
#undef REALPATH_TAKES_NULL
/* Whether the host os is reliantunix */
#undef RELIANTUNIX
/* Whether getpass should be replaced */
#undef REPLACE_GETPASS
/* Whether inet_ntoa should be replaced */
#undef REPLACE_INET_NTOA
/* replace readdir */
#undef REPLACE_READDIR
/* Define as the return type of signal handlers (`int' or `void'). */
#undef RETSIGTYPE
/* Whether the host os is sco unix */
#undef SCO
/* Whether seekdir returns void */
#undef SEEKDIR_RETURNS_VOID
/* The size of the 'dev_t' type */
#undef SIZEOF_DEV_T
/* The size of the 'ino_t' type */
#undef SIZEOF_INO_T
/* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT
/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The size of `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG
/* The size of the 'off_t' type */
#undef SIZEOF_OFF_T
/* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT
/* Use socket wrapper library */
#undef SOCKET_WRAPPER
/* Whether the solaris sendfile() API is available */
#undef SOLARIS_SENDFILE_API
/* Whether to use sparc spinlocks */
#undef SPARC_SPINLOCKS
/* Whether statfs requires two arguments and struct statfs has bsize property
*/
#undef STAT_STATFS2_BSIZE
/* Whether statfs requires 2 arguments and struct statfs has fsize */
#undef STAT_STATFS2_FSIZE
/* Whether statfs requires 2 arguments and struct fs_data is available */
#undef STAT_STATFS2_FS_DATA
/* Whether statfs requires 3 arguments */
#undef STAT_STATFS3_OSF1
/* Whether statfs requires 4 arguments */
#undef STAT_STATFS4
/* Whether statvfs() is available */
#undef STAT_STATVFS
/* Whether statvfs64() is available */
#undef STAT_STATVFS64
/* The size of a block */
#undef STAT_ST_BLOCKSIZE
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* String list of builtin modules */
#undef STRING_STATIC_MODULES
/* Whether the host os is sunos4 */
#undef SUNOS4
/* Whether the host os is solaris */
#undef SUNOS5
/* Whether sysconf(_SC_NGROUPS_MAX) is available */
#undef SYSCONF_SC_NGROUPS_MAX
/* Whether sysconf(_SC_NPROCESSORS_ONLN) is available */
#undef SYSCONF_SC_NPROCESSORS_ONLN
/* Whether sysconf(_SC_NPROC_ONLN) is available */
#undef SYSCONF_SC_NPROC_ONLN
/* Whether sysconf(_SC_PAGESIZE) is available */
#undef SYSCONF_SC_PAGESIZE
/* Whether this is a system V system */
#undef SYSV
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME
/* Whether the host os is unixware */
#undef UNIXWARE
/* Whether to use both of HPUX' crypt calls */
#undef USE_BOTH_CRYPT_CALLS
/* Whether we should build DMAPI integration components */
#undef USE_DMAPI
/* Whether seteuid() is available */
#undef USE_SETEUID
/* Whether setresuid() is available */
#undef USE_SETRESUID
/* Whether setreuid() is available */
#undef USE_SETREUID
/* Whether setuidx() is available */
#undef USE_SETUIDX
/* Whether to use spin locks instead of fcntl locks */
#undef USE_SPINLOCKS
/* Whether to include Active Directory support */
#undef WITH_ADS
/* Whether to include AFS clear-text auth support */
#undef WITH_AFS
/* Using asynchronous io */
#undef WITH_AIO
/* Whether to include automount support */
#undef WITH_AUTOMOUNT
/* Whether to build mount.cifs and umount.cifs */
#undef WITH_CIFSMOUNT
/* Whether to include DFS support */
#undef WITH_DFS
/* Whether to include AFS fake-kaserver support */
#undef WITH_FAKE_KASERVER
/* Whether to include nisplus_home support */
#undef WITH_NISPLUS_HOME
/* Whether to include PAM support */
#undef WITH_PAM
/* Whether to use profiling */
#undef WITH_PROFILE
/* Whether to use disk quota support */
#undef WITH_QUOTAS
/* Whether to include sendfile() support */
#undef WITH_SENDFILE
/* Whether to build smbmount */
#undef WITH_SMBMOUNT
/* Whether to include smbwrapper support */
#undef WITH_SMBWRAPPER
/* Whether to include experimental syslog support */
#undef WITH_SYSLOG
/* Whether to include experimental utmp accounting */
#undef WITH_UTMP
/* Whether to build winbind */
#undef WITH_WINBIND
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */
#undef WORDS_BIGENDIAN
/* Required alignment */
#undef _ALIGNMENT_REQUIRED
/* File offset bits */
#undef _FILE_OFFSET_BITS
/* Whether to use GNU libc extensions */
#undef _GNU_SOURCE
/* Whether to use HPUX extensions */
#undef _HPUX_SOURCE
/* Whether to enable large file support */
#undef _LARGEFILE64_SOURCE
/* Whether to enable large file support */
#undef _LARGE_FILES
/* Maximum alignment */
#undef _MAX_ALIGNMENT
/* Whether to enable POSIX support */
#undef _POSIX_C_SOURCE
/* Whether to use POSIX compatible functions */
#undef _POSIX_SOURCE
/* Whether to enable System V compatibility */
#undef _SYSV
/* Define to 1 if type `char' is unsigned and you are not using gcc. */
#ifndef __CHAR_UNSIGNED__
# undef __CHAR_UNSIGNED__
#endif
/* Whether to build auth_builtin as shared module */
#undef auth_builtin_init
/* Whether to build auth_domain as shared module */
#undef auth_domain_init
/* Whether to build auth_sam as shared module */
#undef auth_sam_init
/* Whether to build auth_script as shared module */
#undef auth_script_init
/* Whether to build auth_server as shared module */
#undef auth_server_init
/* Whether to build auth_unix as shared module */
#undef auth_unix_init
/* Whether to build auth_winbind as shared module */
#undef auth_winbind_init
/* Whether to build charset_CP437 as shared module */
#undef charset_CP437_init
/* Whether to build charset_CP850 as shared module */
#undef charset_CP850_init
/* Whether to build charset_macosxfs as shared module */
#undef charset_macosxfs_init
/* Whether to build charset_weird as shared module */
#undef charset_weird_init
/* Define to empty if `const' does not conform to ANSI C. */
#undef const
/* Define to `int' if <sys/types.h> doesn't define. */
#undef gid_t
/* Whether to build idmap_ad as shared module */
#undef idmap_ad_init
/* Whether to build idmap_ldap as shared module */
#undef idmap_ldap_init
/* Whether to build idmap_rid as shared module */
#undef idmap_rid_init
/* Whether to build idmap_tdb as shared module */
#undef idmap_tdb_init
/* Define to `__inline__' or `__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
#ifndef __cplusplus
#undef inline
#endif
/* Define to `unsigned' if <sys/types.h> does not define. */
#undef ino_t
/* Define to `unsigned long' if <sys/types.h> does not define. */
#undef intptr_t
/* Define to `off_t' if <sys/types.h> does not define. */
#undef loff_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 `loff_t' if <sys/types.h> does not define. */
#undef offset_t
/* Whether to build pdb_ldap as shared module */
#undef pdb_ldap_init
/* Whether to build pdb_smbpasswd as shared module */
#undef pdb_smbpasswd_init
/* Whether to build pdb_tdbsam as shared module */
#undef pdb_tdbsam_init
/* Define to `int' if <sys/types.h> does not define. */
#undef pid_t
/* Whether to build rpc_echo as shared module */
#undef rpc_echo_init
/* Whether to build rpc_eventlog as shared module */
#undef rpc_eventlog_init
/* Whether to build rpc_lsa_ds as shared module */
#undef rpc_lsa_ds_init
/* Whether to build rpc_lsa as shared module */
#undef rpc_lsa_init
/* Whether to build rpc_net as shared module */
#undef rpc_net_init
/* Whether to build rpc_netdfs as shared module */
#undef rpc_netdfs_init
/* Whether to build rpc_ntsvcs as shared module */
#undef rpc_ntsvcs_init
/* Whether to build rpc_reg as shared module */
#undef rpc_reg_init
/* Whether to build rpc_samr as shared module */
#undef rpc_samr_init
/* Whether to build rpc_spoolss as shared module */
#undef rpc_spoolss_init
/* Whether to build rpc_srv as shared module */
#undef rpc_srv_init
/* Whether to build rpc_svcctl as shared module */
#undef rpc_svcctl_init
/* Whether to build rpc_wks as shared module */
#undef rpc_wks_init
/* 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
/* Decl of Static init functions */
#undef static_decl_auth
/* Decl of Static init functions */
#undef static_decl_charset
/* Decl of Static init functions */
#undef static_decl_idmap
/* Decl of Static init functions */
#undef static_decl_pdb
/* Decl of Static init functions */
#undef static_decl_rpc
/* Decl of Static init functions */
#undef static_decl_vfs
/* Static init functions */
#undef static_init_auth
/* Static init functions */
#undef static_init_charset
/* Static init functions */
#undef static_init_idmap
/* Static init functions */
#undef static_init_pdb
/* Static init functions */
#undef static_init_rpc
/* Static init functions */
#undef static_init_vfs
/* Define to `int' if <sys/types.h> doesn't define. */
#undef uid_t
/* Whether to build vfs_afsacl as shared module */
#undef vfs_afsacl_init
/* Whether to build vfs_audit as shared module */
#undef vfs_audit_init
/* Whether to build vfs_cap as shared module */
#undef vfs_cap_init
/* Whether to build vfs_catia as shared module */
#undef vfs_catia_init
/* Whether to build vfs_default_quota as shared module */
#undef vfs_default_quota_init
/* Whether to build vfs_expand_msdfs as shared module */
#undef vfs_expand_msdfs_init
/* Whether to build vfs_extd_audit as shared module */
#undef vfs_extd_audit_init
/* Whether to build vfs_fake_perms as shared module */
#undef vfs_fake_perms_init
/* Whether to build vfs_full_audit as shared module */
#undef vfs_full_audit_init
/* Whether to build vfs_netatalk as shared module */
#undef vfs_netatalk_init
/* Whether to build vfs_readonly as shared module */
#undef vfs_readonly_init
/* Whether to build vfs_recycle as shared module */
#undef vfs_recycle_init
/* Whether to build vfs_shadow_copy as shared module */
#undef vfs_shadow_copy_init
/* Define to `unsigned short' if <sys/types.h> does not define. */
#undef wchar_t
|