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 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109
|
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Berkeley DB configure 4.1.25, which was
generated by GNU Autoconf 2.57. Invocation command line was
$ ./configure --prefix=/home/kharish/opt/gnome --enable-maintainer-mode --prefix /home/kharish/opt/gnome --with-openldap=/opt/evo-openldap --enable-smime=yes --enable-nss=yes --enable-nntp=yes --with-krb5=/usr/local --enable-gtk-doc --enable-gnome-keyring CFLAGS=-g -O0 --cache-file=/dev/null --srcdir=.
## --------- ##
## Platform. ##
## --------- ##
hostname = tao
uname -m = i686
uname -r = 2.6.16.16-1.6-smp
uname -s = Linux
uname -v = #1 SMP Mon May 22 14:37:02 UTC 2006
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = i686
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /home/kharish/opt/gnome/bin
PATH: /home/test/bin
PATH: /usr/local/bin
PATH: /home/kharish/bin
PATH: /usr/bin
PATH: /usr/X11R6/bin
PATH: /bin
PATH: /usr/games
PATH: /opt/gnome/bin
PATH: /opt/kde3/bin
PATH: /usr/lib/jvm/jre/bin
PATH: /usr/lib/mit/bin
PATH: /usr/lib/mit/sbin
PATH: /opt/novell/iprint/bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:1521: checking build system type
configure:1539: result: i686-pc-linux-gnu
configure:1547: checking host system type
configure:1561: result: i686-pc-linux-gnu
configure:1584: checking if building in the top-level directory
configure:1591: result: no
configure:1677: checking if --enable-compat185 option specified
configure:1686: result: no
configure:1689: checking if --enable-cxx option specified
configure:1698: result: no
configure:1701: checking if --enable-debug option specified
configure:1710: result: no
configure:1713: checking if --enable-debug_rop option specified
configure:1722: result: no
configure:1725: checking if --enable-debug_wop option specified
configure:1734: result: no
configure:1737: checking if --enable-diagnostic option specified
configure:1746: result: no
configure:1749: checking if --enable-dump185 option specified
configure:1758: result: no
configure:1761: checking if --enable-java option specified
configure:1770: result: no
configure:1773: checking if --enable-pthreadsmutexes option specified
configure:1784: result: yes
configure:1790: checking if --enable-posixmutexes option specified
configure:1799: result: no
configure:1802: checking if --enable-rpc option specified
configure:1811: result: no
configure:1814: checking if --enable-tcl option specified
configure:1823: result: no
configure:1826: checking if --enable-test option specified
configure:1835: result: no
configure:1838: checking if --enable-uimutexes option specified
configure:1847: result: no
configure:1850: checking if --enable-umrw option specified
configure:1859: result: no
configure:1862: checking if --with-embedix=DIR option specified
configure:1874: result: no
configure:1887: checking if --with-mutex=MUTEX option specified
configure:1905: result: no
configure:1908: checking if --with-rpm=DIR option specified
configure:1929: result: no
configure:1932: checking if --with-tcl=DIR option specified
configure:1942: result: no
configure:1948: checking if --with-uniquename=NAME option specified
configure:1967: result: _eds
configure:2076: checking for ar
configure:2092: found /usr/bin/ar
configure:2103: result: ar
configure:2162: checking for chmod
configure:2178: found /bin/chmod
configure:2189: result: chmod
configure:2248: checking for cp
configure:2264: found /bin/cp
configure:2275: result: cp
configure:2461: checking for ln
configure:2477: found /bin/ln
configure:2488: result: ln
configure:2547: checking for mkdir
configure:2563: found /bin/mkdir
configure:2574: result: mkdir
configure:2635: checking for ranlib
configure:2651: found /usr/bin/ranlib
configure:2662: result: ranlib
configure:2676: checking for ranlib
configure:2694: found /usr/bin/ranlib
configure:2707: result: /usr/bin/ranlib
configure:2756: checking for rm
configure:2772: found /bin/rm
configure:2783: result: rm
configure:2932: checking for sh
configure:2948: found /bin/sh
configure:2959: result: sh
configure:2973: checking for sh
configure:2991: found /bin/sh
configure:3004: result: /bin/sh
configure:3062: checking for strip
configure:3078: found /usr/bin/strip
configure:3089: result: strip
configure:3103: checking for strip
configure:3121: found /usr/bin/strip
configure:3134: result: /usr/bin/strip
configure:3244: checking for a BSD-compatible install
configure:3298: result: /home/kharish/bin/install-check
configure:3467: checking for cc
configure:3483: found /usr/bin/cc
configure:3493: result: cc
configure:3514: checking for C compiler version
configure:3517: cc --version </dev/null >&5
cc (GCC) 4.1.0 (SUSE Linux)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:3520: $? = 0
configure:3522: cc -v </dev/null >&5
Using built-in specs.
Target: i586-suse-linux
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib --libexecdir=/usr/lib --enable-languages=c,c++,objc,fortran,java,ada --enable-checking=release --with-gxx-include-dir=/usr/include/c++/4.1.0 --enable-ssp --disable-libssp --enable-java-awt=gtk --enable-gtk-cairo --disable-libjava-multilib --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit --enable-libstdcxx-allocator=new --without-system-libunwind --with-cpu=generic --host=i586-suse-linux
Thread model: posix
gcc version 4.1.0 (SUSE Linux)
configure:3525: $? = 0
configure:3527: cc -V </dev/null >&5
cc: '-V' option must have argument
configure:3530: $? = 1
configure:3554: checking for C compiler default output
configure:3557: cc -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:3560: $? = 0
configure:3606: result: a.out
configure:3611: checking whether the C compiler works
configure:3617: ./a.out
configure:3620: $? = 0
configure:3637: result: yes
configure:3644: checking whether we are cross compiling
configure:3646: result: no
configure:3649: checking for suffix of executables
configure:3651: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:3654: $? = 0
configure:3679: result:
configure:3685: checking for suffix of object files
configure:3707: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:3710: $? = 0
configure:3732: result: o
configure:3736: checking whether we are using the GNU C compiler
configure:3761: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:3764: $? = 0
configure:3767: test -s conftest.o
configure:3770: $? = 0
configure:3783: result: yes
configure:3789: checking whether cc accepts -g
configure:3811: cc -c -g -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:3814: $? = 0
configure:3817: test -s conftest.o
configure:3820: $? = 0
configure:3831: result: yes
configure:3848: checking for cc option to accept ANSI C
configure:3909: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:3912: $? = 0
configure:3915: test -s conftest.o
configure:3918: $? = 0
configure:3936: result: none needed
configure:3954: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
conftest.c:2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'me'
configure:3957: $? = 1
configure: failed program was:
| #ifndef __cplusplus
| choke me
| #endif
configure:4876: checking whether we are using gcc version 2.96
configure:4891: result: no
configure:4902: checking whether g++ requires -fhandle-exceptions
configure:4917: result: no
configure:5030: checking for ld used by GCC
configure:5093: result: /usr/i586-suse-linux/bin/ld
configure:5102: checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld
GNU ld version 2.16.91.0.5 20051219 (SUSE Linux)
configure:5114: result: yes
configure:5119: checking for /usr/i586-suse-linux/bin/ld option to reload object files
configure:5126: result: -r
configure:5131: checking for BSD-compatible nm
configure:5167: result: /usr/bin/nm -B
configure:5170: checking whether ln -s works
configure:5174: result: yes
configure:5181: checking how to recognise dependant libraries
configure:5363: result: pass_all
configure:5376: checking command to parse /usr/bin/nm -B output
configure:5457: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:5460: $? = 0
configure:5464: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGISTW][ABCDGISTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' \> conftest.nm
configure:5467: $? = 0
configure:5519: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c conftstm.o >&5
configure:5522: $? = 0
configure:5566: result: ok
configure:5575: checking how to run the C preprocessor
configure:5611: cc -E -D_GNU_SOURCE -D_REENTRANT conftest.c
configure:5617: $? = 0
configure:5649: cc -E -D_GNU_SOURCE -D_REENTRANT conftest.c
configure:5648:28: error: ac_nonexistent.h: No such file or directory
configure:5655: $? = 1
configure: failed program was:
| #line 5640 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5693: result: cc -E
configure:5718: cc -E -D_GNU_SOURCE -D_REENTRANT conftest.c
configure:5724: $? = 0
configure:5756: cc -E -D_GNU_SOURCE -D_REENTRANT conftest.c
configure:5755:28: error: ac_nonexistent.h: No such file or directory
configure:5762: $? = 1
configure: failed program was:
| #line 5747 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5805: checking for egrep
configure:5815: result: grep -E
configure:5820: checking for ANSI C header files
configure:5846: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:5849: $? = 0
configure:5852: test -s conftest.o
configure:5855: $? = 0
configure:5947: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:5940: warning: incompatible implicit declaration of built-in function 'exit'
configure:5950: $? = 0
configure:5952: ./conftest
configure:5955: $? = 0
configure:5970: result: yes
configure:5994: checking for sys/types.h
configure:6011: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6014: $? = 0
configure:6017: test -s conftest.o
configure:6020: $? = 0
configure:6031: result: yes
configure:5994: checking for sys/stat.h
configure:6011: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6014: $? = 0
configure:6017: test -s conftest.o
configure:6020: $? = 0
configure:6031: result: yes
configure:5994: checking for stdlib.h
configure:6011: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6014: $? = 0
configure:6017: test -s conftest.o
configure:6020: $? = 0
configure:6031: result: yes
configure:5994: checking for string.h
configure:6011: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6014: $? = 0
configure:6017: test -s conftest.o
configure:6020: $? = 0
configure:6031: result: yes
configure:5994: checking for memory.h
configure:6011: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6014: $? = 0
configure:6017: test -s conftest.o
configure:6020: $? = 0
configure:6031: result: yes
configure:5994: checking for strings.h
configure:6011: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6014: $? = 0
configure:6017: test -s conftest.o
configure:6020: $? = 0
configure:6031: result: yes
configure:5994: checking for inttypes.h
configure:6011: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6014: $? = 0
configure:6017: test -s conftest.o
configure:6020: $? = 0
configure:6031: result: yes
configure:5994: checking for stdint.h
configure:6011: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6014: $? = 0
configure:6017: test -s conftest.o
configure:6020: $? = 0
configure:6031: result: yes
configure:5994: checking for unistd.h
configure:6011: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6014: $? = 0
configure:6017: test -s conftest.o
configure:6020: $? = 0
configure:6031: result: yes
configure:6057: checking dlfcn.h usability
configure:6070: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6073: $? = 0
configure:6076: test -s conftest.o
configure:6079: $? = 0
configure:6089: result: yes
configure:6093: checking dlfcn.h presence
configure:6104: cc -E -D_GNU_SOURCE -D_REENTRANT conftest.c
configure:6110: $? = 0
configure:6129: result: yes
configure:6165: checking for dlfcn.h
configure:6172: result: yes
configure:6369: checking for ranlib
configure:6385: found /usr/bin/ranlib
configure:6396: result: ranlib
configure:6449: checking for strip
configure:6465: found /usr/bin/strip
configure:6476: result: strip
configure:6688: checking for objdir
configure:6699: result: .libs
configure:6720: checking for cc option to produce PIC
configure:6870: result: -fPIC
configure:6874: checking if cc PIC flag -fPIC works
configure:6898: cc -c -g -O0 -fPIC -DPIC -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:6901: $? = 0
configure:6904: test -s conftest.o
configure:6907: $? = 0
configure:6945: result: yes
configure:6965: checking if cc static flag -static works
configure:6990: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT -static conftest.c >&5
configure:6993: $? = 0
configure:6996: test -s conftest
configure:6999: $? = 0
configure:7015: result: yes
configure:7031: checking if cc supports -c -o file.o
configure:7039: cc -c -g -O0 -o out/conftest2.o -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:7075: result: yes
configure:7080: checking if cc supports -c -o file.lo
configure:7108: cc -c -g -O0 -c -o conftest.lo -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:7111: $? = 0
configure:7114: test -s conftest.lo
configure:7117: $? = 0
configure:7139: result: yes
configure:7178: checking if cc supports -fno-rtti -fno-exceptions
configure:7201: cc -c -g -O0 -fno-rtti -fno-exceptions -c conftest.c -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
configure:7204: $? = 0
configure:7207: test -s conftest.o
configure:7210: $? = 0
configure:7227: result: yes
configure:7242: checking whether the linker (/usr/i586-suse-linux/bin/ld) supports shared libraries
configure:7969: result: yes
configure:7978: checking how to hardcode library paths into programs
configure:8002: result: immediate
configure:8011: checking whether stripping libraries is possible
configure:8016: result: yes
configure:8031: checking dynamic linker characteristics
configure:8443: result: GNU/Linux ld.so
configure:8452: checking if libtool supports shared libraries
configure:8454: result: yes
configure:8461: checking whether to build shared libraries
configure:8482: result: yes
configure:8489: checking whether to build static libraries
configure:8493: result: yes
configure:9171: checking whether -lc should be explicitly linked in
configure:9179: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:9182: $? = 0
configure:9196: cc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1
configure:9199: $? = 0
configure:9212: result: no
configure:9793: checking SOSUFFIX from libtool
configure:9815: result: so
configure:9820: checking MODSUFFIX from libtool
configure:9842: result: so
configure:9847: checking JMODSUFFIX from libtool
configure:9869: result: so
configure:10702: checking for an ANSI C-conforming const
configure:10770: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:10773: $? = 0
configure:10776: test -s conftest.o
configure:10779: $? = 0
configure:10790: result: yes
configure:10802: checking whether stat file-mode macros are broken
configure:10851: result: no
configure:10861: checking whether time.h and sys/time.h may both be included
configure:10887: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:10890: $? = 0
configure:10893: test -s conftest.o
configure:10896: $? = 0
configure:10907: result: yes
configure:10925: checking for dirent.h that defines DIR
configure:10950: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:10953: $? = 0
configure:10956: test -s conftest.o
configure:10959: $? = 0
configure:10970: result: yes
configure:10983: checking for library containing opendir
configure:11014: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:11017: $? = 0
configure:11020: test -s conftest
configure:11023: $? = 0
configure:11082: result: none required
configure:11213: checking sys/select.h usability
configure:11226: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:11229: $? = 0
configure:11232: test -s conftest.o
configure:11235: $? = 0
configure:11245: result: yes
configure:11249: checking sys/select.h presence
configure:11260: cc -E -D_GNU_SOURCE -D_REENTRANT conftest.c
configure:11266: $? = 0
configure:11285: result: yes
configure:11321: checking for sys/select.h
configure:11328: result: yes
configure:11213: checking sys/time.h usability
configure:11226: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:11229: $? = 0
configure:11232: test -s conftest.o
configure:11235: $? = 0
configure:11245: result: yes
configure:11249: checking sys/time.h presence
configure:11260: cc -E -D_GNU_SOURCE -D_REENTRANT conftest.c
configure:11266: $? = 0
configure:11285: result: yes
configure:11321: checking for sys/time.h
configure:11328: result: yes
configure:11341: checking for struct stat.st_blksize
configure:11365: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:11368: $? = 0
configure:11371: test -s conftest.o
configure:11374: $? = 0
configure:11422: result: yes
configure:11437: checking for char
configure:11465: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:11468: $? = 0
configure:11471: test -s conftest.o
configure:11474: $? = 0
configure:11485: result: yes
configure:11488: checking size of char
configure:11781: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:11784: $? = 0
configure:11786: ./conftest
configure:11789: $? = 0
configure:11812: result: 1
configure:11819: checking for unsigned char
configure:11847: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:11850: $? = 0
configure:11853: test -s conftest.o
configure:11856: $? = 0
configure:11867: result: yes
configure:11870: checking size of unsigned char
configure:12163: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:12166: $? = 0
configure:12168: ./conftest
configure:12171: $? = 0
configure:12194: result: 1
configure:12201: checking for short
configure:12229: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:12232: $? = 0
configure:12235: test -s conftest.o
configure:12238: $? = 0
configure:12249: result: yes
configure:12252: checking size of short
configure:12545: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:12548: $? = 0
configure:12550: ./conftest
configure:12553: $? = 0
configure:12576: result: 2
configure:12583: checking for unsigned short
configure:12611: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:12614: $? = 0
configure:12617: test -s conftest.o
configure:12620: $? = 0
configure:12631: result: yes
configure:12634: checking size of unsigned short
configure:12927: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:12930: $? = 0
configure:12932: ./conftest
configure:12935: $? = 0
configure:12958: result: 2
configure:12965: checking for int
configure:12993: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:12996: $? = 0
configure:12999: test -s conftest.o
configure:13002: $? = 0
configure:13013: result: yes
configure:13016: checking size of int
configure:13309: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:13312: $? = 0
configure:13314: ./conftest
configure:13317: $? = 0
configure:13340: result: 4
configure:13347: checking for unsigned int
configure:13375: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:13378: $? = 0
configure:13381: test -s conftest.o
configure:13384: $? = 0
configure:13395: result: yes
configure:13398: checking size of unsigned int
configure:13691: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:13694: $? = 0
configure:13696: ./conftest
configure:13699: $? = 0
configure:13722: result: 4
configure:13729: checking for long
configure:13757: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:13760: $? = 0
configure:13763: test -s conftest.o
configure:13766: $? = 0
configure:13777: result: yes
configure:13780: checking size of long
configure:14073: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:14076: $? = 0
configure:14078: ./conftest
configure:14081: $? = 0
configure:14104: result: 4
configure:14111: checking for unsigned long
configure:14139: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:14142: $? = 0
configure:14145: test -s conftest.o
configure:14148: $? = 0
configure:14159: result: yes
configure:14162: checking size of unsigned long
configure:14455: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:14458: $? = 0
configure:14460: ./conftest
configure:14463: $? = 0
configure:14486: result: 4
configure:14493: checking for size_t
configure:14521: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:14524: $? = 0
configure:14527: test -s conftest.o
configure:14530: $? = 0
configure:14541: result: yes
configure:14544: checking size of size_t
configure:14837: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:14840: $? = 0
configure:14842: ./conftest
configure:14845: $? = 0
configure:14868: result: 4
configure:14875: checking for char *
configure:14903: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:14906: $? = 0
configure:14909: test -s conftest.o
configure:14912: $? = 0
configure:14923: result: yes
configure:14926: checking size of char *
configure:15219: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15222: $? = 0
configure:15224: ./conftest
configure:15227: $? = 0
configure:15250: result: 4
configure:15260: checking for off_t
configure:15288: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15291: $? = 0
configure:15294: test -s conftest.o
configure:15297: $? = 0
configure:15308: result: yes
configure:15317: checking for size_t
configure:15365: result: yes
configure:15377: checking for u_char
configure:15405: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15408: $? = 0
configure:15411: test -s conftest.o
configure:15414: $? = 0
configure:15425: result: yes
configure:15433: checking for u_short
configure:15461: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15464: $? = 0
configure:15467: test -s conftest.o
configure:15470: $? = 0
configure:15481: result: yes
configure:15489: checking for u_int
configure:15517: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15520: $? = 0
configure:15523: test -s conftest.o
configure:15526: $? = 0
configure:15537: result: yes
configure:15545: checking for u_long
configure:15573: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15576: $? = 0
configure:15579: test -s conftest.o
configure:15582: $? = 0
configure:15593: result: yes
configure:15601: checking for u_int8_t
configure:15629: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15632: $? = 0
configure:15635: test -s conftest.o
configure:15638: $? = 0
configure:15649: result: yes
configure:15671: checking for u_int16_t
configure:15699: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15702: $? = 0
configure:15705: test -s conftest.o
configure:15708: $? = 0
configure:15719: result: yes
configure:15741: checking for int16_t
configure:15769: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15772: $? = 0
configure:15775: test -s conftest.o
configure:15778: $? = 0
configure:15789: result: yes
configure:15811: checking for u_int32_t
configure:15839: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15842: $? = 0
configure:15845: test -s conftest.o
configure:15848: $? = 0
configure:15859: result: yes
configure:15881: checking for int32_t
configure:15909: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15912: $? = 0
configure:15915: test -s conftest.o
configure:15918: $? = 0
configure:15929: result: yes
configure:15953: checking for ssize_t
configure:15981: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:15984: $? = 0
configure:15987: test -s conftest.o
configure:15990: $? = 0
configure:16001: result: yes
configure:16024: checking for unsigned long long
configure:16052: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:16055: $? = 0
configure:16058: test -s conftest.o
configure:16061: $? = 0
configure:16072: result: yes
configure:16101: checking for ANSI C exit success/failure values
configure:16124: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:16127: $? = 0
configure:16130: test -s conftest.o
configure:16133: $? = 0
configure:16144: result: yes
configure:16158: checking for sched_yield
configure:16208: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:16211: $? = 0
configure:16214: test -s conftest
configure:16217: $? = 0
configure:16228: result: yes
configure:16349: checking for main in -lpthread
configure:16374: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c -lpthread >&5
configure:16377: $? = 0
configure:16380: test -s conftest
configure:16383: $? = 0
configure:16395: result: yes
configure:16406: checking for main in -lm
configure:16431: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c -lm >&5
configure:16434: $? = 0
configure:16437: test -s conftest
configure:16440: $? = 0
configure:16452: result: yes
configure:16459: checking for main in -lsocket
configure:16484: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c -lsocket >&5
/usr/lib/gcc/i586-suse-linux/4.1.0/../../../../i586-suse-linux/bin/ld: cannot find -lsocket
collect2: ld returned 1 exit status
configure:16487: $? = 1
configure: failed program was:
| #line 16466 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
|
| int
| main ()
| {
| main ();
| ;
| return 0;
| }
configure:16505: result: no
configure:16512: checking for main in -lnsl
configure:16537: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c -lnsl >&5
configure:16540: $? = 0
configure:16543: test -s conftest
configure:16546: $? = 0
configure:16558: result: yes
configure:16579: checking for mutexes
configure:16656: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:16666:19: error: synch.h: No such file or directory
configure: In function 'main':
configure:16671: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'mi'
configure:16671: error: 'mi' undeclared (first use in this function)
configure:16671: error: (Each undeclared identifier is reported only once
configure:16671: error: for each function it appears in.)
configure:16671: error: 'SHAREDMUTEX' undeclared (first use in this function)
configure:16673: error: 'lwp_mutex_t' undeclared (first use in this function)
configure:16673: error: expected ';' before 'mutex'
configure:16674: error: 'lwp_cond_t' undeclared (first use in this function)
configure:16674: error: expected ';' before 'cond'
configure:16675: warning: incompatible implicit declaration of built-in function 'exit'
configure:16676: error: 'mutex' undeclared (first use in this function)
configure:16659: $? = 1
configure: failed program was:
| #line 16630 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| #include <synch.h>
| int
| main ()
| {
|
| static lwp_mutex_t mi = SHAREDMUTEX;
| static lwp_cond_t ci = SHAREDCV;
| lwp_mutex_t mutex = mi;
| lwp_cond_t cond = ci;
| exit (
| _lwp_mutex_lock(&mutex) ||
| _lwp_mutex_unlock(&mutex));
|
| ;
| return 0;
| }
configure:16708: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:16716:20: error: thread.h: No such file or directory
configure:16717:19: error: synch.h: No such file or directory
configure: In function 'main':
configure:16722: error: 'mutex_t' undeclared (first use in this function)
configure:16722: error: (Each undeclared identifier is reported only once
configure:16722: error: for each function it appears in.)
configure:16722: error: expected ';' before 'mutex'
configure:16723: error: 'cond_t' undeclared (first use in this function)
configure:16723: error: expected ';' before 'cond'
configure:16724: error: 'USYNC_PROCESS' undeclared (first use in this function)
configure:16725: warning: incompatible implicit declaration of built-in function 'exit'
configure:16726: error: 'mutex' undeclared (first use in this function)
configure:16726: error: 'NULL' undeclared (first use in this function)
configure:16727: error: 'cond' undeclared (first use in this function)
configure:16711: $? = 1
configure: failed program was:
| #line 16680 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| #include <thread.h>
| #include <synch.h>
| int
| main ()
| {
|
| mutex_t mutex;
| cond_t cond;
| int type = USYNC_PROCESS;
| exit (
| mutex_init(&mutex, type, NULL) ||
| cond_init(&cond, type, NULL) ||
| mutex_lock(&mutex) ||
| mutex_unlock(&mutex));
|
| ;
| return 0;
| }
configure:16758: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c -lthread >&5
configure:16766:20: error: thread.h: No such file or directory
configure:16767:19: error: synch.h: No such file or directory
configure: In function 'main':
configure:16772: error: 'mutex_t' undeclared (first use in this function)
configure:16772: error: (Each undeclared identifier is reported only once
configure:16772: error: for each function it appears in.)
configure:16772: error: expected ';' before 'mutex'
configure:16773: error: 'cond_t' undeclared (first use in this function)
configure:16773: error: expected ';' before 'cond'
configure:16774: error: 'USYNC_PROCESS' undeclared (first use in this function)
configure:16775: warning: incompatible implicit declaration of built-in function 'exit'
configure:16776: error: 'mutex' undeclared (first use in this function)
configure:16776: error: 'NULL' undeclared (first use in this function)
configure:16777: error: 'cond' undeclared (first use in this function)
configure:16761: $? = 1
configure: failed program was:
| #line 16730 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| #include <thread.h>
| #include <synch.h>
| int
| main ()
| {
|
| mutex_t mutex;
| cond_t cond;
| int type = USYNC_PROCESS;
| exit (
| mutex_init(&mutex, type, NULL) ||
| cond_init(&cond, type, NULL) ||
| mutex_lock(&mutex) ||
| mutex_unlock(&mutex));
|
| ;
| return 0;
| }
configure:17156: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17176: error: 'FAIL' undeclared (first use in this function)
configure:17176: error: (Each undeclared identifier is reported only once
configure:17176: error: for each function it appears in.)
configure:17176: error: expected ';' before 'TO'
configure:17159: $? = 1
configure: failed program was:
| #line 17127 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| #include <sys/mman.h>
| int
| main ()
| {
|
| #if defined(__hppa__)
| typedef msemaphore tsl_t;
| msemaphore x;
| msem_init(&x, 0);
| msem_lock(&x, 0);
| msem_unlock(&x, 0);
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17204: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17220: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'tsl_t'
configure:17220: error: 'tsl_t' undeclared (first use in this function)
configure:17220: error: (Each undeclared identifier is reported only once
configure:17220: error: for each function it appears in.)
configure:17221: error: 'msemaphore' undeclared (first use in this function)
configure:17222: error: 'x' undeclared (first use in this function)
configure:17225: warning: incompatible implicit declaration of built-in function 'exit'
configure:17207: $? = 1
configure: failed program was:
| #line 17178 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| #include <sys/types.h>
| #include <sys/mman.h>
| int
| main ()
| {
|
| typedef msemaphore tsl_t;
| msemaphore x;
| msem_init(&x, 0);
| msem_lock(&x, 0);
| msem_unlock(&x, 0);
| exit(0);
|
| ;
| return 0;
| }
configure:17251: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c -lmproc >&5
configure:17263:20: error: ulocks.h: No such file or directory
configure: In function 'main':
configure:17268: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'tsl_t'
configure:17268: error: 'tsl_t' undeclared (first use in this function)
configure:17268: error: (Each undeclared identifier is reported only once
configure:17268: error: for each function it appears in.)
configure:17269: error: 'spinlock_t' undeclared (first use in this function)
configure:17270: error: 'x' undeclared (first use in this function)
configure:17254: $? = 1
configure: failed program was:
| #line 17227 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| #include <ulocks.h>
| int
| main ()
| {
|
| typedef spinlock_t tsl_t;
| spinlock_t x;
| initspin(&x, 1);
| cspinlock(&x);
| spinunlock(&x);
|
| ;
| return 0;
| }
configure:17297: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17317: error: 'FAIL' undeclared (first use in this function)
configure:17317: error: (Each undeclared identifier is reported only once
configure:17317: error: for each function it appears in.)
configure:17317: error: expected ';' before 'TO'
configure:17300: $? = 1
configure: failed program was:
| #line 17274 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #if defined(__USLC__)
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17343: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:17355:23: error: abi_mutex.h: No such file or directory
configure: In function 'main':
configure:17360: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'tsl_t'
configure:17360: error: 'tsl_t' undeclared (first use in this function)
configure:17360: error: (Each undeclared identifier is reported only once
configure:17360: error: for each function it appears in.)
configure:17361: error: 'abilock_t' undeclared (first use in this function)
configure:17362: error: 'x' undeclared (first use in this function)
configure:17346: $? = 1
configure: failed program was:
| #line 17319 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| #include <abi_mutex.h>
| int
| main ()
| {
|
| typedef abilock_t tsl_t;
| abilock_t x;
| init_lock(&x);
| acquire_lock(&x);
| release_lock(&x);
|
| ;
| return 0;
| }
configure:17441: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:17454:26: error: sys/machlock.h: No such file or directory
configure: In function 'main':
configure:17459: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'tsl_t'
configure:17459: error: 'tsl_t' undeclared (first use in this function)
configure:17459: error: (Each undeclared identifier is reported only once
configure:17459: error: for each function it appears in.)
configure:17460: error: 'lock_t' undeclared (first use in this function)
configure:17461: error: 'x' undeclared (first use in this function)
configure:17444: $? = 1
configure: failed program was:
| #line 17418 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| #include <sys/machlock.h>
| int
| main ()
| {
|
| typedef lock_t tsl_t;
| lock_t x;
| _lock_try(&x);
| _lock_clear(&x);
|
| ;
| return 0;
| }
configure:17485: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:17499:27: error: sys/atomic_op.h: No such file or directory
configure:17488: $? = 1
configure: failed program was:
| #line 17463 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| #include <sys/atomic_op.h>
| int
| main ()
| {
|
| int x;
| _check_lock(&x,0,1);
| _clear_lock(&x,0);
|
| ;
| return 0;
| }
configure:17530: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17550: error: 'FAIL' undeclared (first use in this function)
configure:17550: error: (Each undeclared identifier is reported only once
configure:17550: error: for each function it appears in.)
configure:17550: error: expected ';' before 'TO'
configure:17533: $? = 1
configure: failed program was:
| #line 17507 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #if defined(__alpha) && defined(__GNUC__)
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17575: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17595: error: 'FAIL' undeclared (first use in this function)
configure:17595: error: (Each undeclared identifier is reported only once
configure:17595: error: for each function it appears in.)
configure:17595: error: expected ';' before 'TO'
configure:17578: $? = 1
configure: failed program was:
| #line 17552 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #if defined(__arm__) && defined(__GNUC__)
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17620: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17640: error: 'FAIL' undeclared (first use in this function)
configure:17640: error: (Each undeclared identifier is reported only once
configure:17640: error: for each function it appears in.)
configure:17640: error: expected ';' before 'TO'
configure:17623: $? = 1
configure: failed program was:
| #line 17597 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #if (defined(__mips) || defined(__mips__)) && defined(__GNUC__)
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17665: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17685: error: 'FAIL' undeclared (first use in this function)
configure:17685: error: (Each undeclared identifier is reported only once
configure:17685: error: for each function it appears in.)
configure:17685: error: expected ';' before 'TO'
configure:17668: $? = 1
configure: failed program was:
| #line 17642 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #if (defined(__hppa) || defined(__hppa__)) && defined(__GNUC__)
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17711: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17731: error: 'FAIL' undeclared (first use in this function)
configure:17731: error: (Each undeclared identifier is reported only once
configure:17731: error: for each function it appears in.)
configure:17731: error: expected ';' before 'TO'
configure:17714: $? = 1
configure: failed program was:
| #line 17688 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #if (defined(__powerpc__) || defined(__ppc__)) && defined(__GNUC__) && defined(__APPLE__)
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17754: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17774: error: 'FAIL' undeclared (first use in this function)
configure:17774: error: (Each undeclared identifier is reported only once
configure:17774: error: for each function it appears in.)
configure:17774: error: expected ';' before 'TO'
configure:17757: $? = 1
configure: failed program was:
| #line 17731 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #if (defined(__powerpc__) || defined(__ppc__)) && defined(__GNUC__)
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17799: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17819: error: 'FAIL' undeclared (first use in this function)
configure:17819: error: (Each undeclared identifier is reported only once
configure:17819: error: for each function it appears in.)
configure:17819: error: expected ';' before 'TO'
configure:17802: $? = 1
configure: failed program was:
| #line 17776 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #if defined(__sparc__) && defined(__GNUC__)
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17844: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17864: error: 'FAIL' undeclared (first use in this function)
configure:17864: error: (Each undeclared identifier is reported only once
configure:17864: error: for each function it appears in.)
configure:17864: error: expected ';' before 'TO'
configure:17847: $? = 1
configure: failed program was:
| #line 17821 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #if (defined(mc68020) || defined(sun3)) && defined(__GNUC__)
| exit(0);
| #else
| FAIL TO COMPILE/LINK
| #endif
|
| ;
| return 0;
| }
configure:17889: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:17907: warning: incompatible implicit declaration of built-in function 'exit'
configure:17892: $? = 0
configure:17895: test -s conftest.o
configure:17898: $? = 0
configure:18325: result: x86/gcc-assembly
configure:18637: checking for getcwd
configure:18687: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18690: $? = 0
configure:18693: test -s conftest
configure:18696: $? = 0
configure:18707: result: yes
configure:18637: checking for getopt
configure:18687: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18690: $? = 0
configure:18693: test -s conftest
configure:18696: $? = 0
configure:18707: result: yes
configure:18637: checking for memcmp
configure:18687: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18697: warning: conflicting types for built-in function 'memcmp'
configure:18690: $? = 0
configure:18693: test -s conftest
configure:18696: $? = 0
configure:18707: result: yes
configure:18637: checking for memcpy
configure:18687: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18698: warning: conflicting types for built-in function 'memcpy'
configure:18690: $? = 0
configure:18693: test -s conftest
configure:18696: $? = 0
configure:18707: result: yes
configure:18637: checking for memmove
configure:18687: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18699: warning: conflicting types for built-in function 'memmove'
configure:18690: $? = 0
configure:18693: test -s conftest
configure:18696: $? = 0
configure:18707: result: yes
configure:18637: checking for raise
configure:18687: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18690: $? = 0
configure:18693: test -s conftest
configure:18696: $? = 0
configure:18707: result: yes
configure:18728: checking for snprintf
configure:18778: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18792: warning: conflicting types for built-in function 'snprintf'
configure:18781: $? = 0
configure:18784: test -s conftest
configure:18787: $? = 0
configure:18798: result: yes
configure:18728: checking for strcasecmp
configure:18778: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18793: warning: conflicting types for built-in function 'strcasecmp'
configure:18781: $? = 0
configure:18784: test -s conftest
configure:18787: $? = 0
configure:18798: result: yes
configure:18728: checking for strdup
configure:18778: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18794: warning: conflicting types for built-in function 'strdup'
configure:18781: $? = 0
configure:18784: test -s conftest
configure:18787: $? = 0
configure:18798: result: yes
configure:18728: checking for strerror
configure:18778: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18781: $? = 0
configure:18784: test -s conftest
configure:18787: $? = 0
configure:18798: result: yes
configure:18728: checking for vsnprintf
configure:18778: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18796: warning: conflicting types for built-in function 'vsnprintf'
configure:18781: $? = 0
configure:18784: test -s conftest
configure:18787: $? = 0
configure:18798: result: yes
configure:18821: checking for _fstati64
configure:18871: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
/tmp/ccemLXpW.o: In function `main':
/home/kharish/cvs/gnome/evolution-data-server/libdb/dist/configure:18906: undefined reference to `_fstati64'
/tmp/ccemLXpW.o:(.data+0x0): undefined reference to `_fstati64'
collect2: ld returned 1 exit status
configure:18874: $? = 1
configure: failed program was:
| #line 18826 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| #define HAVE_MUTEX_X86_GCC_ASSEMBLY 1
| #define HAVE_MUTEX_THREADS 1
| #define HAVE_GETCWD 1
| #define HAVE_GETOPT 1
| #define HAVE_MEMCMP 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMMOVE 1
| #define HAVE_RAISE 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_VSNPRINTF 1
| /* end confdefs.h. */
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char _fstati64 (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char _fstati64 ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined (__stub__fstati64) || defined (__stub____fstati64)
| choke me
| #else
| char (*f) () = _fstati64;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != _fstati64;
| ;
| return 0;
| }
configure:18891: result: no
configure:18821: checking for clock_gettime
configure:18871: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
/tmp/ccm4V746.o: In function `main':
/home/kharish/cvs/gnome/evolution-data-server/libdb/dist/configure:18906: undefined reference to `clock_gettime'
/tmp/ccm4V746.o:(.data+0x0): undefined reference to `clock_gettime'
collect2: ld returned 1 exit status
configure:18874: $? = 1
configure: failed program was:
| #line 18826 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| #define HAVE_MUTEX_X86_GCC_ASSEMBLY 1
| #define HAVE_MUTEX_THREADS 1
| #define HAVE_GETCWD 1
| #define HAVE_GETOPT 1
| #define HAVE_MEMCMP 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMMOVE 1
| #define HAVE_RAISE 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_VSNPRINTF 1
| /* end confdefs.h. */
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char clock_gettime (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char clock_gettime ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined (__stub_clock_gettime) || defined (__stub___clock_gettime)
| choke me
| #else
| char (*f) () = clock_gettime;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != clock_gettime;
| ;
| return 0;
| }
configure:18891: result: no
configure:18821: checking for directio
configure:18871: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
/tmp/cc2rVbfh.o: In function `main':
/home/kharish/cvs/gnome/evolution-data-server/libdb/dist/configure:18906: undefined reference to `directio'
/tmp/cc2rVbfh.o:(.data+0x0): undefined reference to `directio'
collect2: ld returned 1 exit status
configure:18874: $? = 1
configure: failed program was:
| #line 18826 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| #define HAVE_MUTEX_X86_GCC_ASSEMBLY 1
| #define HAVE_MUTEX_THREADS 1
| #define HAVE_GETCWD 1
| #define HAVE_GETOPT 1
| #define HAVE_MEMCMP 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMMOVE 1
| #define HAVE_RAISE 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_VSNPRINTF 1
| /* end confdefs.h. */
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char directio (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char directio ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined (__stub_directio) || defined (__stub___directio)
| choke me
| #else
| char (*f) () = directio;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != directio;
| ;
| return 0;
| }
configure:18891: result: no
configure:18821: checking for gettimeofday
configure:18871: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18874: $? = 0
configure:18877: test -s conftest
configure:18880: $? = 0
configure:18891: result: yes
configure:18821: checking for getuid
configure:18871: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18874: $? = 0
configure:18877: test -s conftest
configure:18880: $? = 0
configure:18891: result: yes
configure:18910: checking for pstat_getdynamic
configure:18960: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
/tmp/ccKVCjev.o: In function `main':
/home/kharish/cvs/gnome/evolution-data-server/libdb/dist/configure:18997: undefined reference to `pstat_getdynamic'
/tmp/ccKVCjev.o:(.data+0x0): undefined reference to `pstat_getdynamic'
collect2: ld returned 1 exit status
configure:18963: $? = 1
configure: failed program was:
| #line 18915 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| #define HAVE_MUTEX_X86_GCC_ASSEMBLY 1
| #define HAVE_MUTEX_THREADS 1
| #define HAVE_GETCWD 1
| #define HAVE_GETOPT 1
| #define HAVE_MEMCMP 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMMOVE 1
| #define HAVE_RAISE 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETUID 1
| /* end confdefs.h. */
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char pstat_getdynamic (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char pstat_getdynamic ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined (__stub_pstat_getdynamic) || defined (__stub___pstat_getdynamic)
| choke me
| #else
| char (*f) () = pstat_getdynamic;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != pstat_getdynamic;
| ;
| return 0;
| }
configure:18980: result: no
configure:18910: checking for sched_yield
configure:18980: result: yes
configure:18910: checking for select
configure:18960: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18963: $? = 0
configure:18966: test -s conftest
configure:18969: $? = 0
configure:18980: result: yes
configure:18910: checking for strtoul
configure:18960: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18963: $? = 0
configure:18966: test -s conftest
configure:18969: $? = 0
configure:18980: result: yes
configure:18910: checking for sysconf
configure:18960: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:18963: $? = 0
configure:18966: test -s conftest
configure:18969: $? = 0
configure:18980: result: yes
configure:18910: checking for yield
configure:18960: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
/tmp/ccwk1uef.o: In function `main':
/home/kharish/cvs/gnome/evolution-data-server/libdb/dist/configure:19001: undefined reference to `yield'
/tmp/ccwk1uef.o:(.data+0x0): undefined reference to `yield'
collect2: ld returned 1 exit status
configure:18963: $? = 1
configure: failed program was:
| #line 18915 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| #define HAVE_MUTEX_X86_GCC_ASSEMBLY 1
| #define HAVE_MUTEX_THREADS 1
| #define HAVE_GETCWD 1
| #define HAVE_GETOPT 1
| #define HAVE_MEMCMP 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMMOVE 1
| #define HAVE_RAISE 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETUID 1
| #define HAVE_SCHED_YIELD 1
| #define HAVE_SELECT 1
| #define HAVE_STRTOUL 1
| #define HAVE_SYSCONF 1
| /* end confdefs.h. */
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char yield (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char yield ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined (__stub_yield) || defined (__stub___yield)
| choke me
| #else
| char (*f) () = yield;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != yield;
| ;
| return 0;
| }
configure:18980: result: no
configure:18997: checking for qsort
configure:19047: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19050: $? = 0
configure:19053: test -s conftest
configure:19056: $? = 0
configure:19067: result: yes
configure:19093: checking for pread
configure:19143: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19146: $? = 0
configure:19149: test -s conftest
configure:19152: $? = 0
configure:19163: result: yes
configure:19093: checking for pwrite
configure:19143: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19146: $? = 0
configure:19149: test -s conftest
configure:19152: $? = 0
configure:19163: result: yes
configure:19176: checking for fcntl/F_SETFD
configure:19203: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19206: $? = 0
configure:19209: test -s conftest
configure:19212: $? = 0
configure:19223: result: yes
configure:19240: checking for open/O_DIRECT
configure:19305: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure: In function 'main':
configure:19352: warning: incompatible implicit declaration of built-in function 'exit'
configure:19308: $? = 0
configure:19310: ./conftest
configure:19313: $? = 1
configure: program exited with status 1
configure: failed program was:
| #line 19289 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| #define HAVE_MUTEX_X86_GCC_ASSEMBLY 1
| #define HAVE_MUTEX_THREADS 1
| #define HAVE_GETCWD 1
| #define HAVE_GETOPT 1
| #define HAVE_MEMCMP 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMMOVE 1
| #define HAVE_RAISE 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETUID 1
| #define HAVE_SCHED_YIELD 1
| #define HAVE_SELECT 1
| #define HAVE_STRTOUL 1
| #define HAVE_SYSCONF 1
| #define HAVE_QSORT 1
| #define HAVE_PREAD 1
| #define HAVE_PWRITE 1
| #define HAVE_FCNTL_F_SETFD 1
| /* end confdefs.h. */
|
| #include <sys/types.h>
| #include <fcntl.h>
| main() {
| int c, fd = open("__o_direct_file", O_RDONLY | O_DIRECT, 0);
| exit ((fd == -1) || (read(fd, &c, 1) != 1));
| }
configure:19328: result: no
configure:19347: checking for special C compiler options needed for large files
configure:19427: result: no
configure:19433: checking for _FILE_OFFSET_BITS value needed for large files
configure:19465: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19504: warning: left shift count >= width of type
configure:19504: warning: left shift count >= width of type
configure:19506: error: size of array 'off_t_is_large' is negative
configure:19468: $? = 1
configure: failed program was:
| #line 19440 "configure"
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Berkeley DB"
| #define PACKAGE_TARNAME "db-4.1.25"
| #define PACKAGE_VERSION "4.1.25"
| #define PACKAGE_STRING "Berkeley DB 4.1.25"
| #define PACKAGE_BUGREPORT "support@sleepycat.com"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_CHAR_P 4
| #define HAVE_EXIT_SUCCESS 1
| #define HAVE_MUTEX_X86_GCC_ASSEMBLY 1
| #define HAVE_MUTEX_THREADS 1
| #define HAVE_GETCWD 1
| #define HAVE_GETOPT 1
| #define HAVE_MEMCMP 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMMOVE 1
| #define HAVE_RAISE 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETUID 1
| #define HAVE_SCHED_YIELD 1
| #define HAVE_SELECT 1
| #define HAVE_STRTOUL 1
| #define HAVE_SYSCONF 1
| #define HAVE_QSORT 1
| #define HAVE_PREAD 1
| #define HAVE_PWRITE 1
| #define HAVE_FCNTL_F_SETFD 1
| /* end confdefs.h. */
| #include <sys/types.h>
| /* Check that off_t can represent 2**63 - 1 correctly.
| We can't simply define LARGE_OFF_T to be 9223372036854775807,
| since some C++ compilers masquerading as C compilers
| incorrectly reject 9223372036854775807. */
| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
| int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
| && LARGE_OFF_T % 2147483647 == 1)
| ? 1 : -1];
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:19509: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19512: $? = 0
configure:19515: test -s conftest.o
configure:19518: $? = 0
configure:19530: result: 64
configure:19540: checking for _LARGE_FILES value needed for large files
configure:19572: cc -c -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19575: $? = 0
configure:19578: test -s conftest.o
configure:19581: $? = 0
configure:19637: result: no
configure:19764: checking for mlock
configure:19814: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19817: $? = 0
configure:19820: test -s conftest
configure:19823: $? = 0
configure:19834: result: yes
configure:19764: checking for munlock
configure:19814: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19817: $? = 0
configure:19820: test -s conftest
configure:19823: $? = 0
configure:19834: result: yes
configure:19849: checking for mmap
configure:19899: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19902: $? = 0
configure:19905: test -s conftest
configure:19908: $? = 0
configure:19919: result: yes
configure:19849: checking for munmap
configure:19899: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:19902: $? = 0
configure:19905: test -s conftest
configure:19908: $? = 0
configure:19919: result: yes
configure:19948: checking for shmget
configure:19998: cc -o conftest -g -O0 -D_GNU_SOURCE -D_REENTRANT conftest.c >&5
configure:20001: $? = 0
configure:20004: test -s conftest
configure:20007: $? = 0
configure:20018: result: yes
configure:20198: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by Berkeley DB config.status 4.1.25, which was
generated by GNU Autoconf 2.57. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on tao
config.status:734: creating Makefile
config.status:734: creating db_cxx.h
config.status:734: creating db_int.h
config.status:734: creating include.tcl
config.status:734: creating db.h
config.status:734: creating db_int_def.h
config.status:838: creating db_config.h
config.status:1049: db_config.h is unchanged
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_ct_db_cv_path_ar=ar
ac_ct_db_cv_path_chmod=chmod
ac_ct_db_cv_path_cp=cp
ac_ct_db_cv_path_ln=ln
ac_ct_db_cv_path_mkdir=mkdir
ac_ct_db_cv_path_rm=rm
ac_cv_build=i686-pc-linux-gnu
ac_cv_build_alias=i686-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-g -O0'
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_func__fstati64=no
ac_cv_func_clock_gettime=no
ac_cv_func_directio=no
ac_cv_func_getcwd=yes
ac_cv_func_getopt=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_getuid=yes
ac_cv_func_memcmp=yes
ac_cv_func_memcpy=yes
ac_cv_func_memmove=yes
ac_cv_func_mlock=yes
ac_cv_func_mmap=yes
ac_cv_func_munlock=yes
ac_cv_func_munmap=yes
ac_cv_func_pread=yes
ac_cv_func_pstat_getdynamic=no
ac_cv_func_pwrite=yes
ac_cv_func_qsort=yes
ac_cv_func_raise=yes
ac_cv_func_sched_yield=yes
ac_cv_func_select=yes
ac_cv_func_shmget=yes
ac_cv_func_snprintf=yes
ac_cv_func_strcasecmp=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strtoul=yes
ac_cv_func_sysconf=yes
ac_cv_func_vsnprintf=yes
ac_cv_func_yield=no
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stat_broken=no
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_host_alias=i686-pc-linux-gnu
ac_cv_lib_m=ac_cv_lib_m_main
ac_cv_lib_m_main=yes
ac_cv_lib_nsl=ac_cv_lib_nsl_main
ac_cv_lib_nsl_main=yes
ac_cv_lib_pthread=ac_cv_lib_pthread_main
ac_cv_lib_pthread_main=yes
ac_cv_lib_socket=ac_cv_lib_socket_main
ac_cv_lib_socket_main=no
ac_cv_member_struct_stat_st_blksize=yes
ac_cv_objext=o
ac_cv_path_db_cv_path_ranlib=/usr/bin/ranlib
ac_cv_path_db_cv_path_sh=/bin/sh
ac_cv_path_db_cv_path_strip=/usr/bin/strip
ac_cv_prog_CPP='cc -E'
ac_cv_prog_ac_ct_CC=cc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_ac_ct_db_cv_path_ar=ar
ac_cv_prog_ac_ct_db_cv_path_chmod=chmod
ac_cv_prog_ac_ct_db_cv_path_cp=cp
ac_cv_prog_ac_ct_db_cv_path_ln=ln
ac_cv_prog_ac_ct_db_cv_path_mkdir=mkdir
ac_cv_prog_ac_ct_db_cv_path_rm=rm
ac_cv_prog_ac_ct_path_ranlib=ranlib
ac_cv_prog_ac_ct_path_sh=sh
ac_cv_prog_ac_ct_path_strip=strip
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_egrep='grep -E'
ac_cv_search_opendir='none required'
ac_cv_sizeof_char=1
ac_cv_sizeof_char_p=4
ac_cv_sizeof_int=4
ac_cv_sizeof_long=4
ac_cv_sizeof_short=2
ac_cv_sizeof_size_t=4
ac_cv_sizeof_unsigned_char=1
ac_cv_sizeof_unsigned_int=4
ac_cv_sizeof_unsigned_long=4
ac_cv_sizeof_unsigned_short=2
ac_cv_sys_file_offset_bits=64
ac_cv_sys_large_files=no
ac_cv_sys_largefile_CC=no
ac_cv_type_char=yes
ac_cv_type_char_p=yes
ac_cv_type_int=yes
ac_cv_type_int16_t=yes
ac_cv_type_int32_t=yes
ac_cv_type_long=yes
ac_cv_type_off_t=yes
ac_cv_type_short=yes
ac_cv_type_size_t=yes
ac_cv_type_ssize_t=yes
ac_cv_type_u_char=yes
ac_cv_type_u_int=yes
ac_cv_type_u_int16_t=yes
ac_cv_type_u_int32_t=yes
ac_cv_type_u_int8_t=yes
ac_cv_type_u_long=yes
ac_cv_type_u_short=yes
ac_cv_type_unsigned_char=yes
ac_cv_type_unsigned_int=yes
ac_cv_type_unsigned_long=yes
ac_cv_type_unsigned_long_long=yes
ac_cv_type_unsigned_short=yes
db_cv_compat185=no
db_cv_cxx=no
db_cv_debug=no
db_cv_debug_rop=no
db_cv_debug_wop=no
db_cv_diagnostic=no
db_cv_dump185=no
db_cv_embedix=no
db_cv_exit_defines=yes
db_cv_fcntl_f_setfd=yes
db_cv_gcc_2_96=no
db_cv_gxx_except=no
db_cv_java=no
db_cv_mutex=x86/gcc-assembly
db_cv_open_o_direct=no
db_cv_path_ar=ar
db_cv_path_chmod=chmod
db_cv_path_cp=cp
db_cv_path_ln=ln
db_cv_path_mkdir=mkdir
db_cv_path_ranlib=/usr/bin/ranlib
db_cv_path_rm=rm
db_cv_path_sh=/bin/sh
db_cv_path_strip=/usr/bin/strip
db_cv_posixmutexes=no
db_cv_pthreadsmutexes=no
db_cv_rpc=no
db_cv_rpm=no
db_cv_tcl=no
db_cv_test=no
db_cv_uimutexes=no
db_cv_umrw=no
db_cv_uniquename=yes
lt_cv_archive_cmds_need_lc=no
lt_cv_compiler_c_o=yes
lt_cv_compiler_o_lo=yes
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file='/lib/libc.so.6 /lib/libc-2.4.so'
lt_cv_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern char \1;/p'\'''
lt_cv_ld_reload_flag=-r
lt_cv_path_LD=/usr/i586-suse-linux/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_prog_cc_can_build_shared=yes
lt_cv_prog_cc_no_builtin=
lt_cv_prog_cc_pic=' -fPIC'
lt_cv_prog_cc_pic_works=yes
lt_cv_prog_cc_shlib=
lt_cv_prog_cc_static=-static
lt_cv_prog_cc_static_works=yes
lt_cv_prog_cc_wl=-Wl,
lt_cv_prog_gnu_ld=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGISTW][ABCDGISTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p'\'''
## ----------------- ##
## Output variables. ##
## ----------------- ##
ADDITIONAL_INCS=''
ADDITIONAL_LANG=''
ADDITIONAL_OBJS='mut_tas.lo '
ADDITIONAL_PROGS=''
BUILD_TARGET='library_build'
CC='cc'
CCC='CXX'
CFLAGS='-g -O0'
CONFIGURATION_ARGS='--prefix=/home/kharish/opt/gnome --enable-maintainer-mode --prefix /home/kharish/opt/gnome --with-openldap=/opt/evo-openldap --enable-smime=yes --enable-nss=yes --enable-nntp=yes --with-krb5=/usr/local --enable-gtk-doc --enable-gnome-keyring CFLAGS=-g -O0 --cache-file=/dev/null --srcdir=.'
CONFIGURATION_PATH='/home/kharish/cvs/gnome/evolution-data-server/libdb/dist'
CPP='cc -E'
CPPFLAGS=' -D_GNU_SOURCE -D_REENTRANT'
CXX=''
CXXFLAGS='-g -O0'
DB_VERSION_MAJOR='4'
DB_VERSION_MINOR='1'
DB_VERSION_PATCH='25'
DB_VERSION_STRING='"Sleepycat Software: Berkeley DB 4.1.25: (October 11, 2004)"'
DB_VERSION_UNIQUE_NAME='_eds'
DEFAULT_LIB='$(libso_target)'
DEFAULT_LIB_CXX=''
DEFS='-DHAVE_CONFIG_H'
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EMBEDIX_ECD_CXX=''
EMBEDIX_ECD_RPC=''
EMBEDIX_ROOT=''
EXEEXT=''
INSTALLER='$(LIBTOOL) --mode=install cp -p'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_LIBS='$(libso_target)'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_TARGET='library_install'
JAR=''
JAVAC='nojavac'
JAVACFLAGS=''
JMODSUFFIX='so'
LDFLAGS=''
LIBJSO_LIBS=''
LIBOBJS=''
LIBS=''
LIBSO_LIBS=''
LIBTOOL='$(SHELL) ./libtool'
LIBTSO_LIBS=''
LIBXSO_LIBS=''
LN_S='ln -s'
LOAD_LIBS=' -lpthread -lm -lnsl'
LTLIBOBJS=''
MAKEFILE_CC='$(LIBTOOL) --mode=compile cc'
MAKEFILE_CCLINK='$(LIBTOOL) --mode=link cc'
MAKEFILE_CXX='$(LIBTOOL) --mode=compile nocxx'
MAKEFILE_CXXLINK='$(LIBTOOL) --mode=link nocxx'
MAKEFILE_MAYBE_WIN32=''
MAKEFILE_SOLINK='$(LIBTOOL) --mode=link cc -avoid-version'
MAKEFILE_XSOLINK='$(LIBTOOL) --mode=link nocxx -avoid-version'
MODSUFFIX='so'
OBJEXT='o'
PACKAGE_BUGREPORT='support@sleepycat.com'
PACKAGE_NAME='Berkeley DB'
PACKAGE_STRING='Berkeley DB 4.1.25'
PACKAGE_TARNAME='db-4.1.25'
PACKAGE_VERSION='4.1.25'
PATH_SEPARATOR=':'
POSTLINK='$(LIBTOOL) --mode=execute true'
RANLIB='ranlib'
RPC_CLIENT_OBJS=''
RPM_POST_INSTALL=''
RPM_POST_UNINSTALL=''
SHELL='/bin/sh'
SOFLAGS=''
SOSUFFIX='so'
STRIP='strip'
TCFLAGS=''
TCL_BIN_DIR=''
TCL_LIB_FILE=''
TCL_SRC_DIR=''
TCL_TCLSH=''
_ACJNI_JAVAC=''
ac_ct_CC='cc'
ac_ct_CCC=''
ac_ct_CXX=''
ac_ct_RANLIB='ranlib'
ac_ct_STRIP='strip'
ac_ct_db_cv_path_ar='ar'
ac_ct_db_cv_path_chmod='chmod'
ac_ct_db_cv_path_cp='cp'
ac_ct_db_cv_path_kill=''
ac_ct_db_cv_path_ln='ln'
ac_ct_db_cv_path_mkdir='mkdir'
ac_ct_db_cv_path_rm='rm'
ac_ct_db_cv_path_rpm=''
ac_ct_path_ldconfig=''
ac_ct_path_ranlib='ranlib'
ac_ct_path_sh='sh'
ac_ct_path_strip='strip'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
cxx_have_stdheaders=''
datadir='${prefix}/share'
db_align_t_decl='typedef unsigned long long db_align_t;'
db_alignp_t_decl='typedef unsigned int db_alignp_t;'
db_cv_path_ar='ar'
db_cv_path_chmod='chmod'
db_cv_path_cp='cp'
db_cv_path_embedix_install=''
db_cv_path_kill=''
db_cv_path_ldconfig=''
db_cv_path_ln='ln'
db_cv_path_mkdir='mkdir'
db_cv_path_ranlib='/usr/bin/ranlib'
db_cv_path_rm='rm'
db_cv_path_rpm=''
db_cv_path_rpm_archive=''
db_cv_path_sh='/bin/sh'
db_cv_path_strip='/usr/bin/strip'
db_int_def='#include "db_int_def.h"'
exec_prefix='${prefix}'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
includedir='${prefix}/include'
infodir='${prefix}/info'
int16_decl=''
int32_decl=''
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
o='.lo'
oldincludedir='/usr/include'
path_ldconfig=''
path_ranlib='ranlib'
path_sh='sh'
path_strip='strip'
prefix='/home/kharish/opt/gnome'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
ssize_t_decl=''
sysconfdir='${prefix}/etc'
target_alias=''
u_char_decl=''
u_int16_decl=''
u_int32_decl=''
u_int8_decl=''
u_int_decl=''
u_long_decl=''
u_short_decl=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define HAVE_DIRENT_H 1
#define HAVE_DLFCN_H 1
#define HAVE_EXIT_SUCCESS 1
#define HAVE_FCNTL_F_SETFD 1
#define HAVE_GETCWD 1
#define HAVE_GETOPT 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_GETUID 1
#define HAVE_INTTYPES_H 1
#define HAVE_MEMCMP 1
#define HAVE_MEMCPY 1
#define HAVE_MEMMOVE 1
#define HAVE_MEMORY_H 1
#define HAVE_MLOCK 1
#define HAVE_MMAP 1
#define HAVE_MUNLOCK 1
#define HAVE_MUNMAP 1
#define HAVE_MUTEX_THREADS 1
#define HAVE_MUTEX_X86_GCC_ASSEMBLY 1
#define HAVE_PREAD 1
#define HAVE_PWRITE 1
#define HAVE_QSORT 1
#define HAVE_RAISE 1
#define HAVE_SCHED_YIELD 1
#define HAVE_SELECT 1
#define HAVE_SHMGET 1
#define HAVE_SNPRINTF 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRCASECMP 1
#define HAVE_STRDUP 1
#define HAVE_STRERROR 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRTOUL 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_SYSCONF 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VSNPRINTF 1
#define PACKAGE_BUGREPORT "support@sleepycat.com"
#define PACKAGE_NAME "Berkeley DB"
#define PACKAGE_STRING "Berkeley DB 4.1.25"
#define PACKAGE_TARNAME "db-4.1.25"
#define PACKAGE_VERSION "4.1.25"
#define SIZEOF_CHAR 1
#define SIZEOF_CHAR_P 4
#define SIZEOF_INT 4
#define SIZEOF_LONG 4
#define SIZEOF_SHORT 2
#define SIZEOF_SIZE_T 4
#define SIZEOF_UNSIGNED_CHAR 1
#define SIZEOF_UNSIGNED_INT 4
#define SIZEOF_UNSIGNED_LONG 4
#define SIZEOF_UNSIGNED_SHORT 2
#define STDC_HEADERS 1
#define TIME_WITH_SYS_TIME 1
#define _FILE_OFFSET_BITS 64
configure: exit 0
|