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 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311
|
DC-Build-Header: claws-mail-extra-plugins 3.2.0-2 / Wed Feb 13 01:41:08 +0100 2008
Automatic build of claws-mail-extra-plugins_3.2.0-2 on bordereau-20.bordeaux.grid5000.fr by sbuild/amd64 0.57.0
Build started at 20080213-0141
******************************************************************************
Failed to open ./claws-mail-extra-plugins_3.2.0-2.dsc
Checking available source versions...
Fetching source files...
Reading package lists...
Building dependency tree...
Reading state information...
Need to get 6859kB of source archives.
Get:1 http://idpot.grenoble.grid5000.fr sid/main claws-mail-extra-plugins 3.2.0-2 (dsc) [1465B]
Get:2 http://idpot.grenoble.grid5000.fr sid/main claws-mail-extra-plugins 3.2.0-2 (tar) [6832kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main claws-mail-extra-plugins 3.2.0-2 (diff) [25.7kB]
Fetched 6859kB in 1s (4478kB/s)
Download complete and in download only mode
** Using build dependencies supplied by package:
Build-Depends: autotools-dev, bison, debhelper (>= 5), docbook-to-man, flex, gs-esp, libclaws-mail-dev (>= 3.2.0), libetpan-dev (>= 0.52), libglib2.0-dev, libgpgme11-dev (>= 1.1.1), libgtk2.0-dev, libgtkhtml2-dev (>= 2.6), libjpeg62-dev, libkrb5-dev, libnotify-dev, libperl-dev (>= 5.8.0), libpoppler-glib-dev, librapi2-dev, libsynce0-dev, libxml2-dev, libytnef0-dev, perl (>= 5.8.0), pkg-config, quilt
Checking for already installed source dependencies...
autotools-dev: missing
bison: missing
debhelper: missing
Using default version 6.0.5
docbook-to-man: missing
flex: missing
gs-esp: missing
libclaws-mail-dev: missing
Using default version 3.3.0-1
libetpan-dev: missing
Using default version 0.52-1
libglib2.0-dev: missing
libgpgme11-dev: missing
Using default version 1.1.6-1
libgtk2.0-dev: missing
libgtkhtml2-dev: missing
Using default version 2.11.1-1
libjpeg62-dev: missing
libkrb5-dev: missing
libnotify-dev: missing
libperl-dev: missing
Using default version 5.8.8-12
libpoppler-glib-dev: missing
librapi2-dev: missing
libsynce0-dev: missing
libxml2-dev: missing
libytnef0-dev: missing
perl: already installed (5.8.8-12 >= 5.8.0 is satisfied)
pkg-config: missing
quilt: missing
Checking for source dependency conflicts...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
bsdmainutils comerr-dev defoma diffstat docbook file fontconfig
fontconfig-config gettext gettext-base ghostscript ghostscript-x groff-base
gsfonts html2text intltool-debian libatk1.0-0 libatk1.0-dev libcairo2
libcairo2-dev libcupsimage2 libcupsys2 libcurl3-gnutls libcurl4-gnutls-dev
libdatrie0 libdb4.4 libdb4.4-dev libdbus-1-3 libdbus-1-dev libdbus-glib-1-2
libdbus-glib-1-dev libetpan11 libexpat1 libexpat1-dev libfontconfig1
libfontconfig1-dev libfreetype6 libfreetype6-dev libgail-common libgail-dev
libgail18 libgcrypt11-dev libglib2.0-0 libgnutls-dev libgomp1
libgpg-error-dev libgpgme11 libgs8 libgtk2.0-0 libgtk2.0-common
libgtkhtml2-0 libice-dev libice6 libidn11 libidn11-dev libjpeg62 libkadm55
libkeyutils1 libkrb53 libldap2-dev liblockfile-dev liblockfile1 libmagic1
libnewt0.52 libnotify1 libopencdk10-dev libpango1.0-0 libpango1.0-common
libpango1.0-dev libpaper1 libpcre3 libperl5.8 libpng12-0 libpng12-dev
libpoppler-dev libpoppler-glib2 libpoppler2 libpopt0 libpth-dev libpth20
librapi2 libsasl2-dev libsasl2-modules libsm-dev libsm6 libsp1c2 libssl-dev
libssl0.9.8 libsynce0 libtasn1-3-dev libthai-data libthai0 libtiff4 libx11-6
libx11-data libx11-dev libxau-dev libxau6 libxcomposite-dev libxcomposite1
libxcursor-dev libxcursor1 libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6
libxext-dev libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev
libxi6 libxinerama-dev libxinerama1 libxml2 libxrandr-dev libxrandr2
libxrender-dev libxrender1 libxt6 libytnef0 m4 man-db po-debconf sgml-base
sgml-data sp ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf whiptail
x11-common x11proto-composite-dev x11proto-core-dev x11proto-damage-dev
x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev x11proto-randr-dev
x11proto-render-dev x11proto-xext-dev x11proto-xinerama-dev xml-core
xtrans-dev zlib1g-dev
Suggested packages:
bison-doc wamerican wordlist whois vacation doc-base dh-make defoma-doc
dfontmgr psfontmgr x-ttcidfont-conf psgml docbook-dsssl docbook-xml
docbook-defguide cvs gettext-doc hpijs groff libcairo2-doc cupsys-common
libcurl3-dbg db4.4-doc libetpan-doc libgail-doc libgcrypt11-doc
libglib2.0-doc gnutls-bin gnutls-doc guile-gnutls gpgsm librsvg2-common
libgtk2.0-doc krb5-doc krb5-user ttf-arphic-bkai00mp ttf-arphic-bsmi00lp
ttf-arphic-gbsn00lp ttf-arphic-gkai00mp ttf-baekmuk ttf-kochi-gothic
ttf-kochi-mincho ttf-thryomanes imagemagick libpango1.0-doc
libsasl2-modules-gssapi-mit libsasl2-modules-gssapi-heimdal
libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql www-browser
procmail graphviz sgml-base-doc perlsgml doc-html-w3 opensp libxml2-utils
Recommended packages:
libft-perl curl wget lynx libatk1.0-data ca-certificates dbus
libglib2.0-data hicolor-icon-theme libgtk2.0-bin python libfribidi0
notification-daemon libpaper-utils libcompress-zlib-perl libmail-box-perl
libmail-sendmail-perl debconf-utils
The following NEW packages will be installed:
autotools-dev bison bsdmainutils comerr-dev debhelper defoma diffstat
docbook docbook-to-man file flex fontconfig fontconfig-config gettext
gettext-base ghostscript ghostscript-x groff-base gs-esp gsfonts html2text
intltool-debian libatk1.0-0 libatk1.0-dev libcairo2 libcairo2-dev
libclaws-mail-dev libcupsimage2 libcupsys2 libcurl3-gnutls
libcurl4-gnutls-dev libdatrie0 libdb4.4 libdb4.4-dev libdbus-1-3
libdbus-1-dev libdbus-glib-1-2 libdbus-glib-1-dev libetpan-dev libetpan11
libexpat1 libexpat1-dev libfontconfig1 libfontconfig1-dev libfreetype6
libfreetype6-dev libgail-common libgail-dev libgail18 libgcrypt11-dev
libglib2.0-0 libglib2.0-dev libgnutls-dev libgomp1 libgpg-error-dev
libgpgme11 libgpgme11-dev libgs8 libgtk2.0-0 libgtk2.0-common libgtk2.0-dev
libgtkhtml2-0 libgtkhtml2-dev libice-dev libice6 libidn11 libidn11-dev
libjpeg62 libjpeg62-dev libkadm55 libkeyutils1 libkrb5-dev libkrb53
libldap2-dev liblockfile-dev liblockfile1 libmagic1 libnewt0.52
libnotify-dev libnotify1 libopencdk10-dev libpango1.0-0 libpango1.0-common
libpango1.0-dev libpaper1 libpcre3 libperl-dev libperl5.8 libpng12-0
libpng12-dev libpoppler-dev libpoppler-glib-dev libpoppler-glib2 libpoppler2
libpopt0 libpth-dev libpth20 librapi2 librapi2-dev libsasl2-dev
libsasl2-modules libsm-dev libsm6 libsp1c2 libssl-dev libssl0.9.8 libsynce0
libsynce0-dev libtasn1-3-dev libthai-data libthai0 libtiff4 libx11-6
libx11-data libx11-dev libxau-dev libxau6 libxcomposite-dev libxcomposite1
libxcursor-dev libxcursor1 libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6
libxext-dev libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev
libxi6 libxinerama-dev libxinerama1 libxml2 libxml2-dev libxrandr-dev
libxrandr2 libxrender-dev libxrender1 libxt6 libytnef0 libytnef0-dev m4
man-db pkg-config po-debconf quilt sgml-base sgml-data sp ttf-dejavu
ttf-dejavu-core ttf-dejavu-extra ucf whiptail x11-common
x11proto-composite-dev x11proto-core-dev x11proto-damage-dev
x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev x11proto-randr-dev
x11proto-render-dev x11proto-xext-dev x11proto-xinerama-dev xml-core
xtrans-dev zlib1g-dev
0 upgraded, 171 newly installed, 0 to remove and 0 not upgraded.
Need to get 62.0MB of archives.
After this operation, 178MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
m4 flex x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev
libxau6 libxdmcp6 libx11-data libx11-6 libxau-dev libxdmcp-dev libxext6
x11proto-input-dev x11proto-xext-dev libxext-dev x11proto-kb-dev xtrans-dev
libx11-dev libxfixes3 libxcomposite1 x11proto-fixes-dev libxfixes-dev
x11proto-composite-dev libxcomposite-dev libxrender1 libxcursor1
x11proto-render-dev libxrender-dev libxcursor-dev libxdamage1
x11proto-damage-dev libxdamage-dev libexpat1 libfreetype6 ucf libmagic1 file
libnewt0.52 libpopt0 whiptail defoma ttf-dejavu-core ttf-dejavu-extra
ttf-dejavu fontconfig-config libfontconfig1 libxft2 libexpat1-dev zlib1g-dev
libfreetype6-dev libpcre3 libglib2.0-0 pkg-config libfontconfig1-dev
libxft-dev libxi6 libxi-dev libxinerama1 x11proto-xinerama-dev
libxinerama-dev libxrandr2 x11proto-randr-dev libxrandr-dev libxt6
bsdmainutils groff-base libdb4.4 libssl0.9.8 man-db gettext-base libidn11
libkeyutils1 libkrb53 liblockfile1 autotools-dev bison html2text libgomp1
gettext intltool-debian po-debconf debhelper diffstat sgml-base xml-core
sgml-data docbook libsp1c2 sp docbook-to-man fontconfig gsfonts libcupsys2
libjpeg62 libpng12-0 libtiff4 libcupsimage2 libpaper1 libgs8 ghostscript
ghostscript-x libatk1.0-0 libglib2.0-dev libatk1.0-dev libcairo2
libpng12-dev libcairo2-dev libssl-dev libclaws-mail-dev libcurl3-gnutls
libgpg-error-dev libgcrypt11-dev libopencdk10-dev libtasn1-3-dev
libgnutls-dev libidn11-dev libkadm55 comerr-dev libkrb5-dev libldap2-dev
libcurl4-gnutls-dev libdatrie0 libdbus-1-3 libdbus-1-dev libdbus-glib-1-2
libdbus-glib-1-dev libetpan11 libgtk2.0-common libpango1.0-common
libthai-data libthai0 libpango1.0-0 libgtk2.0-0 libgail18 libgail-common
libpango1.0-dev libgtk2.0-dev libgail-dev libpth20 libgpgme11 libpth-dev
libgpgme11-dev libxml2 libgtkhtml2-0 libxml2-dev libgtkhtml2-dev
libjpeg62-dev liblockfile-dev libnotify1 libnotify-dev libperl5.8
libperl-dev libpoppler2 libpoppler-dev libpoppler-glib2 libpoppler-glib-dev
libsynce0 librapi2 librapi2-dev libsasl2-modules libsasl2-dev libsynce0-dev
quilt gs-esp libdb4.4-dev libetpan-dev libytnef0 libytnef0-dev
Authentication warning overridden.
Get:1 http://idpot.grenoble.grid5000.fr sid/main m4 1.4.10-1 [206kB]
Get:2 http://idpot.grenoble.grid5000.fr sid/main flex 2.5.34-2.1 [304kB]
Get:3 http://idpot.grenoble.grid5000.fr sid/main x11-common 1:7.3+10 [345kB]
Get:4 http://idpot.grenoble.grid5000.fr sid/main libice6 2:1.0.4-1 [46.6kB]
Get:5 http://idpot.grenoble.grid5000.fr sid/main x11proto-core-dev 7.0.11-1 [88.9kB]
Get:6 http://idpot.grenoble.grid5000.fr sid/main libice-dev 2:1.0.4-1 [55.1kB]
Get:7 http://idpot.grenoble.grid5000.fr sid/main libsm6 2:1.0.3-1+b1 [21.8kB]
Get:8 http://idpot.grenoble.grid5000.fr sid/main libsm-dev 2:1.0.3-1+b1 [24.3kB]
Get:9 http://idpot.grenoble.grid5000.fr sid/main libxau6 1:1.0.3-2 [11.7kB]
Get:10 http://idpot.grenoble.grid5000.fr sid/main libxdmcp6 1:1.0.2-2 [16.7kB]
Get:11 http://idpot.grenoble.grid5000.fr sid/main libx11-data 2:1.0.3-7 [157kB]
Get:12 http://idpot.grenoble.grid5000.fr sid/main libx11-6 2:1.0.3-7 [567kB]
Get:13 http://idpot.grenoble.grid5000.fr sid/main libxau-dev 1:1.0.3-2 [15.4kB]
Get:14 http://idpot.grenoble.grid5000.fr sid/main libxdmcp-dev 1:1.0.2-2 [19.8kB]
Get:15 http://idpot.grenoble.grid5000.fr sid/main libxext6 1:1.0.3-2 [30.1kB]
Get:16 http://idpot.grenoble.grid5000.fr sid/main x11proto-input-dev 1.4.2-1 [15.6kB]
Get:17 http://idpot.grenoble.grid5000.fr sid/main x11proto-xext-dev 7.0.2-5 [41.7kB]
Get:18 http://idpot.grenoble.grid5000.fr sid/main libxext-dev 1:1.0.3-2 [81.5kB]
Get:19 http://idpot.grenoble.grid5000.fr sid/main x11proto-kb-dev 1.0.3-2 [26.8kB]
Get:20 http://idpot.grenoble.grid5000.fr sid/main xtrans-dev 1.0.4-1 [70.4kB]
Get:21 http://idpot.grenoble.grid5000.fr sid/main libx11-dev 2:1.0.3-7 [1269kB]
Get:22 http://idpot.grenoble.grid5000.fr sid/main libxfixes3 1:4.0.3-2 [9572B]
Get:23 http://idpot.grenoble.grid5000.fr sid/main libxcomposite1 1:0.4.0-1 [10.8kB]
Get:24 http://idpot.grenoble.grid5000.fr sid/main x11proto-fixes-dev 4.0-2 [5640B]
Get:25 http://idpot.grenoble.grid5000.fr sid/main libxfixes-dev 1:4.0.3-2 [12.1kB]
Get:26 http://idpot.grenoble.grid5000.fr sid/main x11proto-composite-dev 1:0.4-2 [12.3kB]
Get:27 http://idpot.grenoble.grid5000.fr sid/main libxcomposite-dev 1:0.4.0-1 [14.3kB]
Get:28 http://idpot.grenoble.grid5000.fr sid/main libxrender1 1:0.9.4-1 [25.4kB]
Get:29 http://idpot.grenoble.grid5000.fr sid/main libxcursor1 1:1.1.9-1 [24.0kB]
Get:30 http://idpot.grenoble.grid5000.fr sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
Get:31 http://idpot.grenoble.grid5000.fr sid/main libxrender-dev 1:0.9.4-1 [28.5kB]
Get:32 http://idpot.grenoble.grid5000.fr sid/main libxcursor-dev 1:1.1.9-1 [30.8kB]
Get:33 http://idpot.grenoble.grid5000.fr sid/main libxdamage1 1:1.1.1-3 [9804B]
Get:34 http://idpot.grenoble.grid5000.fr sid/main x11proto-damage-dev 1.1.0-2 [9090B]
Get:35 http://idpot.grenoble.grid5000.fr sid/main libxdamage-dev 1:1.1.1-3 [9634B]
Get:36 http://idpot.grenoble.grid5000.fr sid/main libexpat1 1.95.8-4 [63.9kB]
Get:37 http://idpot.grenoble.grid5000.fr sid/main libfreetype6 2.3.5-1+b1 [347kB]
Get:38 http://idpot.grenoble.grid5000.fr sid/main ucf 3.004 [62.9kB]
Get:39 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
Get:40 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
Get:41 http://idpot.grenoble.grid5000.fr sid/main libnewt0.52 0.52.2-11.1 [66.2kB]
Get:42 http://idpot.grenoble.grid5000.fr sid/main libpopt0 1.10-3 [33.1kB]
Get:43 http://idpot.grenoble.grid5000.fr sid/main whiptail 0.52.2-11.1 [34.7kB]
Get:44 http://idpot.grenoble.grid5000.fr sid/main defoma 0.11.10-0.2 [101kB]
Get:45 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-core 2.23-1 [1347kB]
Get:46 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-extra 2.23-1 [2949kB]
Get:47 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu 2.23-1 [24.3kB]
Get:48 http://idpot.grenoble.grid5000.fr sid/main fontconfig-config 2.5.0-2 [179kB]
Get:49 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1 2.5.0-2 [110kB]
Get:50 http://idpot.grenoble.grid5000.fr sid/main libxft2 2.1.12-2 [47.6kB]
Get:51 http://idpot.grenoble.grid5000.fr sid/main libexpat1-dev 1.95.8-4 [129kB]
Get:52 http://idpot.grenoble.grid5000.fr sid/main zlib1g-dev 1:1.2.3.3.dfsg-11 [157kB]
Get:53 http://idpot.grenoble.grid5000.fr sid/main libfreetype6-dev 2.3.5-1+b1 [662kB]
Get:54 http://idpot.grenoble.grid5000.fr sid/main libpcre3 7.6-1 [208kB]
Get:55 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-0 2.14.6-1 [561kB]
Get:56 http://idpot.grenoble.grid5000.fr sid/main pkg-config 0.22-1 [52.2kB]
Get:57 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1-dev 2.5.0-2 [595kB]
Get:58 http://idpot.grenoble.grid5000.fr sid/main libxft-dev 2.1.12-2 [61.3kB]
Get:59 http://idpot.grenoble.grid5000.fr sid/main libxi6 2:1.1.3-1 [24.6kB]
Get:60 http://idpot.grenoble.grid5000.fr sid/main libxi-dev 2:1.1.3-1 [69.0kB]
Get:61 http://idpot.grenoble.grid5000.fr sid/main libxinerama1 1:1.0.2-1 [9256B]
Get:62 http://idpot.grenoble.grid5000.fr sid/main x11proto-xinerama-dev 1.1.2-4 [5074B]
Get:63 http://idpot.grenoble.grid5000.fr sid/main libxinerama-dev 1:1.0.2-1 [10.8kB]
Get:64 http://idpot.grenoble.grid5000.fr sid/main libxrandr2 2:1.2.2-1 [20.4kB]
Get:65 http://idpot.grenoble.grid5000.fr sid/main x11proto-randr-dev 1.2.1-2 [28.6kB]
Get:66 http://idpot.grenoble.grid5000.fr sid/main libxrandr-dev 2:1.2.2-1 [27.8kB]
Get:67 http://idpot.grenoble.grid5000.fr sid/main libxt6 1:1.0.5-3 [166kB]
Get:68 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
Get:69 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-16 [844kB]
Get:70 http://idpot.grenoble.grid5000.fr sid/main libdb4.4 4.4.20-11 [471kB]
Get:71 http://idpot.grenoble.grid5000.fr sid/main libssl0.9.8 0.9.8g-4 [2883kB]
Get:72 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
Get:73 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
Get:74 http://idpot.grenoble.grid5000.fr sid/main libidn11 1.4-1 [138kB]
Get:75 http://idpot.grenoble.grid5000.fr sid/main libkeyutils1 1.2-6 [5206B]
Get:76 http://idpot.grenoble.grid5000.fr sid/main libkrb53 1.6.dfsg.3~beta1-2 [462kB]
Get:77 http://idpot.grenoble.grid5000.fr sid/main liblockfile1 1.06.2 [14.6kB]
Get:78 http://idpot.grenoble.grid5000.fr sid/main autotools-dev 20070725.1 [61.8kB]
Get:79 http://idpot.grenoble.grid5000.fr sid/main bison 1:2.3.dfsg-5 [419kB]
Get:80 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
Get:81 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3-20080202-1 [13.3kB]
Get:82 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
Get:83 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:84 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.11 [231kB]
Get:85 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.5 [519kB]
Get:86 http://idpot.grenoble.grid5000.fr sid/main diffstat 1.45-2 [21.1kB]
Get:87 http://idpot.grenoble.grid5000.fr sid/main sgml-base 1.26 [11.7kB]
Get:88 http://idpot.grenoble.grid5000.fr sid/main xml-core 0.11 [22.4kB]
Get:89 http://idpot.grenoble.grid5000.fr sid/main sgml-data 2.0.3 [279kB]
Get:90 http://idpot.grenoble.grid5000.fr sid/main docbook 4.5-4 [450kB]
Get:91 http://idpot.grenoble.grid5000.fr sid/main libsp1c2 1.3.4-1.2.1-47 [1345kB]
Get:92 http://idpot.grenoble.grid5000.fr sid/main sp 1.3.4-1.2.1-47 [176kB]
Get:93 http://idpot.grenoble.grid5000.fr sid/main docbook-to-man 1:2.0.0-26 [76.1kB]
Get:94 http://idpot.grenoble.grid5000.fr sid/main fontconfig 2.5.0-2 [43.0kB]
Get:95 http://idpot.grenoble.grid5000.fr sid/main gsfonts 1:8.11+urwcyr1.0.7~pre43-2 [3372kB]
Get:96 http://idpot.grenoble.grid5000.fr sid/main libcupsys2 1.3.5-1+b1 [164kB]
Get:97 http://idpot.grenoble.grid5000.fr sid/main libjpeg62 6b-14 [86.0kB]
Get:98 http://idpot.grenoble.grid5000.fr sid/main libpng12-0 1.2.15~beta5-3 [187kB]
Get:99 http://idpot.grenoble.grid5000.fr sid/main libtiff4 3.8.2-7 [483kB]
Get:100 http://idpot.grenoble.grid5000.fr sid/main libcupsimage2 1.3.5-1+b1 [88.0kB]
Get:101 http://idpot.grenoble.grid5000.fr sid/main libpaper1 1.1.23 [20.8kB]
Get:102 http://idpot.grenoble.grid5000.fr sid/main libgs8 8.61.dfsg.1-1 [2195kB]
Get:103 http://idpot.grenoble.grid5000.fr sid/main ghostscript 8.61.dfsg.1-1 [793kB]
Get:104 http://idpot.grenoble.grid5000.fr sid/main ghostscript-x 8.61.dfsg.1-1 [59.4kB]
Get:105 http://idpot.grenoble.grid5000.fr sid/main libatk1.0-0 1.20.0-1 [78.5kB]
Get:106 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-dev 2.14.6-1 [569kB]
Get:107 http://idpot.grenoble.grid5000.fr sid/main libatk1.0-dev 1.20.0-1 [112kB]
Get:108 http://idpot.grenoble.grid5000.fr sid/main libcairo2 1.4.14-1 [539kB]
Get:109 http://idpot.grenoble.grid5000.fr sid/main libpng12-dev 1.2.15~beta5-3 [171kB]
Get:110 http://idpot.grenoble.grid5000.fr sid/main libcairo2-dev 1.4.14-1 [617kB]
Get:111 http://idpot.grenoble.grid5000.fr sid/main libssl-dev 0.9.8g-4 [2072kB]
Get:112 http://idpot.grenoble.grid5000.fr sid/main libclaws-mail-dev 3.3.0-1 [142kB]
Get:113 http://idpot.grenoble.grid5000.fr sid/main libcurl3-gnutls 7.18.0-1 [196kB]
Get:114 http://idpot.grenoble.grid5000.fr sid/main libgpg-error-dev 1.4-2 [33.6kB]
Get:115 http://idpot.grenoble.grid5000.fr sid/main libgcrypt11-dev 1.4.0-3 [319kB]
Get:116 http://idpot.grenoble.grid5000.fr sid/main libopencdk10-dev 0.6.6-1 [117kB]
Get:117 http://idpot.grenoble.grid5000.fr sid/main libtasn1-3-dev 1.3-1 [372kB]
Get:118 http://idpot.grenoble.grid5000.fr sid/main libgnutls-dev 2.2.1-3 [438kB]
Get:119 http://idpot.grenoble.grid5000.fr sid/main libidn11-dev 1.4-1 [589kB]
Get:120 http://idpot.grenoble.grid5000.fr sid/main libkadm55 1.6.dfsg.3~beta1-2 [147kB]
Get:121 http://idpot.grenoble.grid5000.fr sid/main comerr-dev 2.1-1.40.6-1 [41.6kB]
Get:122 http://idpot.grenoble.grid5000.fr sid/main libkrb5-dev 1.6.dfsg.3~beta1-2 [88.6kB]
Get:123 http://idpot.grenoble.grid5000.fr sid/main libldap2-dev 2.4.7-5 [743kB]
Get:124 http://idpot.grenoble.grid5000.fr sid/main libcurl4-gnutls-dev 7.18.0-1 [861kB]
Get:125 http://idpot.grenoble.grid5000.fr sid/main libdatrie0 0.1.3-1 [18.3kB]
Get:126 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-3 1.1.2-1 [134kB]
Get:127 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-dev 1.1.2-1 [222kB]
Get:128 http://idpot.grenoble.grid5000.fr sid/main libdbus-glib-1-2 0.74-1 [135kB]
Get:129 http://idpot.grenoble.grid5000.fr sid/main libdbus-glib-1-dev 0.74-1 [176kB]
Get:130 http://idpot.grenoble.grid5000.fr sid/main libetpan11 0.52-1 [285kB]
Get:131 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-common 2.12.7-1 [6169kB]
Get:132 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-common 1.18.4-1 [50.1kB]
Get:133 http://idpot.grenoble.grid5000.fr sid/main libthai-data 0.1.9-3 [162kB]
Get:134 http://idpot.grenoble.grid5000.fr sid/main libthai0 0.1.9-3 [31.5kB]
Get:135 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-0 1.18.4-1 [294kB]
Get:136 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-0 2.12.7-1 [2059kB]
Get:137 http://idpot.grenoble.grid5000.fr sid/main libgail18 1.20.2-1 [195kB]
Get:138 http://idpot.grenoble.grid5000.fr sid/main libgail-common 1.20.2-1 [227kB]
Get:139 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-dev 1.18.4-1 [361kB]
Get:140 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-dev 2.12.7-1 [2782kB]
Get:141 http://idpot.grenoble.grid5000.fr sid/main libgail-dev 1.20.2-1 [89.6kB]
Get:142 http://idpot.grenoble.grid5000.fr sid/main libpth20 2.0.7-9 [76.5kB]
Get:143 http://idpot.grenoble.grid5000.fr sid/main libgpgme11 1.1.6-1 [270kB]
Get:144 http://idpot.grenoble.grid5000.fr sid/main libpth-dev 2.0.7-9 [135kB]
Get:145 http://idpot.grenoble.grid5000.fr sid/main libgpgme11-dev 1.1.6-1 [440kB]
Get:146 http://idpot.grenoble.grid5000.fr sid/main libxml2 2.6.31.dfsg-1 [782kB]
Get:147 http://idpot.grenoble.grid5000.fr sid/main libgtkhtml2-0 2.11.1-1 [242kB]
Get:148 http://idpot.grenoble.grid5000.fr sid/main libxml2-dev 2.6.31.dfsg-1 [673kB]
Get:149 http://idpot.grenoble.grid5000.fr sid/main libgtkhtml2-dev 2.11.1-1 [256kB]
Get:150 http://idpot.grenoble.grid5000.fr sid/main libjpeg62-dev 6b-14 [186kB]
Get:151 http://idpot.grenoble.grid5000.fr sid/main liblockfile-dev 1.06.2 [18.1kB]
Get:152 http://idpot.grenoble.grid5000.fr sid/main libnotify1 0.4.4-3 [26.2kB]
Get:153 http://idpot.grenoble.grid5000.fr sid/main libnotify-dev 0.4.4-3 [28.1kB]
Get:154 http://idpot.grenoble.grid5000.fr sid/main libperl5.8 5.8.8-12 [532kB]
Get:155 http://idpot.grenoble.grid5000.fr sid/main libperl-dev 5.8.8-12 [574kB]
Get:156 http://idpot.grenoble.grid5000.fr sid/main libpoppler2 0.6.2-1 [713kB]
Get:157 http://idpot.grenoble.grid5000.fr sid/main libpoppler-dev 0.6.2-1 [931kB]
Get:158 http://idpot.grenoble.grid5000.fr sid/main libpoppler-glib2 0.6.2-1 [155kB]
Get:159 http://idpot.grenoble.grid5000.fr sid/main libpoppler-glib-dev 0.6.2-1 [205kB]
Get:160 http://idpot.grenoble.grid5000.fr sid/main libsynce0 0.11-1 [21.9kB]
Get:161 http://idpot.grenoble.grid5000.fr sid/main librapi2 0.11-1 [30.6kB]
Get:162 http://idpot.grenoble.grid5000.fr sid/main librapi2-dev 0.11-1 [43.6kB]
Get:163 http://idpot.grenoble.grid5000.fr sid/main libsasl2-modules 2.1.22.dfsg1-17+b1 [145kB]
Get:164 http://idpot.grenoble.grid5000.fr sid/main libsasl2-dev 2.1.22.dfsg1-17+b1 [257kB]
Get:165 http://idpot.grenoble.grid5000.fr sid/main libsynce0-dev 0.11-1 [37.1kB]
Get:166 http://idpot.grenoble.grid5000.fr sid/main quilt 0.46-4 [339kB]
Get:167 http://idpot.grenoble.grid5000.fr sid/main gs-esp 8.61.dfsg.1-1 [26.9kB]
Get:168 http://idpot.grenoble.grid5000.fr sid/main libdb4.4-dev 4.4.20-11 [543kB]
Get:169 http://idpot.grenoble.grid5000.fr sid/main libetpan-dev 0.52-1 [410kB]
Get:170 http://idpot.grenoble.grid5000.fr sid/main libytnef0 1.5-1 [19.5kB]
Get:171 http://idpot.grenoble.grid5000.fr sid/main libytnef0-dev 1.5-1 [28.1kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 62.0MB in 8s (7005kB/s)
Selecting previously deselected package m4.
(Reading database ... 9173 files and directories currently installed.)
Unpacking m4 (from .../archives/m4_1.4.10-1_i386.deb) ...
Selecting previously deselected package flex.
Unpacking flex (from .../flex_2.5.34-2.1_i386.deb) ...
Selecting previously deselected package x11-common.
Unpacking x11-common (from .../x11-common_1%3a7.3+10_i386.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.4-1_i386.deb) ...
Setting up x11-common (1:7.3+10) ...
Selecting previously deselected package x11proto-core-dev.
(Reading database ... 9299 files and directories currently installed.)
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.11-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.4-1_i386.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.0.3-1+b1_i386.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.0.3-1+b1_i386.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.0.3-7_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.0.3-7_i386.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.4.2-1_all.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.2-5_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_1%3a1.0.3-2_i386.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-2_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.0.4-1_all.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.0.3-7_i386.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_i386.deb) ...
Selecting previously deselected package libxcomposite1.
Unpacking libxcomposite1 (from .../libxcomposite1_1%3a0.4.0-1_i386.deb) ...
Selecting previously deselected package x11proto-fixes-dev.
Unpacking x11proto-fixes-dev (from .../x11proto-fixes-dev_4.0-2_all.deb) ...
Selecting previously deselected package libxfixes-dev.
Unpacking libxfixes-dev (from .../libxfixes-dev_1%3a4.0.3-2_i386.deb) ...
Selecting previously deselected package x11proto-composite-dev.
Unpacking x11proto-composite-dev (from .../x11proto-composite-dev_1%3a0.4-2_all.deb) ...
Selecting previously deselected package libxcomposite-dev.
Unpacking libxcomposite-dev (from .../libxcomposite-dev_1%3a0.4.0-1_i386.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-1_i386.deb) ...
Selecting previously deselected package libxcursor1.
Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.9-1_i386.deb) ...
Selecting previously deselected package x11proto-render-dev.
Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.9.3-2_all.deb) ...
Selecting previously deselected package libxrender-dev.
Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.4-1_i386.deb) ...
Selecting previously deselected package libxcursor-dev.
Unpacking libxcursor-dev (from .../libxcursor-dev_1%3a1.1.9-1_i386.deb) ...
Selecting previously deselected package libxdamage1.
Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.1-3_i386.deb) ...
Selecting previously deselected package x11proto-damage-dev.
Unpacking x11proto-damage-dev (from .../x11proto-damage-dev_1.1.0-2_all.deb) ...
Selecting previously deselected package libxdamage-dev.
Unpacking libxdamage-dev (from .../libxdamage-dev_1%3a1.1.1-3_i386.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_1.95.8-4_i386.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.5-1+b1_i386.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../apt/archives/ucf_3.004_all.deb) ...
Moving old data out of the way
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_4.23-2_i386.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_4.23-2_i386.deb) ...
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.2-11.1_i386.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.10-3_i386.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.2-11.1_i386.deb) ...
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.23-1_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.23-1_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.23-1_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.5.0-2_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.5.0-2_i386.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.1.12-2_i386.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_1.95.8-4_i386.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-11_i386.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.6-1_i386.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.14.6-1_i386.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.22-1_i386.deb) ...
Selecting previously deselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.5.0-2_i386.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.1.12-2_i386.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_2%3a1.1.3-1_i386.deb) ...
Selecting previously deselected package libxi-dev.
Unpacking libxi-dev (from .../libxi-dev_2%3a1.1.3-1_i386.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_1%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-4_all.deb) ...
Selecting previously deselected package libxinerama-dev.
Unpacking libxinerama-dev (from .../libxinerama-dev_1%3a1.0.2-1_i386.deb) ...
Selecting previously deselected package libxrandr2.
Unpacking libxrandr2 (from .../libxrandr2_2%3a1.2.2-1_i386.deb) ...
Selecting previously deselected package x11proto-randr-dev.
Unpacking x11proto-randr-dev (from .../x11proto-randr-dev_1.2.1-2_all.deb) ...
Selecting previously deselected package libxrandr-dev.
Unpacking libxrandr-dev (from .../libxrandr-dev_2%3a1.2.2-1_i386.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_i386.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_i386.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.18.1.1-16_i386.deb) ...
Selecting previously deselected package libdb4.4.
Unpacking libdb4.4 (from .../libdb4.4_4.4.20-11_i386.deb) ...
Selecting previously deselected package libssl0.9.8.
Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-4_i386.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
Selecting previously deselected package libidn11.
Unpacking libidn11 (from .../libidn11_1.4-1_i386.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.2-6_i386.deb) ...
Selecting previously deselected package libkrb53.
Unpacking libkrb53 (from .../libkrb53_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package liblockfile1.
Unpacking liblockfile1 (from .../liblockfile1_1.06.2_i386.deb) ...
Selecting previously deselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20070725.1_all.deb) ...
Selecting previously deselected package bison.
Unpacking bison (from .../bison_1%3a2.3.dfsg-5_i386.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-3_i386.deb) ...
Selecting previously deselected package libgomp1.
Unpacking libgomp1 (from .../libgomp1_4.3-20080202-1_i386.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-2_i386.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously deselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.11_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_6.0.5_all.deb) ...
Selecting previously deselected package diffstat.
Unpacking diffstat (from .../diffstat_1.45-2_i386.deb) ...
Selecting previously deselected package sgml-base.
Unpacking sgml-base (from .../sgml-base_1.26_all.deb) ...
Selecting previously deselected package xml-core.
Unpacking xml-core (from .../archives/xml-core_0.11_all.deb) ...
Selecting previously deselected package sgml-data.
Unpacking sgml-data (from .../sgml-data_2.0.3_all.deb) ...
Selecting previously deselected package docbook.
Unpacking docbook (from .../archives/docbook_4.5-4_all.deb) ...
Selecting previously deselected package libsp1c2.
Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_i386.deb) ...
Selecting previously deselected package sp.
Unpacking sp (from .../sp_1.3.4-1.2.1-47_i386.deb) ...
Selecting previously deselected package docbook-to-man.
Unpacking docbook-to-man (from .../docbook-to-man_1%3a2.0.0-26_i386.deb) ...
Selecting previously deselected package fontconfig.
Unpacking fontconfig (from .../fontconfig_2.5.0-2_i386.deb) ...
Selecting previously deselected package gsfonts.
Unpacking gsfonts (from .../gsfonts_1%3a8.11+urwcyr1.0.7~pre43-2_all.deb) ...
Selecting previously deselected package libcupsys2.
Unpacking libcupsys2 (from .../libcupsys2_1.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b-14_i386.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.15~beta5-3_i386.deb) ...
Selecting previously deselected package libtiff4.
Unpacking libtiff4 (from .../libtiff4_3.8.2-7_i386.deb) ...
Selecting previously deselected package libcupsimage2.
Unpacking libcupsimage2 (from .../libcupsimage2_1.3.5-1+b1_i386.deb) ...
Selecting previously deselected package libpaper1.
Unpacking libpaper1 (from .../libpaper1_1.1.23_i386.deb) ...
Selecting previously deselected package libgs8.
Unpacking libgs8 (from .../libgs8_8.61.dfsg.1-1_i386.deb) ...
Selecting previously deselected package ghostscript.
Unpacking ghostscript (from .../ghostscript_8.61.dfsg.1-1_i386.deb) ...
Selecting previously deselected package ghostscript-x.
Unpacking ghostscript-x (from .../ghostscript-x_8.61.dfsg.1-1_i386.deb) ...
Selecting previously deselected package libatk1.0-0.
Unpacking libatk1.0-0 (from .../libatk1.0-0_1.20.0-1_i386.deb) ...
Selecting previously deselected package libglib2.0-dev.
Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.14.6-1_i386.deb) ...
Selecting previously deselected package libatk1.0-dev.
Unpacking libatk1.0-dev (from .../libatk1.0-dev_1.20.0-1_i386.deb) ...
Selecting previously deselected package libcairo2.
Unpacking libcairo2 (from .../libcairo2_1.4.14-1_i386.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.15~beta5-3_i386.deb) ...
Selecting previously deselected package libcairo2-dev.
Unpacking libcairo2-dev (from .../libcairo2-dev_1.4.14-1_i386.deb) ...
Selecting previously deselected package libssl-dev.
Unpacking libssl-dev (from .../libssl-dev_0.9.8g-4_i386.deb) ...
Selecting previously deselected package libclaws-mail-dev.
Unpacking libclaws-mail-dev (from .../libclaws-mail-dev_3.3.0-1_i386.deb) ...
Selecting previously deselected package libcurl3-gnutls.
Unpacking libcurl3-gnutls (from .../libcurl3-gnutls_7.18.0-1_i386.deb) ...
Selecting previously deselected package libgpg-error-dev.
Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.4-2_i386.deb) ...
Selecting previously deselected package libgcrypt11-dev.
Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.0-3_i386.deb) ...
Selecting previously deselected package libopencdk10-dev.
Unpacking libopencdk10-dev (from .../libopencdk10-dev_0.6.6-1_i386.deb) ...
Selecting previously deselected package libtasn1-3-dev.
Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_1.3-1_i386.deb) ...
Selecting previously deselected package libgnutls-dev.
Unpacking libgnutls-dev (from .../libgnutls-dev_2.2.1-3_i386.deb) ...
Selecting previously deselected package libidn11-dev.
Unpacking libidn11-dev (from .../libidn11-dev_1.4-1_i386.deb) ...
Selecting previously deselected package libkadm55.
Unpacking libkadm55 (from .../libkadm55_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package comerr-dev.
Unpacking comerr-dev (from .../comerr-dev_2.1-1.40.6-1_i386.deb) ...
Selecting previously deselected package libkrb5-dev.
Unpacking libkrb5-dev (from .../libkrb5-dev_1.6.dfsg.3~beta1-2_i386.deb) ...
Selecting previously deselected package libldap2-dev.
Unpacking libldap2-dev (from .../libldap2-dev_2.4.7-5_i386.deb) ...
Selecting previously deselected package libcurl4-gnutls-dev.
Unpacking libcurl4-gnutls-dev (from .../libcurl4-gnutls-dev_7.18.0-1_i386.deb) ...
Selecting previously deselected package libdatrie0.
Unpacking libdatrie0 (from .../libdatrie0_0.1.3-1_i386.deb) ...
Selecting previously deselected package libdbus-1-3.
Unpacking libdbus-1-3 (from .../libdbus-1-3_1.1.2-1_i386.deb) ...
Selecting previously deselected package libdbus-1-dev.
Unpacking libdbus-1-dev (from .../libdbus-1-dev_1.1.2-1_i386.deb) ...
Selecting previously deselected package libdbus-glib-1-2.
Unpacking libdbus-glib-1-2 (from .../libdbus-glib-1-2_0.74-1_i386.deb) ...
Selecting previously deselected package libdbus-glib-1-dev.
Unpacking libdbus-glib-1-dev (from .../libdbus-glib-1-dev_0.74-1_i386.deb) ...
Selecting previously deselected package libetpan11.
Unpacking libetpan11 (from .../libetpan11_0.52-1_i386.deb) ...
Selecting previously deselected package libgtk2.0-common.
Unpacking libgtk2.0-common (from .../libgtk2.0-common_2.12.7-1_all.deb) ...
Selecting previously deselected package libpango1.0-common.
Unpacking libpango1.0-common (from .../libpango1.0-common_1.18.4-1_all.deb) ...
Selecting previously deselected package libthai-data.
Unpacking libthai-data (from .../libthai-data_0.1.9-3_all.deb) ...
Selecting previously deselected package libthai0.
Unpacking libthai0 (from .../libthai0_0.1.9-3_i386.deb) ...
Selecting previously deselected package libpango1.0-0.
Unpacking libpango1.0-0 (from .../libpango1.0-0_1.18.4-1_i386.deb) ...
Selecting previously deselected package libgtk2.0-0.
Unpacking libgtk2.0-0 (from .../libgtk2.0-0_2.12.7-1_i386.deb) ...
Selecting previously deselected package libgail18.
Unpacking libgail18 (from .../libgail18_1.20.2-1_i386.deb) ...
Selecting previously deselected package libgail-common.
Unpacking libgail-common (from .../libgail-common_1.20.2-1_i386.deb) ...
Selecting previously deselected package libpango1.0-dev.
Unpacking libpango1.0-dev (from .../libpango1.0-dev_1.18.4-1_i386.deb) ...
Selecting previously deselected package libgtk2.0-dev.
Unpacking libgtk2.0-dev (from .../libgtk2.0-dev_2.12.7-1_i386.deb) ...
Selecting previously deselected package libgail-dev.
Unpacking libgail-dev (from .../libgail-dev_1.20.2-1_i386.deb) ...
Selecting previously deselected package libpth20.
Unpacking libpth20 (from .../libpth20_2.0.7-9_i386.deb) ...
Selecting previously deselected package libgpgme11.
Unpacking libgpgme11 (from .../libgpgme11_1.1.6-1_i386.deb) ...
Selecting previously deselected package libpth-dev.
Unpacking libpth-dev (from .../libpth-dev_2.0.7-9_i386.deb) ...
Selecting previously deselected package libgpgme11-dev.
Unpacking libgpgme11-dev (from .../libgpgme11-dev_1.1.6-1_i386.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.6.31.dfsg-1_i386.deb) ...
Selecting previously deselected package libgtkhtml2-0.
Unpacking libgtkhtml2-0 (from .../libgtkhtml2-0_2.11.1-1_i386.deb) ...
Selecting previously deselected package libxml2-dev.
Unpacking libxml2-dev (from .../libxml2-dev_2.6.31.dfsg-1_i386.deb) ...
Selecting previously deselected package libgtkhtml2-dev.
Unpacking libgtkhtml2-dev (from .../libgtkhtml2-dev_2.11.1-1_i386.deb) ...
Selecting previously deselected package libjpeg62-dev.
Unpacking libjpeg62-dev (from .../libjpeg62-dev_6b-14_i386.deb) ...
Selecting previously deselected package liblockfile-dev.
Unpacking liblockfile-dev (from .../liblockfile-dev_1.06.2_i386.deb) ...
Selecting previously deselected package libnotify1.
Unpacking libnotify1 (from .../libnotify1_0.4.4-3_i386.deb) ...
Selecting previously deselected package libnotify-dev.
Unpacking libnotify-dev (from .../libnotify-dev_0.4.4-3_i386.deb) ...
Selecting previously deselected package libperl5.8.
Unpacking libperl5.8 (from .../libperl5.8_5.8.8-12_i386.deb) ...
Selecting previously deselected package libperl-dev.
Unpacking libperl-dev (from .../libperl-dev_5.8.8-12_i386.deb) ...
Selecting previously deselected package libpoppler2.
Unpacking libpoppler2 (from .../libpoppler2_0.6.2-1_i386.deb) ...
Selecting previously deselected package libpoppler-dev.
Unpacking libpoppler-dev (from .../libpoppler-dev_0.6.2-1_i386.deb) ...
Selecting previously deselected package libpoppler-glib2.
Unpacking libpoppler-glib2 (from .../libpoppler-glib2_0.6.2-1_i386.deb) ...
Selecting previously deselected package libpoppler-glib-dev.
Unpacking libpoppler-glib-dev (from .../libpoppler-glib-dev_0.6.2-1_i386.deb) ...
Selecting previously deselected package libsynce0.
Unpacking libsynce0 (from .../libsynce0_0.11-1_i386.deb) ...
Selecting previously deselected package librapi2.
Unpacking librapi2 (from .../librapi2_0.11-1_i386.deb) ...
Selecting previously deselected package librapi2-dev.
Unpacking librapi2-dev (from .../librapi2-dev_0.11-1_i386.deb) ...
Selecting previously deselected package libsasl2-modules.
Unpacking libsasl2-modules (from .../libsasl2-modules_2.1.22.dfsg1-17+b1_i386.deb) ...
Selecting previously deselected package libsasl2-dev.
Unpacking libsasl2-dev (from .../libsasl2-dev_2.1.22.dfsg1-17+b1_i386.deb) ...
Selecting previously deselected package libsynce0-dev.
Unpacking libsynce0-dev (from .../libsynce0-dev_0.11-1_i386.deb) ...
Selecting previously deselected package quilt.
Unpacking quilt (from .../archives/quilt_0.46-4_all.deb) ...
Selecting previously deselected package gs-esp.
Unpacking gs-esp (from .../gs-esp_8.61.dfsg.1-1_all.deb) ...
Selecting previously deselected package libdb4.4-dev.
Unpacking libdb4.4-dev (from .../libdb4.4-dev_4.4.20-11_i386.deb) ...
Selecting previously deselected package libetpan-dev.
Unpacking libetpan-dev (from .../libetpan-dev_0.52-1_i386.deb) ...
Selecting previously deselected package libytnef0.
Unpacking libytnef0 (from .../libytnef0_1.5-1_i386.deb) ...
Selecting previously deselected package libytnef0-dev.
Unpacking libytnef0-dev (from .../libytnef0-dev_1.5-1_i386.deb) ...
Setting up m4 (1.4.10-1) ...
Setting up flex (2.5.34-2.1) ...
Setting up libice6 (2:1.0.4-1) ...
Setting up x11proto-core-dev (7.0.11-1) ...
Setting up libice-dev (2:1.0.4-1) ...
Setting up libsm6 (2:1.0.3-1+b1) ...
Setting up libsm-dev (2:1.0.3-1+b1) ...
Setting up libxau6 (1:1.0.3-2) ...
Setting up libxdmcp6 (1:1.0.2-2) ...
Setting up libx11-data (2:1.0.3-7) ...
Setting up libx11-6 (2:1.0.3-7) ...
Setting up libxau-dev (1:1.0.3-2) ...
Setting up libxdmcp-dev (1:1.0.2-2) ...
Setting up libxext6 (1:1.0.3-2) ...
Setting up x11proto-input-dev (1.4.2-1) ...
Setting up x11proto-xext-dev (7.0.2-5) ...
Setting up x11proto-kb-dev (1.0.3-2) ...
Setting up xtrans-dev (1.0.4-1) ...
Setting up libxfixes3 (1:4.0.3-2) ...
Setting up libxcomposite1 (1:0.4.0-1) ...
Setting up x11proto-fixes-dev (4.0-2) ...
Setting up x11proto-composite-dev (1:0.4-2) ...
Setting up libxrender1 (1:0.9.4-1) ...
Setting up libxcursor1 (1:1.1.9-1) ...
Setting up x11proto-render-dev (2:0.9.3-2) ...
Setting up libxdamage1 (1:1.1.1-3) ...
Setting up x11proto-damage-dev (1.1.0-2) ...
Setting up libexpat1 (1.95.8-4) ...
Setting up libfreetype6 (2.3.5-1+b1) ...
Setting up ucf (3.004) ...
Setting up libmagic1 (4.23-2) ...
Setting up file (4.23-2) ...
Setting up libnewt0.52 (0.52.2-11.1) ...
Setting up libpopt0 (1.10-3) ...
Setting up whiptail (0.52.2-11.1) ...
Setting up defoma (0.11.10-0.2) ...
Setting up ttf-dejavu-core (2.23-1) ...
Setting up ttf-dejavu-extra (2.23-1) ...
Setting up ttf-dejavu (2.23-1) ...
Setting up fontconfig-config (2.5.0-2) ...
Setting up libfontconfig1 (2.5.0-2) ...
Setting up libxft2 (2.1.12-2) ...
Setting up libexpat1-dev (1.95.8-4) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-11) ...
Setting up libfreetype6-dev (2.3.5-1+b1) ...
Setting up libpcre3 (7.6-1) ...
Setting up libglib2.0-0 (2.14.6-1) ...
Setting up pkg-config (0.22-1) ...
Setting up libfontconfig1-dev (2.5.0-2) ...
Setting up libxi6 (2:1.1.3-1) ...
Setting up libxinerama1 (1:1.0.2-1) ...
Setting up x11proto-xinerama-dev (1.1.2-4) ...
Setting up libxrandr2 (2:1.2.2-1) ...
Setting up x11proto-randr-dev (1.2.1-2) ...
Setting up libxt6 (1:1.0.5-3) ...
Setting up bsdmainutils (6.1.10) ...
Setting up groff-base (1.18.1.1-16) ...
Setting up libdb4.4 (4.4.20-11) ...
Setting up libssl0.9.8 (0.9.8g-4) ...
Setting up man-db (2.5.1-2) ...
Building database of manual pages ...
Setting up gettext-base (0.17-2) ...
Setting up libidn11 (1.4-1) ...
Setting up libkeyutils1 (1.2-6) ...
Setting up libkrb53 (1.6.dfsg.3~beta1-2) ...
Setting up liblockfile1 (1.06.2) ...
Setting up autotools-dev (20070725.1) ...
Setting up bison (1:2.3.dfsg-5) ...
Setting up html2text (1.3.2a-3) ...
Setting up libgomp1 (4.3-20080202-1) ...
Setting up gettext (0.17-2) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.11) ...
Setting up debhelper (6.0.5) ...
Setting up diffstat (1.45-2) ...
Setting up sgml-base (1.26) ...
Setting up xml-core (0.11) ...
Setting up sgml-data (2.0.3) ...
Setting up docbook (4.5-4) ...
Setting up libsp1c2 (1.3.4-1.2.1-47) ...
Setting up sp (1.3.4-1.2.1-47) ...
Setting up docbook-to-man (1:2.0.0-26) ...
Setting up fontconfig (2.5.0-2) ...
Updating font configuration of fontconfig...
Cleaning up category cid..
Cleaning up category truetype..
Cleaning up category type1..
Updating category type1..
Updating category truetype..
Updating category cid..
Updating fontconfig cache for /usr/share/fonts/truetype/ttf-dejavu
Cleaning up old fontconfig caches... done.
Regenerating fonts cache... done.
Setting up gsfonts (1:8.11+urwcyr1.0.7~pre43-2) ...
(Re-)registering PostScript fonts...
Updating fontconfig cache for /usr/share/fonts/type1/gsfonts
done.
Setting up libcupsys2 (1.3.5-1+b1) ...
Setting up libjpeg62 (6b-14) ...
Setting up libpng12-0 (1.2.15~beta5-3) ...
Setting up libtiff4 (3.8.2-7) ...
Setting up libcupsimage2 (1.3.5-1+b1) ...
Setting up libpaper1 (1.1.23) ...
Creating config file /etc/papersize with new version
Setting up libgs8 (8.61.dfsg.1-1) ...
Setting up ghostscript (8.61.dfsg.1-1) ...
Updating font configuration of gs...
Cleaning up category psprint..
Cleaning up category cmap..
Cleaning up category cid..
Cleaning up category truetype..
Cleaning up category gsfontderivative..
Cleaning up category type3..
Cleaning up category type1..
Updating category type1..
Updating category type3..
Updating category gsfontderivative..
Updating category truetype..
Updating category cid..
Updating category cmap..
Updating category psprint..
Setting up ghostscript-x (8.61.dfsg.1-1) ...
Setting up libatk1.0-0 (1.20.0-1) ...
Setting up libglib2.0-dev (2.14.6-1) ...
Setting up libatk1.0-dev (1.20.0-1) ...
Setting up libcairo2 (1.4.14-1) ...
Setting up libpng12-dev (1.2.15~beta5-3) ...
Setting up libssl-dev (0.9.8g-4) ...
Setting up libclaws-mail-dev (3.3.0-1) ...
Setting up libcurl3-gnutls (7.18.0-1) ...
Setting up libgpg-error-dev (1.4-2) ...
Setting up libgcrypt11-dev (1.4.0-3) ...
Setting up libopencdk10-dev (0.6.6-1) ...
Setting up libtasn1-3-dev (1.3-1) ...
Setting up libgnutls-dev (2.2.1-3) ...
Setting up libidn11-dev (1.4-1) ...
Setting up libkadm55 (1.6.dfsg.3~beta1-2) ...
Setting up comerr-dev (2.1-1.40.6-1) ...
Setting up libkrb5-dev (1.6.dfsg.3~beta1-2) ...
Setting up libldap2-dev (2.4.7-5) ...
Setting up libcurl4-gnutls-dev (7.18.0-1) ...
Setting up libdatrie0 (0.1.3-1) ...
Setting up libdbus-1-3 (1.1.2-1) ...
Setting up libdbus-1-dev (1.1.2-1) ...
Setting up libdbus-glib-1-2 (0.74-1) ...
Setting up libdbus-glib-1-dev (0.74-1) ...
Setting up libetpan11 (0.52-1) ...
Setting up libgtk2.0-common (2.12.7-1) ...
Setting up libpango1.0-common (1.18.4-1) ...
I: Purging /etc/pango/pango.modules
Cleaning up font configuration of pango...
Updating font configuration of pango...
Cleaning up category xfont..
Updating category xfont..
*** You don't have any defomized font packages.
*** So we are trying to force to generate pangox.aliases...
Setting up libthai-data (0.1.9-3) ...
Setting up libthai0 (0.1.9-3) ...
Setting up libpango1.0-0 (1.18.4-1) ...
Setting up libgtk2.0-0 (2.12.7-1) ...
Removing generated module files coming from the previous Gtk binary version...
Setting up libgail18 (1.20.2-1) ...
Setting up libgail-common (1.20.2-1) ...
Setting up libpth20 (2.0.7-9) ...
Setting up libgpgme11 (1.1.6-1) ...
Setting up libpth-dev (2.0.7-9) ...
Setting up libgpgme11-dev (1.1.6-1) ...
Setting up libxml2 (2.6.31.dfsg-1) ...
Setting up libgtkhtml2-0 (2.11.1-1) ...
Setting up libxml2-dev (2.6.31.dfsg-1) ...
Setting up libjpeg62-dev (6b-14) ...
Setting up liblockfile-dev (1.06.2) ...
Setting up libnotify1 (0.4.4-3) ...
Setting up libperl5.8 (5.8.8-12) ...
Setting up libperl-dev (5.8.8-12) ...
Setting up libpoppler2 (0.6.2-1) ...
Setting up libpoppler-dev (0.6.2-1) ...
Setting up libpoppler-glib2 (0.6.2-1) ...
Setting up libsynce0 (0.11-1) ...
Setting up librapi2 (0.11-1) ...
Setting up librapi2-dev (0.11-1) ...
Setting up libsasl2-modules (2.1.22.dfsg1-17+b1) ...
Setting up libsasl2-dev (2.1.22.dfsg1-17+b1) ...
Setting up libsynce0-dev (0.11-1) ...
Setting up quilt (0.46-4) ...
Setting up gs-esp (8.61.dfsg.1-1) ...
Setting up libdb4.4-dev (4.4.20-11) ...
Setting up libetpan-dev (0.52-1) ...
Setting up libytnef0 (1.5-1) ...
Setting up libytnef0-dev (1.5-1) ...
Setting up libxext-dev (1:1.0.3-2) ...
Setting up libx11-dev (2:1.0.3-7) ...
Setting up libxfixes-dev (1:4.0.3-2) ...
Setting up libxcomposite-dev (1:0.4.0-1) ...
Setting up libxrender-dev (1:0.9.4-1) ...
Setting up libxcursor-dev (1:1.1.9-1) ...
Setting up libxdamage-dev (1:1.1.1-3) ...
Setting up libxft-dev (2.1.12-2) ...
Setting up libxi-dev (2:1.1.3-1) ...
Setting up libxinerama-dev (1:1.0.2-1) ...
Setting up libxrandr-dev (2:1.2.2-1) ...
Setting up libcairo2-dev (1.4.14-1) ...
Setting up libpango1.0-dev (1.18.4-1) ...
Setting up libgtk2.0-dev (2.12.7-1) ...
Setting up libgail-dev (1.20.2-1) ...
Setting up libgtkhtml2-dev (2.11.1-1) ...
Setting up libnotify-dev (0.4.4-3) ...
Setting up libpoppler-glib-dev (0.6.2-1) ...
Checking correctness of source dependencies...
Kernel: Linux 2.6.18-3-amd64 i386 (x86_64)
Toolchain package versions: libc6-dev_2.7-6 linux-libc-dev_2.6.24-4 gcc-4.2_4.2.3-1 g++-4.2_4.2.3-1 binutils_2.18.1~cvs20080103-1 libstdc++6-4.2-dev_4.2.3-1 libstdc++6_4.3-20080202-1
------------------------------------------------------------------------------
gpg: Signature made Sat Jan 5 19:27:09 2008 CET using DSA key ID C9B55DAC
gpg: Can't check signature: public key not found
dpkg-source: extracting claws-mail-extra-plugins in claws-mail-extra-plugins-3.2.0
dpkg-source: unpacking claws-mail-extra-plugins_3.2.0.orig.tar.gz
dpkg-source: applying ./claws-mail-extra-plugins_3.2.0-2.diff.gz
dpkg-buildpackage: source package claws-mail-extra-plugins
dpkg-buildpackage: source version 3.2.0-2
dpkg-buildpackage: source changed by Ricardo Mones <mones@debian.org>
dpkg-buildpackage: host architecture i386
/usr/bin/fakeroot debian/rules clean
QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null pop -a -R || test $? = 2
No patch removed
rm -rf .pc debian/stamp-patched
chmod +x /build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-vcalendar-plugin --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-perl-filter --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-feeds-reader --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-mailmbox-plugin --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-smime-plugin --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-html2-viewer --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-acpi-notifier --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-attach-remover --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-cache-saver --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-fetchinfo-plugin --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-newmail-plugin --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-multi-notifier --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-synce-plugin --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-attach-warner --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-pdf-viewer --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-spam-report --clean
/build/user/claws-mail-extra-plugins-3.2.0/debian/gendocs claws-mail-tnef-parser --clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
[ ! -f Makefile ] || /usr/bin/make clean
/build/user/claws-mail-extra-plugins-3.2.0/configure --unconfigure
make: /build/user/claws-mail-extra-plugins-3.2.0/configure: Command not found
make: [clean] Error 127 (ignored)
rm -f /build/user/claws-mail-extra-plugins-3.2.0/configure /build/user/claws-mail-extra-plugins-3.2.0/Makefile
# clean installdirs
rm -rf /build/user/claws-mail-extra-plugins-3.2.0/debian/vcalendar-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/perl_plugin-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/rssyl-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/mailmbox-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/smime-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/gtkhtml2_viewer-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/acpi_notifier-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/att_remover-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/cachesaver-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/fetchinfo-plugin-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/newmail-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/notification_plugin-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/synce_plugin-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/attachwarner-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/pdf_viewer-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/spam_report-* \
/build/user/claws-mail-extra-plugins-3.2.0/debian/tnef_parse-*
# clean generated manpages
rm -f /build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-extra-plugins.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-vcalendar-plugin.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-perl-filter.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/matcherrc2perlfilter.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-feeds-reader.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-mailmbox-plugin.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-acpi-notifier.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-attach-remover.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-cache-saver.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-fetchinfo-plugin.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-html2-viewer.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-smime-plugin.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-newmail-plugin.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-multi-notifier.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-synce-plugin.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-attach-warner.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-pdf-viewer.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-spam-report.1 \
/build/user/claws-mail-extra-plugins-3.2.0/debian/manpages/claws-mail-tnef-parser.1
dh_clean
dpkg-source -b claws-mail-extra-plugins-3.2.0
dpkg-source: building claws-mail-extra-plugins using existing claws-mail-extra-plugins_3.2.0.orig.tar.gz
dpkg-source: building claws-mail-extra-plugins in claws-mail-extra-plugins_3.2.0-2.diff.gz
dpkg-source: warning: executable mode 0755 of 'debian/gendocs' will not be represented in diff
dpkg-source: building claws-mail-extra-plugins in claws-mail-extra-plugins_3.2.0-2.dsc
debian/rules build
# quilt exits with 2 as return when there was nothing to do.
# That's not an error here (but it's usefull to break loops in crude scripts)
QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null push -a || test $? = 2
No patches in series
touch debian/stamp-patched
dh_testdir
cp /build/user/claws-mail-extra-plugins-3.2.0/debian/configure /build/user/claws-mail-extra-plugins-3.2.0/debian/Makefile /build/user/claws-mail-extra-plugins-3.2.0
chmod +x /build/user/claws-mail-extra-plugins-3.2.0/configure
/build/user/claws-mail-extra-plugins-3.2.0/configure --host=i486-linux-gnu \
--build=i486-linux-gnu \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info
*** Configuring vcalendar-1.100
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking for bison... bison -y
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for perl5... no
checking for perl... perl
checking for GLIB... yes
checking for GTK... yes
checking for curl >= 7.9.7... 7.18.0
checking whether to use pthread... yes
checking for pthread_create in -lpthread... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for sys/types.h... (cached) yes
checking assert.h usability... yes
checking assert.h presence... yes
checking for assert.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for an ANSI C-conforming const... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for strdup... yes
configure: creating ./config.status
config.status: creating m4/Makefile
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating libical/Makefile
config.status: creating libical/libical/icalversion.h
config.status: creating libical/libical/Makefile
config.status: creating libical/design-data/Makefile
config.status: creating libical/scripts/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
*** Configuring perl_plugin-0.9.12
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
checking for sed... /bin/sed
checking for perl... /usr/bin/perl
checking for perl >= 5.8.0... yes
checking for Perl compile flags... ok
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating tools/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
*** Configuring rssyl-0.17
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking for unistd.h... (cached) yes
checking paths.h usability... yes
checking paths.h presence... yes
checking for paths.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking for an ANSI C-conforming const... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for pkg-config... /usr/bin/pkg-config
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
checking for curl-config... /usr/bin/curl-config
checking whether to use pthread... yes
checking for pthread_create in -lpthread... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking curl/curl.h usability... yes
checking curl/curl.h presence... yes
checking for curl/curl.h... yes
checking for curl_global_init in -lcurl... yes
checking for libxml... yes
checking whether to enable debugging code... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
*** Configuring mailmbox-1.14
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
*** Configuring smime-0.7.4
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
checking for gpgme-config... /usr/bin/gpgme-config
checking for GPGME - version >= 1.1.1... yes
checking for GPGME - version >= 1.0.0... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
*** Configuring gtkhtml2_viewer-0.17
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking for unistd.h... (cached) yes
checking paths.h usability... yes
checking paths.h presence... yes
checking for paths.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking for an ANSI C-conforming const... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTKPRINTUNIX... yes
checking for GTK... yes
checking for GTKHTML2... yes
checking for curl-config... /usr/bin/curl-config
checking curl/curl.h usability... yes
checking curl/curl.h presence... yes
checking for curl/curl.h... yes
checking for curl_global_init in -lcurl... yes
checking whether to use pthread... yes
checking for pthread_create in -lpthread... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
*** Configuring acpi_notifier-1.0.14
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
configure: creating ./config.status
config.status: creating m4/Makefile
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
*** Configuring att_remover-1.0.7
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
*** Configuring cachesaver-0.10.6
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating src/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
*** Configuring fetchinfo-plugin-0.4.22
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
*** Configuring newmail-0.0.11
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
checking for sed... /bin/sed
ok
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
*** Configuring notification_plugin-0.14
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for GLIB... yes
checking for GTK... yes
checking for libnotify... yes
checking whether to include notification popup support... yes
checking whether to include notification banner support... yes
checking whether to include notification shell command support... yes
checking for GTK_2_10... yes
checking whether to include trayicon support... yes
checking whether to include lcdproc support... yes
configure: creating ./config.status
config.status: creating po/Makefile.in
config.status: creating m4/Makefile
config.status: creating config/Makefile
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
-----------------------------------------------------------
Configuration Summary:
Popup : yes
Banner : yes
Command : yes
LCD : yes
Trayicon : yes
External libraries usage:
libnotify : yes
*** Configuring synce_plugin-0.7.3
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
checking for LIBSYNCE... yes
checking for LIBRAPI2... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating m4/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
*** Configuring attachwarner-0.2.10
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking for unistd.h... (cached) yes
checking paths.h usability... yes
checking paths.h presence... yes
checking for paths.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking for pkg-config... /usr/bin/pkg-config
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating pluginconfig.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
*** Configuring pdf_viewer-0.8
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for dlfcn.h... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking for unistd.h... (cached) yes
checking paths.h usability... yes
checking paths.h presence... yes
checking for paths.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for memset... yes
checking for strchr... yes
checking for strrchr... yes
checking for strstr... yes
checking for an ANSI C-conforming const... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
checking for POPPLER... yes
checking whether POPPLER_DEST_NAMED is declared... yes
checking whether POPPLER_DEST_XYZ is declared... yes
checking for gs... /usr/bin/gs
checking whether to use pthread... yes
checking for pthread_create in -lpthread... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
*** Configuring spam_report-0.3.1
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking for unistd.h... (cached) yes
checking paths.h usability... yes
checking paths.h presence... yes
checking for paths.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking for an ANSI C-conforming const... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for GLIB... yes
checking for GTK... yes
checking for curl-config... /usr/bin/curl-config
checking curl/curl.h usability... yes
checking curl/curl.h presence... yes
checking for curl/curl.h... yes
checking for curl_global_init in -lcurl... yes
checking whether to use pthread... yes
checking for pthread_create in -lpthread... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
*** Configuring tnef_parse-0.2.1
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for i486-linux-gnu-gcc... i486-linux-gnu-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i486-linux-gnu-gcc accepts -g... yes
checking for i486-linux-gnu-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i486-linux-gnu-gcc... gcc3
checking for library containing strerror... none required
checking for i486-linux-gnu-gcc... (cached) i486-linux-gnu-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether i486-linux-gnu-gcc accepts -g... (cached) yes
checking for i486-linux-gnu-gcc option to accept ISO C89... (cached) none needed
checking dependency style of i486-linux-gnu-gcc... (cached) gcc3
checking for a BSD-compatible install... /usr/bin/install -c
checking how to run the C preprocessor... i486-linux-gnu-gcc -E
checking build system type... i486-pc-linux-gnu
checking host system type... i486-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by i486-linux-gnu-gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for i486-linux-gnu-g++... i486-linux-gnu-g++
checking whether we are using the GNU C++ compiler... yes
checking whether i486-linux-gnu-g++ accepts -g... yes
checking dependency style of i486-linux-gnu-g++... gcc3
checking how to run the C++ preprocessor... i486-linux-gnu-g++ -E
checking for i486-linux-gnu-g77... no
checking for i486-linux-gnu-xlf... no
checking for i486-linux-gnu-f77... no
checking for i486-linux-gnu-frt... no
checking for i486-linux-gnu-pgf77... no
checking for i486-linux-gnu-cf77... no
checking for i486-linux-gnu-fort77... no
checking for i486-linux-gnu-fl32... no
checking for i486-linux-gnu-af77... no
checking for i486-linux-gnu-xlf90... no
checking for i486-linux-gnu-f90... no
checking for i486-linux-gnu-pgf90... no
checking for i486-linux-gnu-pghpf... no
checking for i486-linux-gnu-epcf90... no
checking for i486-linux-gnu-gfortran... no
checking for i486-linux-gnu-g95... no
checking for i486-linux-gnu-xlf95... no
checking for i486-linux-gnu-f95... no
checking for i486-linux-gnu-fort... no
checking for i486-linux-gnu-ifort... no
checking for i486-linux-gnu-ifc... no
checking for i486-linux-gnu-efc... no
checking for i486-linux-gnu-pgf95... no
checking for i486-linux-gnu-lf95... no
checking for i486-linux-gnu-ftn... no
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether accepts -g... no
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from i486-linux-gnu-gcc object... ok
checking for objdir... .libs
checking for i486-linux-gnu-ar... no
checking for ar... ar
checking for i486-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i486-linux-gnu-strip... no
checking for strip... strip
checking if i486-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for i486-linux-gnu-gcc option to produce PIC... -fPIC
checking if i486-linux-gnu-gcc PIC flag -fPIC works... yes
checking if i486-linux-gnu-gcc static flag -static works... yes
checking if i486-linux-gnu-gcc supports -c -o file.o... yes
checking whether the i486-linux-gnu-gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by i486-linux-gnu-g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for i486-linux-gnu-g++ option to produce PIC... -fPIC
checking if i486-linux-gnu-g++ PIC flag -fPIC works... yes
checking if i486-linux-gnu-g++ static flag -static works... yes
checking if i486-linux-gnu-g++ supports -c -o file.o... yes
checking whether the i486-linux-gnu-g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking for unistd.h... (cached) yes
checking paths.h usability... yes
checking paths.h presence... yes
checking for paths.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for pkg-config... /usr/bin/pkg-config
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for CLAWS_MAIL... yes
checking for i486-linux-gnu-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.16... yes
checking for GLIB - version >= 2.6.0... yes (version 2.14.6)
checking for pkg-config... (cached) /usr/bin/pkg-config
checking for GTK+ - version >= 2.6.0... yes (version 2.12.7)
checking ytnef.h usability... yes
checking ytnef.h presence... yes
checking for ytnef.h... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
touch configure-stamp
dh_testdir
/usr/bin/make
make[1]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0'
touch all-mark;
for plugin in vcalendar-1.100 perl_plugin-0.9.12 rssyl-0.17 mailmbox-1.14 smime-0.7.4 gtkhtml2_viewer-0.17 acpi_notifier-1.0.14 att_remover-1.0.7 cachesaver-0.10.6 fetchinfo-plugin-0.4.22 newmail-0.0.11 notification_plugin-0.14 synce_plugin-0.7.3 attachwarner-0.2.10 pdf_viewer-0.8 spam_report-0.3.1 tnef_parse-0.2.1; \
do cd $plugin && \
echo "*** Building $plugin " && \
/usr/bin/make && \
cd .. || break; \
done && test -f all-mark && rm -f all-mark;
*** Building vcalendar-1.100
make[2]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100'
/usr/bin/make all-recursive
make[3]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100'
Making all in m4
make[4]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/m4'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/m4'
Making all in config
make[4]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/config'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/config'
Making all in libical
make[4]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical'
Making all in libical
make[5]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical/libical'
cat ../../libical/libical/icalversion.h ../../libical/libical/icaltime.h ../../libical/libical/icalduration.h ../../libical/libical/icalperiod.h ../../libical/libical/icalenums.h ../../libical/libical/icaltypes.h ../../libical/libical/icalrecur.h icalderivedvalue.h icalderivedparameter.h icalvalue.h icalparameter.h icalderivedproperty.h icalproperty.h ../../libical/libical/icalattendee.h ../../libical/libical/pvl.h ../../libical/libical/icalcomponent.h ../../libical/libical/icalparser.h ../../libical/libical/icalmemory.h ../../libical/libical/icalerror.h ../../libical/libical/icalrestriction.h ../../libical/libical/sspm.h ../../libical/libical/icalmime.h ../../libical/libical/icallangbind.h \
| egrep -v "#include.*\"ical" \
| egrep -v "#include.*\"pvl\.h\"" > ical.h
/usr/bin/make all-am
make[6]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical/libical'
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalattendee.lo -MD -MP -MF .deps/icalattendee.Tpo -c -o icalattendee.lo icalattendee.c
mkdir .libs
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalattendee.lo -MD -MP -MF .deps/icalattendee.Tpo -c icalattendee.c -fPIC -DPIC -o .libs/icalattendee.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalattendee.lo -MD -MP -MF .deps/icalattendee.Tpo -c icalattendee.c -o icalattendee.o >/dev/null 2>&1
mv -f .deps/icalattendee.Tpo .deps/icalattendee.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalcomponent.lo -MD -MP -MF .deps/icalcomponent.Tpo -c -o icalcomponent.lo icalcomponent.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalcomponent.lo -MD -MP -MF .deps/icalcomponent.Tpo -c icalcomponent.c -fPIC -DPIC -o .libs/icalcomponent.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalcomponent.lo -MD -MP -MF .deps/icalcomponent.Tpo -c icalcomponent.c -o icalcomponent.o >/dev/null 2>&1
mv -f .deps/icalcomponent.Tpo .deps/icalcomponent.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalenums.lo -MD -MP -MF .deps/icalenums.Tpo -c -o icalenums.lo icalenums.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalenums.lo -MD -MP -MF .deps/icalenums.Tpo -c icalenums.c -fPIC -DPIC -o .libs/icalenums.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalenums.lo -MD -MP -MF .deps/icalenums.Tpo -c icalenums.c -o icalenums.o >/dev/null 2>&1
mv -f .deps/icalenums.Tpo .deps/icalenums.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalerror.lo -MD -MP -MF .deps/icalerror.Tpo -c -o icalerror.lo icalerror.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalerror.lo -MD -MP -MF .deps/icalerror.Tpo -c icalerror.c -fPIC -DPIC -o .libs/icalerror.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalerror.lo -MD -MP -MF .deps/icalerror.Tpo -c icalerror.c -o icalerror.o >/dev/null 2>&1
mv -f .deps/icalerror.Tpo .deps/icalerror.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icallexer.lo -MD -MP -MF .deps/icallexer.Tpo -c -o icallexer.lo icallexer.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icallexer.lo -MD -MP -MF .deps/icallexer.Tpo -c icallexer.c -fPIC -DPIC -o .libs/icallexer.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icallexer.lo -MD -MP -MF .deps/icallexer.Tpo -c icallexer.c -o icallexer.o >/dev/null 2>&1
mv -f .deps/icallexer.Tpo .deps/icallexer.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalmemory.lo -MD -MP -MF .deps/icalmemory.Tpo -c -o icalmemory.lo icalmemory.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalmemory.lo -MD -MP -MF .deps/icalmemory.Tpo -c icalmemory.c -fPIC -DPIC -o .libs/icalmemory.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalmemory.lo -MD -MP -MF .deps/icalmemory.Tpo -c icalmemory.c -o icalmemory.o >/dev/null 2>&1
mv -f .deps/icalmemory.Tpo .deps/icalmemory.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalmime.lo -MD -MP -MF .deps/icalmime.Tpo -c -o icalmime.lo icalmime.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalmime.lo -MD -MP -MF .deps/icalmime.Tpo -c icalmime.c -fPIC -DPIC -o .libs/icalmime.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalmime.lo -MD -MP -MF .deps/icalmime.Tpo -c icalmime.c -o icalmime.o >/dev/null 2>&1
mv -f .deps/icalmime.Tpo .deps/icalmime.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalparameter.lo -MD -MP -MF .deps/icalparameter.Tpo -c -o icalparameter.lo icalparameter.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalparameter.lo -MD -MP -MF .deps/icalparameter.Tpo -c icalparameter.c -fPIC -DPIC -o .libs/icalparameter.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalparameter.lo -MD -MP -MF .deps/icalparameter.Tpo -c icalparameter.c -o icalparameter.o >/dev/null 2>&1
mv -f .deps/icalparameter.Tpo .deps/icalparameter.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalderivedparameter.lo -MD -MP -MF .deps/icalderivedparameter.Tpo -c -o icalderivedparameter.lo icalderivedparameter.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalderivedparameter.lo -MD -MP -MF .deps/icalderivedparameter.Tpo -c icalderivedparameter.c -fPIC -DPIC -o .libs/icalderivedparameter.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalderivedparameter.lo -MD -MP -MF .deps/icalderivedparameter.Tpo -c icalderivedparameter.c -o icalderivedparameter.o >/dev/null 2>&1
mv -f .deps/icalderivedparameter.Tpo .deps/icalderivedparameter.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalparser.lo -MD -MP -MF .deps/icalparser.Tpo -c -o icalparser.lo icalparser.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalparser.lo -MD -MP -MF .deps/icalparser.Tpo -c icalparser.c -fPIC -DPIC -o .libs/icalparser.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalparser.lo -MD -MP -MF .deps/icalparser.Tpo -c icalparser.c -o icalparser.o >/dev/null 2>&1
mv -f .deps/icalparser.Tpo .deps/icalparser.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalderivedproperty.lo -MD -MP -MF .deps/icalderivedproperty.Tpo -c -o icalderivedproperty.lo icalderivedproperty.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalderivedproperty.lo -MD -MP -MF .deps/icalderivedproperty.Tpo -c icalderivedproperty.c -fPIC -DPIC -o .libs/icalderivedproperty.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalderivedproperty.lo -MD -MP -MF .deps/icalderivedproperty.Tpo -c icalderivedproperty.c -o icalderivedproperty.o >/dev/null 2>&1
mv -f .deps/icalderivedproperty.Tpo .deps/icalderivedproperty.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalproperty.lo -MD -MP -MF .deps/icalproperty.Tpo -c -o icalproperty.lo icalproperty.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalproperty.lo -MD -MP -MF .deps/icalproperty.Tpo -c icalproperty.c -fPIC -DPIC -o .libs/icalproperty.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalproperty.lo -MD -MP -MF .deps/icalproperty.Tpo -c icalproperty.c -o icalproperty.o >/dev/null 2>&1
mv -f .deps/icalproperty.Tpo .deps/icalproperty.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalrecur.lo -MD -MP -MF .deps/icalrecur.Tpo -c -o icalrecur.lo icalrecur.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalrecur.lo -MD -MP -MF .deps/icalrecur.Tpo -c icalrecur.c -fPIC -DPIC -o .libs/icalrecur.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalrecur.lo -MD -MP -MF .deps/icalrecur.Tpo -c icalrecur.c -o icalrecur.o >/dev/null 2>&1
mv -f .deps/icalrecur.Tpo .deps/icalrecur.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalrestriction.lo -MD -MP -MF .deps/icalrestriction.Tpo -c -o icalrestriction.lo icalrestriction.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalrestriction.lo -MD -MP -MF .deps/icalrestriction.Tpo -c icalrestriction.c -fPIC -DPIC -o .libs/icalrestriction.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalrestriction.lo -MD -MP -MF .deps/icalrestriction.Tpo -c icalrestriction.c -o icalrestriction.o >/dev/null 2>&1
mv -f .deps/icalrestriction.Tpo .deps/icalrestriction.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icaltime.lo -MD -MP -MF .deps/icaltime.Tpo -c -o icaltime.lo icaltime.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icaltime.lo -MD -MP -MF .deps/icaltime.Tpo -c icaltime.c -fPIC -DPIC -o .libs/icaltime.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icaltime.lo -MD -MP -MF .deps/icaltime.Tpo -c icaltime.c -o icaltime.o >/dev/null 2>&1
mv -f .deps/icaltime.Tpo .deps/icaltime.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalduration.lo -MD -MP -MF .deps/icalduration.Tpo -c -o icalduration.lo icalduration.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalduration.lo -MD -MP -MF .deps/icalduration.Tpo -c icalduration.c -fPIC -DPIC -o .libs/icalduration.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalduration.lo -MD -MP -MF .deps/icalduration.Tpo -c icalduration.c -o icalduration.o >/dev/null 2>&1
mv -f .deps/icalduration.Tpo .deps/icalduration.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalperiod.lo -MD -MP -MF .deps/icalperiod.Tpo -c -o icalperiod.lo icalperiod.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalperiod.lo -MD -MP -MF .deps/icalperiod.Tpo -c icalperiod.c -fPIC -DPIC -o .libs/icalperiod.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalperiod.lo -MD -MP -MF .deps/icalperiod.Tpo -c icalperiod.c -o icalperiod.o >/dev/null 2>&1
mv -f .deps/icalperiod.Tpo .deps/icalperiod.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icaltypes.lo -MD -MP -MF .deps/icaltypes.Tpo -c -o icaltypes.lo icaltypes.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icaltypes.lo -MD -MP -MF .deps/icaltypes.Tpo -c icaltypes.c -fPIC -DPIC -o .libs/icaltypes.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icaltypes.lo -MD -MP -MF .deps/icaltypes.Tpo -c icaltypes.c -o icaltypes.o >/dev/null 2>&1
mv -f .deps/icaltypes.Tpo .deps/icaltypes.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalvalue.lo -MD -MP -MF .deps/icalvalue.Tpo -c -o icalvalue.lo icalvalue.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalvalue.lo -MD -MP -MF .deps/icalvalue.Tpo -c icalvalue.c -fPIC -DPIC -o .libs/icalvalue.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalvalue.lo -MD -MP -MF .deps/icalvalue.Tpo -c icalvalue.c -o icalvalue.o >/dev/null 2>&1
mv -f .deps/icalvalue.Tpo .deps/icalvalue.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalderivedvalue.lo -MD -MP -MF .deps/icalderivedvalue.Tpo -c -o icalderivedvalue.lo icalderivedvalue.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalderivedvalue.lo -MD -MP -MF .deps/icalderivedvalue.Tpo -c icalderivedvalue.c -fPIC -DPIC -o .libs/icalderivedvalue.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalderivedvalue.lo -MD -MP -MF .deps/icalderivedvalue.Tpo -c icalderivedvalue.c -o icalderivedvalue.o >/dev/null 2>&1
mv -f .deps/icalderivedvalue.Tpo .deps/icalderivedvalue.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalyacc.lo -MD -MP -MF .deps/icalyacc.Tpo -c -o icalyacc.lo icalyacc.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalyacc.lo -MD -MP -MF .deps/icalyacc.Tpo -c icalyacc.c -fPIC -DPIC -o .libs/icalyacc.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT icalyacc.lo -MD -MP -MF .deps/icalyacc.Tpo -c icalyacc.c -o icalyacc.o >/dev/null 2>&1
mv -f .deps/icalyacc.Tpo .deps/icalyacc.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT pvl.lo -MD -MP -MF .deps/pvl.Tpo -c -o pvl.lo pvl.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT pvl.lo -MD -MP -MF .deps/pvl.Tpo -c pvl.c -fPIC -DPIC -o .libs/pvl.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT pvl.lo -MD -MP -MF .deps/pvl.Tpo -c pvl.c -o pvl.o >/dev/null 2>&1
mv -f .deps/pvl.Tpo .deps/pvl.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT sspm.lo -MD -MP -MF .deps/sspm.Tpo -c -o sspm.lo sspm.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT sspm.lo -MD -MP -MF .deps/sspm.Tpo -c sspm.c -fPIC -DPIC -o .libs/sspm.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT sspm.lo -MD -MP -MF .deps/sspm.Tpo -c sspm.c -o sspm.o >/dev/null 2>&1
mv -f .deps/sspm.Tpo .deps/sspm.Plo
/bin/sh ../../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT vsnprintf.lo -MD -MP -MF .deps/vsnprintf.Tpo -c -o vsnprintf.lo vsnprintf.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT vsnprintf.lo -MD -MP -MF .deps/vsnprintf.Tpo -c vsnprintf.c -fPIC -DPIC -o .libs/vsnprintf.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../.. -I. -I../../libical -I../../libical/libical -DNDEBUG -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -O2 -MT vsnprintf.lo -MD -MP -MF .deps/vsnprintf.Tpo -c vsnprintf.c -o vsnprintf.o >/dev/null 2>&1
mv -f .deps/vsnprintf.Tpo .deps/vsnprintf.Plo
/bin/sh ../../libtool --tag=CC --mode=link i486-linux-gnu-gcc -g -O2 -version-info 0:0:0 -o libical.la icalattendee.lo icalcomponent.lo icalenums.lo icalerror.lo icallexer.lo icalmemory.lo icalmime.lo icalparameter.lo icalderivedparameter.lo icalparser.lo icalderivedproperty.lo icalproperty.lo icalrecur.lo icalrestriction.lo icaltime.lo icalduration.lo icalperiod.lo icaltypes.lo icalvalue.lo icalderivedvalue.lo icalyacc.lo pvl.lo sspm.lo vsnprintf.lo -lcurl -lgssapi_krb5
libtool: link: warning: `-version-info/-version-number' is ignored for convenience libraries
ar cru .libs/libical.a .libs/icalattendee.o .libs/icalcomponent.o .libs/icalenums.o .libs/icalerror.o .libs/icallexer.o .libs/icalmemory.o .libs/icalmime.o .libs/icalparameter.o .libs/icalderivedparameter.o .libs/icalparser.o .libs/icalderivedproperty.o .libs/icalproperty.o .libs/icalrecur.o .libs/icalrestriction.o .libs/icaltime.o .libs/icalduration.o .libs/icalperiod.o .libs/icaltypes.o .libs/icalvalue.o .libs/icalderivedvalue.o .libs/icalyacc.o .libs/pvl.o .libs/sspm.o .libs/vsnprintf.o
ranlib .libs/libical.a
creating libical.la
(cd .libs && rm -f libical.la && ln -s ../libical.la libical.la)
make[6]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical/libical'
make[5]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical/libical'
Making all in design-data
make[5]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical/design-data'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical/design-data'
Making all in scripts
make[5]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical/scripts'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical/scripts'
make[5]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical'
make[4]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/libical'
Making all in src
make[4]: Entering directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/src'
/bin/sh ../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -I../libical/libical -I/usr/local/include -I/usr/include/claws-mail -I/usr/include/claws-mail/common -I/usr/include/claws-mail/gtk -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -DLOCALEDIR=\""/usr/share/locale"\" -g -O2 -MT plugin.lo -MD -MP -MF .deps/plugin.Tpo -c -o plugin.lo plugin.c
mkdir .libs
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -I../libical/libical -I/usr/local/include -I/usr/include/claws-mail -I/usr/include/claws-mail/common -I/usr/include/claws-mail/gtk -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -DLOCALEDIR=\"/usr/share/locale\" -g -O2 -MT plugin.lo -MD -MP -MF .deps/plugin.Tpo -c plugin.c -fPIC -DPIC -o .libs/plugin.o
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -I../libical/libical -I/usr/local/include -I/usr/include/claws-mail -I/usr/include/claws-mail/common -I/usr/include/claws-mail/gtk -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -DLOCALEDIR=\"/usr/share/locale\" -g -O2 -MT plugin.lo -MD -MP -MF .deps/plugin.Tpo -c plugin.c -o plugin.o >/dev/null 2>&1
mv -f .deps/plugin.Tpo .deps/plugin.Plo
/bin/sh ../libtool --tag=CC --mode=compile i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -I../libical/libical -I/usr/local/include -I/usr/include/claws-mail -I/usr/include/claws-mail/common -I/usr/include/claws-mail/gtk -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -DLOCALEDIR=\""/usr/share/locale"\" -g -O2 -MT vcalendar.lo -MD -MP -MF .deps/vcalendar.Tpo -c -o vcalendar.lo vcalendar.c
i486-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -I../libical/libical -I/usr/local/include -I/usr/include/claws-mail -I/usr/include/claws-mail/common -I/usr/include/claws-mail/gtk -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -DLOCALEDIR=\"/usr/share/locale\" -g -O2 -MT vcalendar.lo -MD -MP -MF .deps/vcalendar.Tpo -c vcalendar.c -fPIC -DPIC -o .libs/vcalendar.o
vcalendar.c: In function 'get_account_from_attendee':
vcalendar.c:547: error: too few arguments to function 'account_find_from_address'
vcalendar.c:548: error: too few arguments to function 'account_find_from_address'
vcalendar.c: In function 'vcalviewer_display_event':
vcalendar.c:728: error: too few arguments to function 'account_find_from_address'
make[4]: *** [vcalendar.lo] Error 1
make[4]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0/vcalendar-1.100'
make[1]: *** [all] Error 1
make[1]: Leaving directory `/build/user/claws-mail-extra-plugins-3.2.0'
make: *** [build-stamp] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
******************************************************************************
Build finished at 20080213-0144
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/sid32-1ccbd450-eab5-45ad-9070-46973b809280/build/user/claws-mail-extra-plugins-3.2.0
------------------------------------------------------------------------------
Not removing build depends: session managed chroot in use
******************************************************************************
Finished at 20080213-0144
Build needed 00:01:53, 42916k disk space
DC-Build-Status: Failed 184.540621s
DC-Time-Estimation: 184.540621 versus expected 376 (r/m: 1.03749178886745 ; m: 184.540621)
|