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
|
DC-Build-Header: aghermann 0.9.0.4-1 / 2013-06-21 06:01:48 +0000
DC-Task: source:aghermann version:0.9.0.4-1 architecture:any chroot:unstable esttime:287 logfile:/tmp/aghermann_0.9.0.4-1_unstable.log modes:
DC-Sbuild-call: su user -c 'sbuild -n -A -s --force-orig-source --apt-update -d unstable -v aghermann_0.9.0.4-1'
sbuild (Debian sbuild) 0.63.2 (18 Aug 2012) on ip-10-158-73-227.ec2.internal
╔══════════════════════════════════════════════════════════════════════════════╗
║ aghermann 0.9.0.4-1 (amd64) 21 Jun 2013 06:01 ║
╚══════════════════════════════════════════════════════════════════════════════╝
Package: aghermann
Version: 0.9.0.4-1
Source Version: 0.9.0.4-1
Distribution: unstable
Machine Architecture: amd64
Host Architecture: amd64
Build Architecture: amd64
I: NOTICE: Log filtering will replace 'build/aghermann-kUXhi3/aghermann-0.9.0.4' with '«PKGBUILDDIR»'
I: NOTICE: Log filtering will replace 'build/aghermann-kUXhi3' with '«BUILDDIR»'
I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/unstable-amd64-sbuild-aeae9be6-1777-4eeb-87f0-55b177119af0' with '«CHROOT»'
┌──────────────────────────────────────────────────────────────────────────────┐
│ Update chroot │
└──────────────────────────────────────────────────────────────────────────────┘
Get:1 http://localhost:9999 unstable InRelease [205 kB]
Get:2 http://localhost:9999 unstable/main Sources/DiffIndex [7876 B]
Get:3 http://localhost:9999 unstable/main amd64 Packages/DiffIndex [7876 B]
Get:4 http://localhost:9999 unstable/main Translation-en/DiffIndex [7876 B]
Get:5 http://localhost:9999 unstable/main 2013-06-20-1431.18.pdiff [12.2 kB]
Get:6 http://localhost:9999 unstable/main amd64 2013-06-20-1431.18.pdiff [28.7 kB]
Get:7 http://localhost:9999 unstable/main 2013-06-20-1431.18.pdiff [12.2 kB]
Get:8 http://localhost:9999 unstable/main 2013-06-20-1431.18.pdiff [46 B]
Get:9 http://localhost:9999 unstable/main amd64 2013-06-20-1431.18.pdiff [28.7 kB]
Get:10 http://localhost:9999 unstable/main 2013-06-20-2028.23.pdiff [9458 B]
Get:11 http://localhost:9999 unstable/main 2013-06-20-1431.18.pdiff [46 B]
Get:12 http://localhost:9999 unstable/main amd64 2013-06-20-2028.23.pdiff [8724 B]
Get:13 http://localhost:9999 unstable/main 2013-06-20-2028.23.pdiff [9458 B]
Get:14 http://localhost:9999 unstable/main 2013-06-20-2028.23.pdiff [463 B]
Get:15 http://localhost:9999 unstable/main amd64 2013-06-20-2028.23.pdiff [8724 B]
Get:16 http://localhost:9999 unstable/main 2013-06-20-2028.23.pdiff [463 B]
Fetched 288 kB in 8s (32.1 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be upgraded:
binutils cpp-4.6 g++-4.6 gcc-4.6 gcc-4.6-base libstdc++6-4.6-dev
6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 26.0 MB of archives.
After this operation, 896 kB disk space will be freed.
Get:1 http://localhost:9999/debian/ unstable/main binutils amd64 2.23.52.20130620-1 [6102 kB]
Get:2 http://localhost:9999/debian/ unstable/main libstdc++6-4.6-dev amd64 4.6.4-4 [1619 kB]
Get:3 http://localhost:9999/debian/ unstable/main g++-4.6 amd64 4.6.4-4 [6260 kB]
Get:4 http://localhost:9999/debian/ unstable/main gcc-4.6 amd64 4.6.4-4 [7213 kB]
Get:5 http://localhost:9999/debian/ unstable/main cpp-4.6 amd64 4.6.4-4 [4709 kB]
Get:6 http://localhost:9999/debian/ unstable/main gcc-4.6-base amd64 4.6.4-4 [142 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 26.0 MB in 0s (26.8 MB/s)
(Reading database ... 13841 files and directories currently installed.)
Preparing to replace binutils 2.23.52.20130612-1 (using .../binutils_2.23.52.20130620-1_amd64.deb) ...
Unpacking replacement binutils ...
Preparing to replace libstdc++6-4.6-dev 4.6.4-3 (using .../libstdc++6-4.6-dev_4.6.4-4_amd64.deb) ...
Unpacking replacement libstdc++6-4.6-dev ...
Preparing to replace g++-4.6 4.6.4-3 (using .../g++-4.6_4.6.4-4_amd64.deb) ...
Unpacking replacement g++-4.6 ...
Preparing to replace gcc-4.6 4.6.4-3 (using .../gcc-4.6_4.6.4-4_amd64.deb) ...
Unpacking replacement gcc-4.6 ...
Preparing to replace cpp-4.6 4.6.4-3 (using .../cpp-4.6_4.6.4-4_amd64.deb) ...
Unpacking replacement cpp-4.6 ...
Preparing to replace gcc-4.6-base:amd64 4.6.4-3 (using .../gcc-4.6-base_4.6.4-4_amd64.deb) ...
Unpacking replacement gcc-4.6-base:amd64 ...
Setting up binutils (2.23.52.20130620-1) ...
Setting up gcc-4.6-base:amd64 (4.6.4-4) ...
Setting up cpp-4.6 (4.6.4-4) ...
Setting up gcc-4.6 (4.6.4-4) ...
Setting up g++-4.6 (4.6.4-4) ...
Setting up libstdc++6-4.6-dev (4.6.4-4) ...
Processing triggers for libc-bin ...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files │
└──────────────────────────────────────────────────────────────────────────────┘
Check APT
─────────
Checking available source versions...
Download source files with APT
──────────────────────────────
Reading package lists...
Building dependency tree...
Reading state information...
NOTICE: 'aghermann' packaging is maintained in the 'Git' version control system at:
git://git.debian.org/git/debian-med/aghermann.git
Need to get 277 kB of source archives.
Get:1 http://localhost:9999/debian/ unstable/main aghermann 0.9.0.4-1 (dsc) [1497 B]
Get:2 http://localhost:9999/debian/ unstable/main aghermann 0.9.0.4-1 (tar) [272 kB]
Get:3 http://localhost:9999/debian/ unstable/main aghermann 0.9.0.4-1 (diff) [3880 B]
Fetched 277 kB in 0s (1162 kB/s)
Download complete and in download only mode
Check arch
──────────
Merged Build-Depends: build-essential, fakeroot
Filtered Build-Depends: build-essential, fakeroot
dpkg-deb: building package `sbuild-build-depends-core-dummy' in `/«BUILDDIR»/resolver-s9rfEE/apt_archive/sbuild-build-depends-core-dummy.deb'.
OK
Reading package lists...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install core build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following NEW packages will be installed:
sbuild-build-depends-core-dummy
debconf: delaying package configuration, since apt-utils is not installed
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/708 B of archives.
After this operation, 0 B of additional disk space will be used.
Selecting previously unselected package sbuild-build-depends-core-dummy.
(Reading database ... 13841 files and directories currently installed.)
Unpacking sbuild-build-depends-core-dummy (from .../sbuild-build-depends-core-dummy.deb) ...
Setting up sbuild-build-depends-core-dummy (0.invalid.0) ...
Merged Build-Depends: base-files, base-passwd, bash, bsdutils, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, libc-bin, login, mount, ncurses-base, ncurses-bin, perl-base, sed, sysvinit, sysvinit-utils, tar, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 9), dh-autoreconf, hardening-wrapper, hardening-includes, autoconf-archive, libgomp1, libconfig++-dev, pkg-config, libgsl0-dev, libfftw3-dev, libsamplerate0-dev (>= 0.1.7), libgtk-3-dev, libitpp-dev, libunique-3.0-dev, libxml2-utils, libvte-2.90-dev
Filtered Build-Depends: base-files, base-passwd, bash, bsdutils, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, libc-bin, login, mount, ncurses-base, ncurses-bin, perl-base, sed, sysvinit, sysvinit-utils, tar, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 9), dh-autoreconf, hardening-wrapper, hardening-includes, autoconf-archive, libgomp1, libconfig++-dev, pkg-config, libgsl0-dev, libfftw3-dev, libsamplerate0-dev (>= 0.1.7), libgtk-3-dev, libitpp-dev, libunique-3.0-dev, libxml2-utils, libvte-2.90-dev
dpkg-deb: building package `sbuild-build-depends-aghermann-dummy' in `/«BUILDDIR»/resolver-6ALWZW/apt_archive/sbuild-build-depends-aghermann-dummy.deb'.
OK
Reading package lists...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Install aghermann build dependencies (apt-based resolver) │
└──────────────────────────────────────────────────────────────────────────────┘
Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
adduser autoconf autoconf-archive automake autotools-dev bsdmainutils dbus
dbus-x11 dconf-gsettings-backend dconf-service debhelper dh-autoreconf file
fontconfig fontconfig-config fonts-dejavu-core gettext gettext-base
gir1.2-atk-1.0 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0
gir1.2-gtk-3.0 gir1.2-pango-1.0 gir1.2-vte-2.90 groff-base
hardening-includes hardening-wrapper intltool-debian libasprintf0c2
libatk-bridge2.0-0 libatk-bridge2.0-dev libatk1.0-0 libatk1.0-data
libatk1.0-dev libatspi2.0-0 libavahi-client3 libavahi-common-data
libavahi-common3 libblas3 libcairo-gobject2 libcairo-script-interpreter2
libcairo2 libcairo2-dev libcolord1 libconfig++-dev libconfig++9
libconfig-dev libconfig9 libcroco3 libcups2 libdatrie1 libdbus-1-3 libdconf1
libdrm-dev libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libegl1-mesa
libegl1-mesa-dev libegl1-mesa-drivers libelfg0 libexpat1 libexpat1-dev
libffi6 libfftw3-bin libfftw3-dev libfftw3-double3 libfftw3-long3
libfftw3-quad3 libfftw3-single3 libfontconfig1 libfontconfig1-dev
libfreetype6 libfreetype6-dev libgbm1 libgcrypt11 libgdk-pixbuf2.0-0
libgdk-pixbuf2.0-common libgdk-pixbuf2.0-dev libgfortran3
libgirepository-1.0-1 libgl1-mesa-dev libgl1-mesa-glx libglapi-mesa
libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev libgnutls26
libgpg-error0 libgraphite2-3 libgsl0-dev libgsl0ldbl libgssapi-krb5-2
libgtk-3-0 libgtk-3-common libgtk-3-dev libharfbuzz-dev libharfbuzz-icu0
libharfbuzz0a libice-dev libice6 libicu48 libitpp-dev libitpp8 libjasper1
libjbig0 libjpeg8 libk5crypto3 libkeyutils1 libkms1 libkrb5-3
libkrb5support0 liblapack3 liblcms2-2 libllvm3.2 liblzo2-2 libmagic1
libopenvg1-mesa libp11-kit0 libpango-1.0-0 libpango1.0-0 libpango1.0-dev
libpangocairo-1.0-0 libpangoft2-1.0-0 libpangox-1.0-0 libpangoxft-1.0-0
libpciaccess0 libpcre3-dev libpcrecpp0 libpipeline1 libpixman-1-0
libpixman-1-dev libpng12-0 libpng12-dev libpopt0 libpthread-stubs0
libpthread-stubs0-dev libsamplerate0 libsamplerate0-dev libsigsegv2
libsm-dev libsm6 libsystemd-login0 libtasn1-3 libthai-data libthai0 libtiff4
libtool libudev0 libunique-3.0-0 libunique-3.0-dev libunistring0
libvte-2.90-9 libvte-2.90-common libvte-2.90-dev libwayland-client0
libwayland-server0 libx11-6 libx11-data libx11-dev libx11-xcb-dev
libx11-xcb1 libxau-dev libxau6 libxcb-dri2-0 libxcb-dri2-0-dev libxcb-glx0
libxcb-glx0-dev libxcb-render0 libxcb-render0-dev libxcb-shape0 libxcb-shm0
libxcb-shm0-dev libxcb-xfixes0 libxcb1 libxcb1-dev 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-utils libxrandr-dev libxrandr2 libxrender-dev libxrender1
libxxf86vm-dev libxxf86vm1 m4 man-db mesa-common-dev pkg-config po-debconf
shared-mime-info ttf-dejavu-core x11-common x11proto-composite-dev
x11proto-core-dev x11proto-damage-dev x11proto-dri2-dev x11proto-fixes-dev
x11proto-gl-dev x11proto-input-dev x11proto-kb-dev x11proto-randr-dev
x11proto-render-dev x11proto-xext-dev x11proto-xf86vidmode-dev
x11proto-xinerama-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
autoconf2.13 gnu-standards autoconf-doc wamerican wordlist whois vacation
dh-make gettext-doc groff libcairo2-doc cups-common rng-tools libglib2.0-doc
gsl-ref-psdoc gsl-doc-pdf gsl-doc-info gsl-ref-html krb5-doc krb5-user
librsvg2-common gvfs libgtk-3-doc libice-doc libjasper-runtime
liblcms2-utils ttf-baekmuk ttf-arphic-gbsn00lp ttf-arphic-bsmi00lp
ttf-arphic-gkai00mp ttf-arphic-bkai00mp libpango1.0-doc imagemagick pciutils
libsm-doc libtool-doc automaken gfortran fortran95-compiler gcj libxcb-doc
libxext-doc less www-browser libmail-box-perl
Recommended packages:
autopoint curl wget lynx-cur libasprintf-dev libgettextpo-dev at-spi2-core
colord libconfig-doc libgl1-mesa-dri python hicolor-icon-theme libgtk-3-bin
krb5-locales libltdl-dev libunique-3.0-doc libvte-2.90-doc libx11-doc
xml-core libmail-sendmail-perl
The following NEW packages will be installed:
adduser autoconf autoconf-archive automake autotools-dev bsdmainutils dbus
dbus-x11 dconf-gsettings-backend dconf-service debhelper dh-autoreconf file
fontconfig fontconfig-config fonts-dejavu-core gettext gettext-base
gir1.2-atk-1.0 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0
gir1.2-gtk-3.0 gir1.2-pango-1.0 gir1.2-vte-2.90 groff-base
hardening-includes hardening-wrapper intltool-debian libasprintf0c2
libatk-bridge2.0-0 libatk-bridge2.0-dev libatk1.0-0 libatk1.0-data
libatk1.0-dev libatspi2.0-0 libavahi-client3 libavahi-common-data
libavahi-common3 libblas3 libcairo-gobject2 libcairo-script-interpreter2
libcairo2 libcairo2-dev libcolord1 libconfig++-dev libconfig++9
libconfig-dev libconfig9 libcroco3 libcups2 libdatrie1 libdbus-1-3 libdconf1
libdrm-dev libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libegl1-mesa
libegl1-mesa-dev libegl1-mesa-drivers libelfg0 libexpat1 libexpat1-dev
libffi6 libfftw3-bin libfftw3-dev libfftw3-double3 libfftw3-long3
libfftw3-quad3 libfftw3-single3 libfontconfig1 libfontconfig1-dev
libfreetype6 libfreetype6-dev libgbm1 libgcrypt11 libgdk-pixbuf2.0-0
libgdk-pixbuf2.0-common libgdk-pixbuf2.0-dev libgfortran3
libgirepository-1.0-1 libgl1-mesa-dev libgl1-mesa-glx libglapi-mesa
libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev libgnutls26
libgpg-error0 libgraphite2-3 libgsl0-dev libgsl0ldbl libgssapi-krb5-2
libgtk-3-0 libgtk-3-common libgtk-3-dev libharfbuzz-dev libharfbuzz-icu0
libharfbuzz0a libice-dev libice6 libicu48 libitpp-dev libitpp8 libjasper1
libjbig0 libjpeg8 libk5crypto3 libkeyutils1 libkms1 libkrb5-3
libkrb5support0 liblapack3 liblcms2-2 libllvm3.2 liblzo2-2 libmagic1
libopenvg1-mesa libp11-kit0 libpango-1.0-0 libpango1.0-0 libpango1.0-dev
libpangocairo-1.0-0 libpangoft2-1.0-0 libpangox-1.0-0 libpangoxft-1.0-0
libpciaccess0 libpcre3-dev libpcrecpp0 libpipeline1 libpixman-1-0
libpixman-1-dev libpng12-0 libpng12-dev libpopt0 libpthread-stubs0
libpthread-stubs0-dev libsamplerate0 libsamplerate0-dev libsigsegv2
libsm-dev libsm6 libsystemd-login0 libtasn1-3 libthai-data libthai0 libtiff4
libtool libudev0 libunique-3.0-0 libunique-3.0-dev libunistring0
libvte-2.90-9 libvte-2.90-common libvte-2.90-dev libwayland-client0
libwayland-server0 libx11-6 libx11-data libx11-dev libx11-xcb-dev
libx11-xcb1 libxau-dev libxau6 libxcb-dri2-0 libxcb-dri2-0-dev libxcb-glx0
libxcb-glx0-dev libxcb-render0 libxcb-render0-dev libxcb-shape0 libxcb-shm0
libxcb-shm0-dev libxcb-xfixes0 libxcb1 libxcb1-dev 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-utils libxrandr-dev libxrandr2 libxrender-dev libxrender1
libxxf86vm-dev libxxf86vm1 m4 man-db mesa-common-dev pkg-config po-debconf
sbuild-build-depends-aghermann-dummy shared-mime-info ttf-dejavu-core
x11-common x11proto-composite-dev x11proto-core-dev x11proto-damage-dev
x11proto-dri2-dev x11proto-fixes-dev x11proto-gl-dev x11proto-input-dev
x11proto-kb-dev x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
x11proto-xf86vidmode-dev x11proto-xinerama-dev xorg-sgml-doctools xtrans-dev
zlib1g-dev
0 upgraded, 230 newly installed, 0 to remove and 0 not upgraded.
Need to get 87.2 MB/87.2 MB of archives.
After this operation, 286 MB of additional disk space will be used.
Get:1 http://localhost:9999/debian/ unstable/main libpipeline1 amd64 1.2.4-1 [41.0 kB]
Get:2 http://localhost:9999/debian/ unstable/main libpopt0 amd64 1.16-7 [56.4 kB]
Get:3 http://localhost:9999/debian/ unstable/main libudev0 amd64 175-7.2 [126 kB]
Get:4 http://localhost:9999/debian/ unstable/main groff-base amd64 1.22.2-3 [747 kB]
Get:5 http://localhost:9999/debian/ unstable/main bsdmainutils amd64 9.0.5 [211 kB]
Get:6 http://localhost:9999/debian/ unstable/main man-db amd64 2.6.3-7 [893 kB]
Get:7 http://localhost:9999/debian/ unstable/main libasprintf0c2 amd64 0.18.2.1-1 [28.9 kB]
Get:8 http://localhost:9999/debian/ unstable/main libgpg-error0 amd64 1.10-3.1 [77.9 kB]
Get:9 http://localhost:9999/debian/ unstable/main libgcrypt11 amd64 1.5.2-2 [295 kB]
Get:10 http://localhost:9999/debian/ unstable/main libp11-kit0 amd64 0.18.3-2 [115 kB]
Get:11 http://localhost:9999/debian/ unstable/main libtasn1-3 amd64 2.14-3 [68.5 kB]
Get:12 http://localhost:9999/debian/ unstable/main libgnutls26 amd64 2.12.23-5 [617 kB]
Get:13 http://localhost:9999/debian/ unstable/main libkeyutils1 amd64 1.5.5-7 [8808 B]
Get:14 http://localhost:9999/debian/ unstable/main libkrb5support0 amd64 1.10.1+dfsg-6 [49.5 kB]
Get:15 http://localhost:9999/debian/ unstable/main libk5crypto3 amd64 1.10.1+dfsg-6 [112 kB]
Get:16 http://localhost:9999/debian/ unstable/main libkrb5-3 amd64 1.10.1+dfsg-6 [394 kB]
Get:17 http://localhost:9999/debian/ unstable/main libgssapi-krb5-2 amd64 1.10.1+dfsg-6 [148 kB]
Get:18 http://localhost:9999/debian/ unstable/main libmagic1 amd64 1:5.14-2 [216 kB]
Get:19 http://localhost:9999/debian/ unstable/main libxml2 amd64 2.9.1+dfsg1-2 [911 kB]
Get:20 http://localhost:9999/debian/ unstable/main libffi6 amd64 3.0.13-4 [21.6 kB]
Get:21 http://localhost:9999/debian/ unstable/main libglib2.0-0 amd64 2.36.3-1 [2045 kB]
Get:22 http://localhost:9999/debian/ unstable/main libatk1.0-data all 2.8.0-2 [169 kB]
Get:23 http://localhost:9999/debian/ unstable/main libatk1.0-0 amd64 2.8.0-2 [85.1 kB]
Get:24 http://localhost:9999/debian/ unstable/main libdbus-1-3 amd64 1.6.12-1 [172 kB]
Get:25 http://localhost:9999/debian/ unstable/main libxau6 amd64 1:1.0.8-1 [20.7 kB]
Get:26 http://localhost:9999/debian/ unstable/main libxdmcp6 amd64 1:1.1.1-1 [26.3 kB]
Get:27 http://localhost:9999/debian/ unstable/main libxcb1 amd64 1.9.1-3 [50.3 kB]
Get:28 http://localhost:9999/debian/ unstable/main libx11-data all 2:1.6.0-1 [191 kB]
Get:29 http://localhost:9999/debian/ unstable/main libx11-6 amd64 2:1.6.0-1 [919 kB]
Get:30 http://localhost:9999/debian/ unstable/main libatspi2.0-0 amd64 2.9.3-1 [68.7 kB]
Get:31 http://localhost:9999/debian/ unstable/main libatk-bridge2.0-0 amd64 2.9.3-1 [62.2 kB]
Get:32 http://localhost:9999/debian/ unstable/main libavahi-common-data amd64 0.6.31-2 [135 kB]
Get:33 http://localhost:9999/debian/ unstable/main libavahi-common3 amd64 0.6.31-2 [54.6 kB]
Get:34 http://localhost:9999/debian/ unstable/main libavahi-client3 amd64 0.6.31-2 [59.5 kB]
Get:35 http://localhost:9999/debian/ unstable/main libdrm2 amd64 2.4.45-3 [468 kB]
Get:36 http://localhost:9999/debian/ unstable/main libglapi-mesa amd64 9.1.3-6 [48.1 kB]
Get:37 http://localhost:9999/debian/ unstable/main libllvm3.2 amd64 1:3.2repack-8 [8039 kB]
Get:38 http://localhost:9999/debian/ unstable/main libxcb-dri2-0 amd64 1.9.1-3 [12.9 kB]
Get:39 http://localhost:9999/debian/ unstable/main libgbm1 amd64 9.1.3-6 [463 kB]
Get:40 http://localhost:9999/debian/ unstable/main libwayland-client0 amd64 1.1.0-2 [23.0 kB]
Get:41 http://localhost:9999/debian/ unstable/main libwayland-server0 amd64 1.1.0-2 [33.0 kB]
Get:42 http://localhost:9999/debian/ unstable/main libx11-xcb1 amd64 2:1.6.0-1 [153 kB]
Get:43 http://localhost:9999/debian/ unstable/main libxcb-render0 amd64 1.9.1-3 [19.0 kB]
Get:44 http://localhost:9999/debian/ unstable/main libxcb-shape0 amd64 1.9.1-3 [11.5 kB]
Get:45 http://localhost:9999/debian/ unstable/main libxcb-xfixes0 amd64 1.9.1-3 [14.9 kB]
Get:46 http://localhost:9999/debian/ unstable/main libegl1-mesa amd64 9.1.3-6 [83.9 kB]
Get:47 http://localhost:9999/debian/ unstable/main libexpat1 amd64 2.1.0-3 [139 kB]
Get:48 http://localhost:9999/debian/ unstable/main libfreetype6 amd64 2.4.9-1.1 [451 kB]
Get:49 http://localhost:9999/debian/ unstable/main fonts-dejavu-core all 2.33+svn2514-3 [1042 kB]
Get:50 http://localhost:9999/debian/ unstable/main ttf-dejavu-core all 2.33+svn2514-3 [29.8 kB]
Get:51 http://localhost:9999/debian/ unstable/main fontconfig-config all 2.9.0-7.1 [233 kB]
Get:52 http://localhost:9999/debian/ unstable/main libfontconfig1 amd64 2.9.0-7.1 [300 kB]
Get:53 http://localhost:9999/debian/ unstable/main libxcb-glx0 amd64 1.9.1-3 [32.5 kB]
Get:54 http://localhost:9999/debian/ unstable/main libxfixes3 amd64 1:5.0-4+deb7u1 [21.3 kB]
Get:55 http://localhost:9999/debian/ unstable/main libxdamage1 amd64 1:1.1.3-2 [14.3 kB]
Get:56 http://localhost:9999/debian/ unstable/main libxext6 amd64 2:1.3.1-2+deb7u1 [54.8 kB]
Get:57 http://localhost:9999/debian/ unstable/main libxxf86vm1 amd64 1:1.1.2-1+deb7u1 [19.5 kB]
Get:58 http://localhost:9999/debian/ unstable/main libgl1-mesa-glx amd64 9.1.3-6 [133 kB]
Get:59 http://localhost:9999/debian/ unstable/main libpixman-1-0 amd64 0.26.0-4 [427 kB]
Get:60 http://localhost:9999/debian/ unstable/main libpng12-0 amd64 1.2.49-4 [190 kB]
Get:61 http://localhost:9999/debian/ unstable/main libxcb-shm0 amd64 1.9.1-3 [10.8 kB]
Get:62 http://localhost:9999/debian/ unstable/main libxrender1 amd64 1:0.9.7-1+deb7u1 [32.7 kB]
Get:63 http://localhost:9999/debian/ unstable/main libcairo2 amd64 1.12.14-5 [1044 kB]
Get:64 http://localhost:9999/debian/ unstable/main libcairo-gobject2 amd64 1.12.14-5 [508 kB]
Get:65 http://localhost:9999/debian/ unstable/main liblzo2-2 amd64 2.06-1 [57.7 kB]
Get:66 http://localhost:9999/debian/ unstable/main libcairo-script-interpreter2 amd64 1.12.14-5 [552 kB]
Get:67 http://localhost:9999/debian/ unstable/main liblcms2-2 amd64 2.2+git20110628-2.2 [143 kB]
Get:68 http://localhost:9999/debian/ unstable/main libcolord1 amd64 0.1.21-4 [117 kB]
Get:69 http://localhost:9999/debian/ unstable/main libconfig++9 amd64 1.4.8-5 [46.1 kB]
Get:70 http://localhost:9999/debian/ unstable/main libconfig9 amd64 1.4.8-5 [32.6 kB]
Get:71 http://localhost:9999/debian/ unstable/main libcroco3 amd64 0.6.8-2 [133 kB]
Get:72 http://localhost:9999/debian/ unstable/main libcups2 amd64 1.6.2-9 [282 kB]
Get:73 http://localhost:9999/debian/ unstable/main libdatrie1 amd64 0.2.6-2 [30.2 kB]
Get:74 http://localhost:9999/debian/ unstable/main libdconf1 amd64 0.16.0-4 [32.3 kB]
Get:75 http://localhost:9999/debian/ unstable/main libpciaccess0 amd64 0.13.1-2 [46.7 kB]
Get:76 http://localhost:9999/debian/ unstable/main libdrm-intel1 amd64 2.4.45-3 [506 kB]
Get:77 http://localhost:9999/debian/ unstable/main libdrm-nouveau2 amd64 2.4.45-3 [458 kB]
Get:78 http://localhost:9999/debian/ unstable/main libdrm-radeon1 amd64 2.4.45-3 [468 kB]
Get:79 http://localhost:9999/debian/ unstable/main libopenvg1-mesa amd64 9.1.3-6 [40.9 kB]
Get:80 http://localhost:9999/debian/ unstable/main libegl1-mesa-drivers amd64 9.1.3-6 [2217 kB]
Get:81 http://localhost:9999/debian/ unstable/main libfftw3-double3 amd64 3.3.3-5 [666 kB]
Get:82 http://localhost:9999/debian/ unstable/main libfftw3-long3 amd64 3.3.3-5 [304 kB]
Get:83 http://localhost:9999/debian/ unstable/main libfftw3-quad3 amd64 3.3.3-5 [541 kB]
Get:84 http://localhost:9999/debian/ unstable/main libfftw3-single3 amd64 3.3.3-5 [699 kB]
Get:85 http://localhost:9999/debian/ unstable/main libjpeg8 amd64 8d-1 [134 kB]
Get:86 http://localhost:9999/debian/ unstable/main libjasper1 amd64 1.900.1-14 [160 kB]
Get:87 http://localhost:9999/debian/ unstable/main libjbig0 amd64 2.0-2 [32.2 kB]
Get:88 http://localhost:9999/debian/ unstable/main libtiff4 amd64 3.9.6-11 [202 kB]
Get:89 http://localhost:9999/debian/ unstable/main libgdk-pixbuf2.0-common all 2.28.2-1 [291 kB]
Get:90 http://localhost:9999/debian/ unstable/main libgdk-pixbuf2.0-0 amd64 2.28.2-1 [160 kB]
Get:91 http://localhost:9999/debian/ unstable/main libgfortran3 amd64 4.8.1-3 [349 kB]
Get:92 http://localhost:9999/debian/ unstable/main libgraphite2-3 amd64 1.2.3-1 [61.3 kB]
Get:93 http://localhost:9999/debian/ unstable/main dconf-service amd64 0.16.0-4 [39.5 kB]
Get:94 http://localhost:9999/debian/ unstable/main dconf-gsettings-backend amd64 0.16.0-4 [31.0 kB]
Get:95 http://localhost:9999/debian/ unstable/main libgtk-3-common all 3.8.2-2 [2801 kB]
Get:96 http://localhost:9999/debian/ unstable/main libthai-data all 0.1.19-2 [156 kB]
Get:97 http://localhost:9999/debian/ unstable/main libthai0 amd64 0.1.19-2 [43.1 kB]
Get:98 http://localhost:9999/debian/ unstable/main fontconfig amd64 2.9.0-7.1 [348 kB]
Get:99 http://localhost:9999/debian/ unstable/main libpango-1.0-0 amd64 1.32.5-5+b1 [263 kB]
Get:100 http://localhost:9999/debian/ unstable/main libharfbuzz0a amd64 0.9.18-3 [412 kB]
Get:101 http://localhost:9999/debian/ unstable/main libpangoft2-1.0-0 amd64 1.32.5-5+b1 [187 kB]
Get:102 http://localhost:9999/debian/ unstable/main libpangocairo-1.0-0 amd64 1.32.5-5+b1 [174 kB]
Get:103 http://localhost:9999/debian/ unstable/main libxcomposite1 amd64 1:0.4.4-1 [17.4 kB]
Get:104 http://localhost:9999/debian/ unstable/main libxcursor1 amd64 1:1.1.13-1+deb7u1 [27.1 kB]
Get:105 http://localhost:9999/debian/ unstable/main libxi6 amd64 2:1.6.1-1+deb7u1 [75.7 kB]
Get:106 http://localhost:9999/debian/ unstable/main libxinerama1 amd64 2:1.1.2-1+deb7u1 [16.9 kB]
Get:107 http://localhost:9999/debian/ unstable/main libxrandr2 amd64 2:1.3.2-2+deb7u1 [33.0 kB]
Get:108 http://localhost:9999/debian/ unstable/main shared-mime-info amd64 1.0-1+b1 [595 kB]
Get:109 http://localhost:9999/debian/ unstable/main libgtk-3-0 amd64 3.8.2-2 [1863 kB]
Get:110 http://localhost:9999/debian/ unstable/main libicu48 amd64 4.8.1.1-12 [4734 kB]
Get:111 http://localhost:9999/debian/ unstable/main libharfbuzz-icu0 amd64 0.9.18-3 [262 kB]
Get:112 http://localhost:9999/debian/ unstable/main x11-common all 1:7.7+3 [284 kB]
Get:113 http://localhost:9999/debian/ unstable/main libice6 amd64 2:1.0.8-2 [63.1 kB]
Get:114 http://localhost:9999/debian/ unstable/main libkms1 amd64 2.4.45-3 [451 kB]
Get:115 http://localhost:9999/debian/ unstable/main libxft2 amd64 2.3.1-1 [61.0 kB]
Get:116 http://localhost:9999/debian/ unstable/main libpangoxft-1.0-0 amd64 1.32.5-5+b1 [169 kB]
Get:117 http://localhost:9999/debian/ unstable/main libpcrecpp0 amd64 1:8.31-2 [128 kB]
Get:118 http://localhost:9999/debian/ unstable/main libsamplerate0 amd64 0.1.8-5 [1352 kB]
Get:119 http://localhost:9999/debian/ unstable/main libsm6 amd64 2:1.2.1-2 [34.2 kB]
Get:120 http://localhost:9999/debian/ unstable/main libunistring0 amd64 0.9.3-5 [434 kB]
Get:121 http://localhost:9999/debian/ unstable/main libpangox-1.0-0 amd64 0.0.2-4 [41.4 kB]
Get:122 http://localhost:9999/debian/ unstable/main libsystemd-login0 amd64 44-12 [28.1 kB]
Get:123 http://localhost:9999/debian/ unstable/main adduser all 3.113+nmu3 [264 kB]
Get:124 http://localhost:9999/debian/ unstable/main file amd64 1:5.14-2 [54.0 kB]
Get:125 http://localhost:9999/debian/ unstable/main gettext-base amd64 0.18.2.1-1 [156 kB]
Get:126 http://localhost:9999/debian/ unstable/main libsigsegv2 amd64 2.9-4 [28.9 kB]
Get:127 http://localhost:9999/debian/ unstable/main m4 amd64 1.4.16-5 [260 kB]
Get:128 http://localhost:9999/debian/ unstable/main autoconf all 2.69-1 [589 kB]
Get:129 http://localhost:9999/debian/ unstable/main autoconf-archive all 20111221-2 [734 kB]
Get:130 http://localhost:9999/debian/ unstable/main autotools-dev all 20130515.1 [73.0 kB]
Get:131 http://localhost:9999/debian/ unstable/main automake all 1:1.13.3-1 [758 kB]
Get:132 http://localhost:9999/debian/ unstable/main dbus amd64 1.6.12-1 [398 kB]
Get:133 http://localhost:9999/debian/ unstable/main dbus-x11 amd64 1.6.12-1 [60.4 kB]
Get:134 http://localhost:9999/debian/ unstable/main gettext amd64 0.18.2.1-1 [2019 kB]
Get:135 http://localhost:9999/debian/ unstable/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
Get:136 http://localhost:9999/debian/ unstable/main po-debconf all 1.0.16+nmu2 [224 kB]
Get:137 http://localhost:9999/debian/ unstable/main debhelper all 9.20130605 [709 kB]
Get:138 http://localhost:9999/debian/ unstable/main libtool amd64 2.4.2-1.2 [621 kB]
Get:139 http://localhost:9999/debian/ unstable/main dh-autoreconf all 7 [15.3 kB]
Get:140 http://localhost:9999/debian/ unstable/main libgirepository-1.0-1 amd64 1.36.0-2+b1 [108 kB]
Get:141 http://localhost:9999/debian/ unstable/main gir1.2-glib-2.0 amd64 1.36.0-2+b1 [177 kB]
Get:142 http://localhost:9999/debian/ unstable/main gir1.2-atk-1.0 amd64 2.8.0-2 [61.0 kB]
Get:143 http://localhost:9999/debian/ unstable/main gir1.2-freedesktop amd64 1.36.0-2+b1 [20.8 kB]
Get:144 http://localhost:9999/debian/ unstable/main gir1.2-gdkpixbuf-2.0 amd64 2.28.2-1 [14.8 kB]
Get:145 http://localhost:9999/debian/ unstable/main gir1.2-pango-1.0 amd64 1.32.5-5+b1 [173 kB]
Get:146 http://localhost:9999/debian/ unstable/main gir1.2-gtk-3.0 amd64 3.8.2-2 [211 kB]
Get:147 http://localhost:9999/debian/ unstable/main libvte-2.90-common all 1:0.34.6-1 [437 kB]
Get:148 http://localhost:9999/debian/ unstable/main libvte-2.90-9 amd64 1:0.34.6-1 [628 kB]
Get:149 http://localhost:9999/debian/ unstable/main gir1.2-vte-2.90 amd64 1:0.34.6-1 [395 kB]
Get:150 http://localhost:9999/debian/ unstable/main hardening-includes all 2.3 [17.8 kB]
Get:151 http://localhost:9999/debian/ unstable/main hardening-wrapper amd64 2.3 [13.6 kB]
Get:152 http://localhost:9999/debian/ unstable/main libelfg0 amd64 0.8.13-3 [60.2 kB]
Get:153 http://localhost:9999/debian/ unstable/main libglib2.0-data all 2.36.3-1 [1845 kB]
Get:154 http://localhost:9999/debian/ unstable/main libglib2.0-bin amd64 2.36.3-1 [1057 kB]
Get:155 http://localhost:9999/debian/ unstable/main libpcre3-dev amd64 1:8.31-2 [356 kB]
Get:156 http://localhost:9999/debian/ unstable/main pkg-config amd64 0.26-1 [59.5 kB]
Get:157 http://localhost:9999/debian/ unstable/main zlib1g-dev amd64 1:1.2.8.dfsg-1 [217 kB]
Get:158 http://localhost:9999/debian/ unstable/main libglib2.0-dev amd64 2.36.3-1 [2278 kB]
Get:159 http://localhost:9999/debian/ unstable/main libatk-bridge2.0-dev amd64 2.9.3-1 [5890 B]
Get:160 http://localhost:9999/debian/ unstable/main libatk1.0-dev amd64 2.8.0-2 [107 kB]
Get:161 http://localhost:9999/debian/ unstable/main libblas3 amd64 1.2.20110419-5 [293 kB]
Get:162 http://localhost:9999/debian/ unstable/main libexpat1-dev amd64 2.1.0-3 [222 kB]
Get:163 http://localhost:9999/debian/ unstable/main libfreetype6-dev amd64 2.4.9-1.1 [805 kB]
Get:164 http://localhost:9999/debian/ unstable/main libfontconfig1-dev amd64 2.9.0-7.1 [857 kB]
Get:165 http://localhost:9999/debian/ unstable/main xorg-sgml-doctools all 1:1.10-1 [24.1 kB]
Get:166 http://localhost:9999/debian/ unstable/main x11proto-core-dev all 7.0.24-1 [779 kB]
Get:167 http://localhost:9999/debian/ unstable/main libxau-dev amd64 1:1.0.8-1 [23.6 kB]
Get:168 http://localhost:9999/debian/ unstable/main libxdmcp-dev amd64 1:1.1.1-1 [42.3 kB]
Get:169 http://localhost:9999/debian/ unstable/main x11proto-input-dev all 2.3-1 [177 kB]
Get:170 http://localhost:9999/debian/ unstable/main x11proto-kb-dev all 1.0.6-2 [269 kB]
Get:171 http://localhost:9999/debian/ unstable/main xtrans-dev all 1.2.7-1 [112 kB]
Get:172 http://localhost:9999/debian/ unstable/main libpthread-stubs0 amd64 0.3-3 [3228 B]
Get:173 http://localhost:9999/debian/ unstable/main libpthread-stubs0-dev amd64 0.3-3 [3998 B]
Get:174 http://localhost:9999/debian/ unstable/main libxcb1-dev amd64 1.9.1-3 [103 kB]
Get:175 http://localhost:9999/debian/ unstable/main libx11-dev amd64 2:1.6.0-1 [1055 kB]
Get:176 http://localhost:9999/debian/ unstable/main x11proto-render-dev all 2:0.11.1-2 [20.8 kB]
Get:177 http://localhost:9999/debian/ unstable/main libxrender-dev amd64 1:0.9.7-1+deb7u1 [41.1 kB]
Get:178 http://localhost:9999/debian/ unstable/main x11proto-xext-dev all 7.2.1-1 [273 kB]
Get:179 http://localhost:9999/debian/ unstable/main libxext-dev amd64 2:1.3.1-2+deb7u1 [114 kB]
Get:180 http://localhost:9999/debian/ unstable/main libpng12-dev amd64 1.2.49-4 [267 kB]
Get:181 http://localhost:9999/debian/ unstable/main libice-dev amd64 2:1.0.8-2 [74.1 kB]
Get:182 http://localhost:9999/debian/ unstable/main libsm-dev amd64 2:1.2.1-2 [37.0 kB]
Get:183 http://localhost:9999/debian/ unstable/main libpixman-1-dev amd64 0.26.0-4 [457 kB]
Get:184 http://localhost:9999/debian/ unstable/main libxcb-render0-dev amd64 1.9.1-3 [26.5 kB]
Get:185 http://localhost:9999/debian/ unstable/main libxcb-shm0-dev amd64 1.9.1-3 [12.1 kB]
Get:186 http://localhost:9999/debian/ unstable/main libdrm-dev amd64 2.4.45-3 [656 kB]
Get:187 http://localhost:9999/debian/ unstable/main mesa-common-dev amd64 9.1.3-6 [298 kB]
Get:188 http://localhost:9999/debian/ unstable/main libx11-xcb-dev amd64 2:1.6.0-1 [155 kB]
Get:189 http://localhost:9999/debian/ unstable/main libxcb-dri2-0-dev amd64 1.9.1-3 [15.8 kB]
Get:190 http://localhost:9999/debian/ unstable/main libxcb-glx0-dev amd64 1.9.1-3 [49.2 kB]
Get:191 http://localhost:9999/debian/ unstable/main x11proto-fixes-dev all 1:5.0-2 [19.2 kB]
Get:192 http://localhost:9999/debian/ unstable/main libxfixes-dev amd64 1:5.0-4+deb7u1 [23.0 kB]
Get:193 http://localhost:9999/debian/ unstable/main x11proto-damage-dev all 1:1.2.1-2 [11.8 kB]
Get:194 http://localhost:9999/debian/ unstable/main libxdamage-dev amd64 1:1.1.3-2 [14.0 kB]
Get:195 http://localhost:9999/debian/ unstable/main x11proto-xf86vidmode-dev all 2.3.1-2 [6114 B]
Get:196 http://localhost:9999/debian/ unstable/main libxxf86vm-dev amd64 1:1.1.2-1+deb7u1 [23.8 kB]
Get:197 http://localhost:9999/debian/ unstable/main x11proto-dri2-dev all 2.8-2 [18.2 kB]
Get:198 http://localhost:9999/debian/ unstable/main x11proto-gl-dev all 1.4.16-2 [32.1 kB]
Get:199 http://localhost:9999/debian/ unstable/main libgl1-mesa-dev amd64 9.1.3-6 [34.3 kB]
Get:200 http://localhost:9999/debian/ unstable/main libegl1-mesa-dev amd64 9.1.3-6 [45.5 kB]
Get:201 http://localhost:9999/debian/ unstable/main libcairo2-dev amd64 1.12.14-5 [1320 kB]
Get:202 http://localhost:9999/debian/ unstable/main libconfig-dev amd64 1.4.8-5 [113 kB]
Get:203 http://localhost:9999/debian/ unstable/main libconfig++-dev amd64 1.4.8-5 [171 kB]
Get:204 http://localhost:9999/debian/ unstable/main libfftw3-bin amd64 3.3.3-5 [48.8 kB]
Get:205 http://localhost:9999/debian/ unstable/main libfftw3-dev amd64 3.3.3-5 [1987 kB]
Get:206 http://localhost:9999/debian/ unstable/main libgdk-pixbuf2.0-dev amd64 2.28.2-1 [49.6 kB]
Get:207 http://localhost:9999/debian/ unstable/main libgsl0ldbl amd64 1.15+dfsg.2-2 [1132 kB]
Get:208 http://localhost:9999/debian/ unstable/main libgsl0-dev amd64 1.15+dfsg.2-2 [1404 kB]
Get:209 http://localhost:9999/debian/ unstable/main libxft-dev amd64 2.3.1-1 [74.5 kB]
Get:210 http://localhost:9999/debian/ unstable/main libharfbuzz-dev amd64 0.9.18-3 [273 kB]
Get:211 http://localhost:9999/debian/ unstable/main libpango1.0-dev amd64 1.32.5-5+b1 [421 kB]
Get:212 http://localhost:9999/debian/ unstable/main x11proto-xinerama-dev all 1.2.1-2 [4938 B]
Get:213 http://localhost:9999/debian/ unstable/main libxinerama-dev amd64 2:1.1.2-1+deb7u1 [19.0 kB]
Get:214 http://localhost:9999/debian/ unstable/main libxi-dev amd64 2:1.6.1-1+deb7u1 [248 kB]
Get:215 http://localhost:9999/debian/ unstable/main x11proto-randr-dev all 1.4.0-2 [46.8 kB]
Get:216 http://localhost:9999/debian/ unstable/main libxrandr-dev amd64 2:1.3.2-2+deb7u1 [41.1 kB]
Get:217 http://localhost:9999/debian/ unstable/main libxcursor-dev amd64 1:1.1.13-1+deb7u1 [34.6 kB]
Get:218 http://localhost:9999/debian/ unstable/main x11proto-composite-dev all 1:0.4.2-2 [15.3 kB]
Get:219 http://localhost:9999/debian/ unstable/main libxcomposite-dev amd64 1:0.4.4-1 [20.8 kB]
Get:220 http://localhost:9999/debian/ unstable/main libgtk-3-dev amd64 3.8.2-2 [803 kB]
Get:221 http://localhost:9999/debian/ unstable/main liblapack3 amd64 3.4.2+dfsg-1 [5088 kB]
Get:222 http://localhost:9999/debian/ unstable/main libitpp8 amd64 4.3.0-2 [1338 kB]
Get:223 http://localhost:9999/debian/ unstable/main libitpp-dev amd64 4.3.0-2 [289 kB]
Get:224 http://localhost:9999/debian/ unstable/main libsamplerate0-dev amd64 0.1.8-5 [1413 kB]
Get:225 http://localhost:9999/debian/ unstable/main libpango1.0-0 amd64 1.32.5-5+b1 [157 kB]
Get:226 http://localhost:9999/debian/ unstable/main libunique-3.0-0 amd64 3.0.2-2 [47.7 kB]
Get:227 http://localhost:9999/debian/ unstable/main libunique-3.0-dev amd64 3.0.2-2 [34.0 kB]
Get:228 http://localhost:9999/debian/ unstable/main libvte-2.90-dev amd64 1:0.34.6-1 [657 kB]
Get:229 http://localhost:9999/debian/ unstable/main libxml2-utils amd64 2.9.1+dfsg1-2 [96.4 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 87.2 MB in 6s (14.3 MB/s)
Selecting previously unselected package libpipeline1:amd64.
(Reading database ... 13841 files and directories currently installed.)
Unpacking libpipeline1:amd64 (from .../libpipeline1_1.2.4-1_amd64.deb) ...
Selecting previously unselected package libpopt0:amd64.
Unpacking libpopt0:amd64 (from .../libpopt0_1.16-7_amd64.deb) ...
Selecting previously unselected package libudev0:amd64.
Unpacking libudev0:amd64 (from .../libudev0_175-7.2_amd64.deb) ...
Selecting previously unselected package groff-base.
Unpacking groff-base (from .../groff-base_1.22.2-3_amd64.deb) ...
Selecting previously unselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_9.0.5_amd64.deb) ...
Selecting previously unselected package man-db.
Unpacking man-db (from .../man-db_2.6.3-7_amd64.deb) ...
Selecting previously unselected package libasprintf0c2:amd64.
Unpacking libasprintf0c2:amd64 (from .../libasprintf0c2_0.18.2.1-1_amd64.deb) ...
Selecting previously unselected package libgpg-error0:amd64.
Unpacking libgpg-error0:amd64 (from .../libgpg-error0_1.10-3.1_amd64.deb) ...
Selecting previously unselected package libgcrypt11:amd64.
Unpacking libgcrypt11:amd64 (from .../libgcrypt11_1.5.2-2_amd64.deb) ...
Selecting previously unselected package libp11-kit0:amd64.
Unpacking libp11-kit0:amd64 (from .../libp11-kit0_0.18.3-2_amd64.deb) ...
Selecting previously unselected package libtasn1-3:amd64.
Unpacking libtasn1-3:amd64 (from .../libtasn1-3_2.14-3_amd64.deb) ...
Selecting previously unselected package libgnutls26:amd64.
Unpacking libgnutls26:amd64 (from .../libgnutls26_2.12.23-5_amd64.deb) ...
Selecting previously unselected package libkeyutils1:amd64.
Unpacking libkeyutils1:amd64 (from .../libkeyutils1_1.5.5-7_amd64.deb) ...
Selecting previously unselected package libkrb5support0:amd64.
Unpacking libkrb5support0:amd64 (from .../libkrb5support0_1.10.1+dfsg-6_amd64.deb) ...
Selecting previously unselected package libk5crypto3:amd64.
Unpacking libk5crypto3:amd64 (from .../libk5crypto3_1.10.1+dfsg-6_amd64.deb) ...
Selecting previously unselected package libkrb5-3:amd64.
Unpacking libkrb5-3:amd64 (from .../libkrb5-3_1.10.1+dfsg-6_amd64.deb) ...
Selecting previously unselected package libgssapi-krb5-2:amd64.
Unpacking libgssapi-krb5-2:amd64 (from .../libgssapi-krb5-2_1.10.1+dfsg-6_amd64.deb) ...
Selecting previously unselected package libmagic1:amd64.
Unpacking libmagic1:amd64 (from .../libmagic1_1%3a5.14-2_amd64.deb) ...
Selecting previously unselected package libxml2:amd64.
Unpacking libxml2:amd64 (from .../libxml2_2.9.1+dfsg1-2_amd64.deb) ...
Selecting previously unselected package libffi6:amd64.
Unpacking libffi6:amd64 (from .../libffi6_3.0.13-4_amd64.deb) ...
Selecting previously unselected package libglib2.0-0:amd64.
Unpacking libglib2.0-0:amd64 (from .../libglib2.0-0_2.36.3-1_amd64.deb) ...
Selecting previously unselected package libatk1.0-data.
Unpacking libatk1.0-data (from .../libatk1.0-data_2.8.0-2_all.deb) ...
Selecting previously unselected package libatk1.0-0:amd64.
Unpacking libatk1.0-0:amd64 (from .../libatk1.0-0_2.8.0-2_amd64.deb) ...
Selecting previously unselected package libdbus-1-3:amd64.
Unpacking libdbus-1-3:amd64 (from .../libdbus-1-3_1.6.12-1_amd64.deb) ...
Selecting previously unselected package libxau6:amd64.
Unpacking libxau6:amd64 (from .../libxau6_1%3a1.0.8-1_amd64.deb) ...
Selecting previously unselected package libxdmcp6:amd64.
Unpacking libxdmcp6:amd64 (from .../libxdmcp6_1%3a1.1.1-1_amd64.deb) ...
Selecting previously unselected package libxcb1:amd64.
Unpacking libxcb1:amd64 (from .../libxcb1_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.6.0-1_all.deb) ...
Selecting previously unselected package libx11-6:amd64.
Unpacking libx11-6:amd64 (from .../libx11-6_2%3a1.6.0-1_amd64.deb) ...
Selecting previously unselected package libatspi2.0-0:amd64.
Unpacking libatspi2.0-0:amd64 (from .../libatspi2.0-0_2.9.3-1_amd64.deb) ...
Selecting previously unselected package libatk-bridge2.0-0:amd64.
Unpacking libatk-bridge2.0-0:amd64 (from .../libatk-bridge2.0-0_2.9.3-1_amd64.deb) ...
Selecting previously unselected package libavahi-common-data:amd64.
Unpacking libavahi-common-data:amd64 (from .../libavahi-common-data_0.6.31-2_amd64.deb) ...
Selecting previously unselected package libavahi-common3:amd64.
Unpacking libavahi-common3:amd64 (from .../libavahi-common3_0.6.31-2_amd64.deb) ...
Selecting previously unselected package libavahi-client3:amd64.
Unpacking libavahi-client3:amd64 (from .../libavahi-client3_0.6.31-2_amd64.deb) ...
Selecting previously unselected package libdrm2:amd64.
Unpacking libdrm2:amd64 (from .../libdrm2_2.4.45-3_amd64.deb) ...
Selecting previously unselected package libglapi-mesa:amd64.
Unpacking libglapi-mesa:amd64 (from .../libglapi-mesa_9.1.3-6_amd64.deb) ...
Selecting previously unselected package libllvm3.2:amd64.
Unpacking libllvm3.2:amd64 (from .../libllvm3.2_1%3a3.2repack-8_amd64.deb) ...
Selecting previously unselected package libxcb-dri2-0:amd64.
Unpacking libxcb-dri2-0:amd64 (from .../libxcb-dri2-0_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libgbm1:amd64.
Unpacking libgbm1:amd64 (from .../libgbm1_9.1.3-6_amd64.deb) ...
Selecting previously unselected package libwayland-client0:amd64.
Unpacking libwayland-client0:amd64 (from .../libwayland-client0_1.1.0-2_amd64.deb) ...
Selecting previously unselected package libwayland-server0:amd64.
Unpacking libwayland-server0:amd64 (from .../libwayland-server0_1.1.0-2_amd64.deb) ...
Selecting previously unselected package libx11-xcb1:amd64.
Unpacking libx11-xcb1:amd64 (from .../libx11-xcb1_2%3a1.6.0-1_amd64.deb) ...
Selecting previously unselected package libxcb-render0:amd64.
Unpacking libxcb-render0:amd64 (from .../libxcb-render0_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libxcb-shape0:amd64.
Unpacking libxcb-shape0:amd64 (from .../libxcb-shape0_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libxcb-xfixes0:amd64.
Unpacking libxcb-xfixes0:amd64 (from .../libxcb-xfixes0_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libegl1-mesa:amd64.
Unpacking libegl1-mesa:amd64 (from .../libegl1-mesa_9.1.3-6_amd64.deb) ...
Selecting previously unselected package libexpat1:amd64.
Unpacking libexpat1:amd64 (from .../libexpat1_2.1.0-3_amd64.deb) ...
Selecting previously unselected package libfreetype6:amd64.
Unpacking libfreetype6:amd64 (from .../libfreetype6_2.4.9-1.1_amd64.deb) ...
Selecting previously unselected package fonts-dejavu-core.
Unpacking fonts-dejavu-core (from .../fonts-dejavu-core_2.33+svn2514-3_all.deb) ...
Selecting previously unselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.33+svn2514-3_all.deb) ...
Selecting previously unselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.9.0-7.1_all.deb) ...
Selecting previously unselected package libfontconfig1:amd64.
Unpacking libfontconfig1:amd64 (from .../libfontconfig1_2.9.0-7.1_amd64.deb) ...
Selecting previously unselected package libxcb-glx0:amd64.
Unpacking libxcb-glx0:amd64 (from .../libxcb-glx0_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libxfixes3:amd64.
Unpacking libxfixes3:amd64 (from .../libxfixes3_1%3a5.0-4+deb7u1_amd64.deb) ...
Selecting previously unselected package libxdamage1:amd64.
Unpacking libxdamage1:amd64 (from .../libxdamage1_1%3a1.1.3-2_amd64.deb) ...
Selecting previously unselected package libxext6:amd64.
Unpacking libxext6:amd64 (from .../libxext6_2%3a1.3.1-2+deb7u1_amd64.deb) ...
Selecting previously unselected package libxxf86vm1:amd64.
Unpacking libxxf86vm1:amd64 (from .../libxxf86vm1_1%3a1.1.2-1+deb7u1_amd64.deb) ...
Selecting previously unselected package libgl1-mesa-glx:amd64.
Unpacking libgl1-mesa-glx:amd64 (from .../libgl1-mesa-glx_9.1.3-6_amd64.deb) ...
Selecting previously unselected package libpixman-1-0:amd64.
Unpacking libpixman-1-0:amd64 (from .../libpixman-1-0_0.26.0-4_amd64.deb) ...
Selecting previously unselected package libpng12-0:amd64.
Unpacking libpng12-0:amd64 (from .../libpng12-0_1.2.49-4_amd64.deb) ...
Selecting previously unselected package libxcb-shm0:amd64.
Unpacking libxcb-shm0:amd64 (from .../libxcb-shm0_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libxrender1:amd64.
Unpacking libxrender1:amd64 (from .../libxrender1_1%3a0.9.7-1+deb7u1_amd64.deb) ...
Selecting previously unselected package libcairo2:amd64.
Unpacking libcairo2:amd64 (from .../libcairo2_1.12.14-5_amd64.deb) ...
Selecting previously unselected package libcairo-gobject2:amd64.
Unpacking libcairo-gobject2:amd64 (from .../libcairo-gobject2_1.12.14-5_amd64.deb) ...
Selecting previously unselected package liblzo2-2:amd64.
Unpacking liblzo2-2:amd64 (from .../liblzo2-2_2.06-1_amd64.deb) ...
Selecting previously unselected package libcairo-script-interpreter2:amd64.
Unpacking libcairo-script-interpreter2:amd64 (from .../libcairo-script-interpreter2_1.12.14-5_amd64.deb) ...
Selecting previously unselected package liblcms2-2:amd64.
Unpacking liblcms2-2:amd64 (from .../liblcms2-2_2.2+git20110628-2.2_amd64.deb) ...
Selecting previously unselected package libcolord1:amd64.
Unpacking libcolord1:amd64 (from .../libcolord1_0.1.21-4_amd64.deb) ...
Selecting previously unselected package libconfig++9:amd64.
Unpacking libconfig++9:amd64 (from .../libconfig++9_1.4.8-5_amd64.deb) ...
Selecting previously unselected package libconfig9:amd64.
Unpacking libconfig9:amd64 (from .../libconfig9_1.4.8-5_amd64.deb) ...
Selecting previously unselected package libcroco3:amd64.
Unpacking libcroco3:amd64 (from .../libcroco3_0.6.8-2_amd64.deb) ...
Selecting previously unselected package libcups2:amd64.
Unpacking libcups2:amd64 (from .../libcups2_1.6.2-9_amd64.deb) ...
Selecting previously unselected package libdatrie1:amd64.
Unpacking libdatrie1:amd64 (from .../libdatrie1_0.2.6-2_amd64.deb) ...
Selecting previously unselected package libdconf1:amd64.
Unpacking libdconf1:amd64 (from .../libdconf1_0.16.0-4_amd64.deb) ...
Selecting previously unselected package libpciaccess0:amd64.
Unpacking libpciaccess0:amd64 (from .../libpciaccess0_0.13.1-2_amd64.deb) ...
Selecting previously unselected package libdrm-intel1:amd64.
Unpacking libdrm-intel1:amd64 (from .../libdrm-intel1_2.4.45-3_amd64.deb) ...
Selecting previously unselected package libdrm-nouveau2:amd64.
Unpacking libdrm-nouveau2:amd64 (from .../libdrm-nouveau2_2.4.45-3_amd64.deb) ...
Selecting previously unselected package libdrm-radeon1:amd64.
Unpacking libdrm-radeon1:amd64 (from .../libdrm-radeon1_2.4.45-3_amd64.deb) ...
Selecting previously unselected package libopenvg1-mesa:amd64.
Unpacking libopenvg1-mesa:amd64 (from .../libopenvg1-mesa_9.1.3-6_amd64.deb) ...
Selecting previously unselected package libegl1-mesa-drivers:amd64.
Unpacking libegl1-mesa-drivers:amd64 (from .../libegl1-mesa-drivers_9.1.3-6_amd64.deb) ...
Selecting previously unselected package libfftw3-double3:amd64.
Unpacking libfftw3-double3:amd64 (from .../libfftw3-double3_3.3.3-5_amd64.deb) ...
Selecting previously unselected package libfftw3-long3:amd64.
Unpacking libfftw3-long3:amd64 (from .../libfftw3-long3_3.3.3-5_amd64.deb) ...
Selecting previously unselected package libfftw3-quad3:amd64.
Unpacking libfftw3-quad3:amd64 (from .../libfftw3-quad3_3.3.3-5_amd64.deb) ...
Selecting previously unselected package libfftw3-single3:amd64.
Unpacking libfftw3-single3:amd64 (from .../libfftw3-single3_3.3.3-5_amd64.deb) ...
Selecting previously unselected package libjpeg8:amd64.
Unpacking libjpeg8:amd64 (from .../libjpeg8_8d-1_amd64.deb) ...
Selecting previously unselected package libjasper1:amd64.
Unpacking libjasper1:amd64 (from .../libjasper1_1.900.1-14_amd64.deb) ...
Selecting previously unselected package libjbig0:amd64.
Unpacking libjbig0:amd64 (from .../libjbig0_2.0-2_amd64.deb) ...
Selecting previously unselected package libtiff4:amd64.
Unpacking libtiff4:amd64 (from .../libtiff4_3.9.6-11_amd64.deb) ...
Selecting previously unselected package libgdk-pixbuf2.0-common.
Unpacking libgdk-pixbuf2.0-common (from .../libgdk-pixbuf2.0-common_2.28.2-1_all.deb) ...
Selecting previously unselected package libgdk-pixbuf2.0-0:amd64.
Unpacking libgdk-pixbuf2.0-0:amd64 (from .../libgdk-pixbuf2.0-0_2.28.2-1_amd64.deb) ...
Selecting previously unselected package libgfortran3:amd64.
Unpacking libgfortran3:amd64 (from .../libgfortran3_4.8.1-3_amd64.deb) ...
Selecting previously unselected package libgraphite2-3:amd64.
Unpacking libgraphite2-3:amd64 (from .../libgraphite2-3_1.2.3-1_amd64.deb) ...
Selecting previously unselected package dconf-service.
Unpacking dconf-service (from .../dconf-service_0.16.0-4_amd64.deb) ...
Selecting previously unselected package dconf-gsettings-backend:amd64.
Unpacking dconf-gsettings-backend:amd64 (from .../dconf-gsettings-backend_0.16.0-4_amd64.deb) ...
Selecting previously unselected package libgtk-3-common.
Unpacking libgtk-3-common (from .../libgtk-3-common_3.8.2-2_all.deb) ...
Selecting previously unselected package libthai-data.
Unpacking libthai-data (from .../libthai-data_0.1.19-2_all.deb) ...
Selecting previously unselected package libthai0:amd64.
Unpacking libthai0:amd64 (from .../libthai0_0.1.19-2_amd64.deb) ...
Selecting previously unselected package fontconfig.
Unpacking fontconfig (from .../fontconfig_2.9.0-7.1_amd64.deb) ...
Selecting previously unselected package libpango-1.0-0:amd64.
Unpacking libpango-1.0-0:amd64 (from .../libpango-1.0-0_1.32.5-5+b1_amd64.deb) ...
Selecting previously unselected package libharfbuzz0a:amd64.
Unpacking libharfbuzz0a:amd64 (from .../libharfbuzz0a_0.9.18-3_amd64.deb) ...
Selecting previously unselected package libpangoft2-1.0-0:amd64.
Unpacking libpangoft2-1.0-0:amd64 (from .../libpangoft2-1.0-0_1.32.5-5+b1_amd64.deb) ...
Selecting previously unselected package libpangocairo-1.0-0:amd64.
Unpacking libpangocairo-1.0-0:amd64 (from .../libpangocairo-1.0-0_1.32.5-5+b1_amd64.deb) ...
Selecting previously unselected package libxcomposite1:amd64.
Unpacking libxcomposite1:amd64 (from .../libxcomposite1_1%3a0.4.4-1_amd64.deb) ...
Selecting previously unselected package libxcursor1:amd64.
Unpacking libxcursor1:amd64 (from .../libxcursor1_1%3a1.1.13-1+deb7u1_amd64.deb) ...
Selecting previously unselected package libxi6:amd64.
Unpacking libxi6:amd64 (from .../libxi6_2%3a1.6.1-1+deb7u1_amd64.deb) ...
Selecting previously unselected package libxinerama1:amd64.
Unpacking libxinerama1:amd64 (from .../libxinerama1_2%3a1.1.2-1+deb7u1_amd64.deb) ...
Selecting previously unselected package libxrandr2:amd64.
Unpacking libxrandr2:amd64 (from .../libxrandr2_2%3a1.3.2-2+deb7u1_amd64.deb) ...
Selecting previously unselected package shared-mime-info.
Unpacking shared-mime-info (from .../shared-mime-info_1.0-1+b1_amd64.deb) ...
Selecting previously unselected package libgtk-3-0:amd64.
Unpacking libgtk-3-0:amd64 (from .../libgtk-3-0_3.8.2-2_amd64.deb) ...
Selecting previously unselected package libicu48:amd64.
Unpacking libicu48:amd64 (from .../libicu48_4.8.1.1-12_amd64.deb) ...
Selecting previously unselected package libharfbuzz-icu0:amd64.
Unpacking libharfbuzz-icu0:amd64 (from .../libharfbuzz-icu0_0.9.18-3_amd64.deb) ...
Selecting previously unselected package x11-common.
Unpacking x11-common (from .../x11-common_1%3a7.7+3_all.deb) ...
Selecting previously unselected package libice6:amd64.
Unpacking libice6:amd64 (from .../libice6_2%3a1.0.8-2_amd64.deb) ...
Selecting previously unselected package libkms1:amd64.
Unpacking libkms1:amd64 (from .../libkms1_2.4.45-3_amd64.deb) ...
Selecting previously unselected package libxft2:amd64.
Unpacking libxft2:amd64 (from .../libxft2_2.3.1-1_amd64.deb) ...
Selecting previously unselected package libpangoxft-1.0-0:amd64.
Unpacking libpangoxft-1.0-0:amd64 (from .../libpangoxft-1.0-0_1.32.5-5+b1_amd64.deb) ...
Selecting previously unselected package libpcrecpp0:amd64.
Unpacking libpcrecpp0:amd64 (from .../libpcrecpp0_1%3a8.31-2_amd64.deb) ...
Selecting previously unselected package libsamplerate0:amd64.
Unpacking libsamplerate0:amd64 (from .../libsamplerate0_0.1.8-5_amd64.deb) ...
Selecting previously unselected package libsm6:amd64.
Unpacking libsm6:amd64 (from .../libsm6_2%3a1.2.1-2_amd64.deb) ...
Selecting previously unselected package libunistring0:amd64.
Unpacking libunistring0:amd64 (from .../libunistring0_0.9.3-5_amd64.deb) ...
Selecting previously unselected package libpangox-1.0-0:amd64.
Unpacking libpangox-1.0-0:amd64 (from .../libpangox-1.0-0_0.0.2-4_amd64.deb) ...
Selecting previously unselected package libsystemd-login0:amd64.
Unpacking libsystemd-login0:amd64 (from .../libsystemd-login0_44-12_amd64.deb) ...
Selecting previously unselected package adduser.
Unpacking adduser (from .../adduser_3.113+nmu3_all.deb) ...
Selecting previously unselected package file.
Unpacking file (from .../file_1%3a5.14-2_amd64.deb) ...
Selecting previously unselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.18.2.1-1_amd64.deb) ...
Selecting previously unselected package libsigsegv2.
Unpacking libsigsegv2 (from .../libsigsegv2_2.9-4_amd64.deb) ...
Selecting previously unselected package m4.
Unpacking m4 (from .../archives/m4_1.4.16-5_amd64.deb) ...
Selecting previously unselected package autoconf.
Unpacking autoconf (from .../autoconf_2.69-1_all.deb) ...
Selecting previously unselected package autoconf-archive.
Unpacking autoconf-archive (from .../autoconf-archive_20111221-2_all.deb) ...
Selecting previously unselected package autotools-dev.
Unpacking autotools-dev (from .../autotools-dev_20130515.1_all.deb) ...
Selecting previously unselected package automake.
Unpacking automake (from .../automake_1%3a1.13.3-1_all.deb) ...
Selecting previously unselected package dbus.
Unpacking dbus (from .../dbus_1.6.12-1_amd64.deb) ...
Selecting previously unselected package dbus-x11.
Unpacking dbus-x11 (from .../dbus-x11_1.6.12-1_amd64.deb) ...
Selecting previously unselected package gettext.
Unpacking gettext (from .../gettext_0.18.2.1-1_amd64.deb) ...
Selecting previously unselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously unselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.16+nmu2_all.deb) ...
Selecting previously unselected package debhelper.
Unpacking debhelper (from .../debhelper_9.20130605_all.deb) ...
Selecting previously unselected package libtool.
Unpacking libtool (from .../libtool_2.4.2-1.2_amd64.deb) ...
Selecting previously unselected package dh-autoreconf.
Unpacking dh-autoreconf (from .../dh-autoreconf_7_all.deb) ...
Selecting previously unselected package libgirepository-1.0-1.
Unpacking libgirepository-1.0-1 (from .../libgirepository-1.0-1_1.36.0-2+b1_amd64.deb) ...
Selecting previously unselected package gir1.2-glib-2.0.
Unpacking gir1.2-glib-2.0 (from .../gir1.2-glib-2.0_1.36.0-2+b1_amd64.deb) ...
Selecting previously unselected package gir1.2-atk-1.0.
Unpacking gir1.2-atk-1.0 (from .../gir1.2-atk-1.0_2.8.0-2_amd64.deb) ...
Selecting previously unselected package gir1.2-freedesktop.
Unpacking gir1.2-freedesktop (from .../gir1.2-freedesktop_1.36.0-2+b1_amd64.deb) ...
Selecting previously unselected package gir1.2-gdkpixbuf-2.0.
Unpacking gir1.2-gdkpixbuf-2.0 (from .../gir1.2-gdkpixbuf-2.0_2.28.2-1_amd64.deb) ...
Selecting previously unselected package gir1.2-pango-1.0.
Unpacking gir1.2-pango-1.0 (from .../gir1.2-pango-1.0_1.32.5-5+b1_amd64.deb) ...
Selecting previously unselected package gir1.2-gtk-3.0.
Unpacking gir1.2-gtk-3.0 (from .../gir1.2-gtk-3.0_3.8.2-2_amd64.deb) ...
Selecting previously unselected package libvte-2.90-common.
Unpacking libvte-2.90-common (from .../libvte-2.90-common_1%3a0.34.6-1_all.deb) ...
Selecting previously unselected package libvte-2.90-9.
Unpacking libvte-2.90-9 (from .../libvte-2.90-9_1%3a0.34.6-1_amd64.deb) ...
Selecting previously unselected package gir1.2-vte-2.90.
Unpacking gir1.2-vte-2.90 (from .../gir1.2-vte-2.90_1%3a0.34.6-1_amd64.deb) ...
Selecting previously unselected package hardening-includes.
Unpacking hardening-includes (from .../hardening-includes_2.3_all.deb) ...
Selecting previously unselected package hardening-wrapper.
Unpacking hardening-wrapper (from .../hardening-wrapper_2.3_amd64.deb) ...
Adding 'diversion of /usr/bin/gcc-4.2 to /usr/bin/gcc-4.2.real by hardening-wrapper'
Adding 'diversion of /usr/bin/g++-4.2 to /usr/bin/g++-4.2.real by hardening-wrapper'
Adding 'diversion of /usr/bin/gcc-4.3 to /usr/bin/gcc-4.3.real by hardening-wrapper'
Adding 'diversion of /usr/bin/g++-4.3 to /usr/bin/g++-4.3.real by hardening-wrapper'
Adding 'diversion of /usr/bin/gcc-4.4 to /usr/bin/gcc-4.4.real by hardening-wrapper'
Adding 'diversion of /usr/bin/g++-4.4 to /usr/bin/g++-4.4.real by hardening-wrapper'
Adding 'diversion of /usr/bin/gcc-4.5 to /usr/bin/gcc-4.5.real by hardening-wrapper'
Adding 'diversion of /usr/bin/g++-4.5 to /usr/bin/g++-4.5.real by hardening-wrapper'
Adding 'diversion of /usr/bin/gcc-4.6 to /usr/bin/gcc-4.6.real by hardening-wrapper'
Adding 'diversion of /usr/bin/g++-4.6 to /usr/bin/g++-4.6.real by hardening-wrapper'
Adding 'diversion of /usr/bin/gcc-4.7 to /usr/bin/gcc-4.7.real by hardening-wrapper'
Adding 'diversion of /usr/bin/g++-4.7 to /usr/bin/g++-4.7.real by hardening-wrapper'
Adding 'diversion of /usr/bin/gcc-4.8 to /usr/bin/gcc-4.8.real by hardening-wrapper'
Adding 'diversion of /usr/bin/g++-4.8 to /usr/bin/g++-4.8.real by hardening-wrapper'
Adding 'diversion of /usr/bin/ld.bfd to /usr/bin/ld.bfd.real by hardening-wrapper'
Adding 'diversion of /usr/bin/ld.gold to /usr/bin/ld.gold.real by hardening-wrapper'
Selecting previously unselected package libelfg0.
Unpacking libelfg0 (from .../libelfg0_0.8.13-3_amd64.deb) ...
Selecting previously unselected package libglib2.0-data.
Unpacking libglib2.0-data (from .../libglib2.0-data_2.36.3-1_all.deb) ...
Selecting previously unselected package libglib2.0-bin.
Unpacking libglib2.0-bin (from .../libglib2.0-bin_2.36.3-1_amd64.deb) ...
Selecting previously unselected package libpcre3-dev:amd64.
Unpacking libpcre3-dev:amd64 (from .../libpcre3-dev_1%3a8.31-2_amd64.deb) ...
Selecting previously unselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.26-1_amd64.deb) ...
Selecting previously unselected package zlib1g-dev:amd64.
Unpacking zlib1g-dev:amd64 (from .../zlib1g-dev_1%3a1.2.8.dfsg-1_amd64.deb) ...
Selecting previously unselected package libglib2.0-dev.
Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.36.3-1_amd64.deb) ...
Selecting previously unselected package libatk-bridge2.0-dev:amd64.
Unpacking libatk-bridge2.0-dev:amd64 (from .../libatk-bridge2.0-dev_2.9.3-1_amd64.deb) ...
Selecting previously unselected package libatk1.0-dev.
Unpacking libatk1.0-dev (from .../libatk1.0-dev_2.8.0-2_amd64.deb) ...
Selecting previously unselected package libblas3.
Unpacking libblas3 (from .../libblas3_1.2.20110419-5_amd64.deb) ...
Selecting previously unselected package libexpat1-dev:amd64.
Unpacking libexpat1-dev:amd64 (from .../libexpat1-dev_2.1.0-3_amd64.deb) ...
Selecting previously unselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.4.9-1.1_amd64.deb) ...
Selecting previously unselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.9.0-7.1_amd64.deb) ...
Selecting previously unselected package xorg-sgml-doctools.
Unpacking xorg-sgml-doctools (from .../xorg-sgml-doctools_1%3a1.10-1_all.deb) ...
Selecting previously unselected package x11proto-core-dev.
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.24-1_all.deb) ...
Selecting previously unselected package libxau-dev:amd64.
Unpacking libxau-dev:amd64 (from .../libxau-dev_1%3a1.0.8-1_amd64.deb) ...
Selecting previously unselected package libxdmcp-dev:amd64.
Unpacking libxdmcp-dev:amd64 (from .../libxdmcp-dev_1%3a1.1.1-1_amd64.deb) ...
Selecting previously unselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_2.3-1_all.deb) ...
Selecting previously unselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.6-2_all.deb) ...
Selecting previously unselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.7-1_all.deb) ...
Selecting previously unselected package libpthread-stubs0:amd64.
Unpacking libpthread-stubs0:amd64 (from .../libpthread-stubs0_0.3-3_amd64.deb) ...
Selecting previously unselected package libpthread-stubs0-dev:amd64.
Unpacking libpthread-stubs0-dev:amd64 (from .../libpthread-stubs0-dev_0.3-3_amd64.deb) ...
Selecting previously unselected package libxcb1-dev:amd64.
Unpacking libxcb1-dev:amd64 (from .../libxcb1-dev_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libx11-dev:amd64.
Unpacking libx11-dev:amd64 (from .../libx11-dev_2%3a1.6.0-1_amd64.deb) ...
Selecting previously unselected package x11proto-render-dev.
Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.11.1-2_all.deb) ...
Selecting previously unselected package libxrender-dev:amd64.
Unpacking libxrender-dev:amd64 (from .../libxrender-dev_1%3a0.9.7-1+deb7u1_amd64.deb) ...
Selecting previously unselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.2.1-1_all.deb) ...
Selecting previously unselected package libxext-dev:amd64.
Unpacking libxext-dev:amd64 (from .../libxext-dev_2%3a1.3.1-2+deb7u1_amd64.deb) ...
Selecting previously unselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.49-4_amd64.deb) ...
Selecting previously unselected package libice-dev:amd64.
Unpacking libice-dev:amd64 (from .../libice-dev_2%3a1.0.8-2_amd64.deb) ...
Selecting previously unselected package libsm-dev:amd64.
Unpacking libsm-dev:amd64 (from .../libsm-dev_2%3a1.2.1-2_amd64.deb) ...
Selecting previously unselected package libpixman-1-dev.
Unpacking libpixman-1-dev (from .../libpixman-1-dev_0.26.0-4_amd64.deb) ...
Selecting previously unselected package libxcb-render0-dev:amd64.
Unpacking libxcb-render0-dev:amd64 (from .../libxcb-render0-dev_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libxcb-shm0-dev:amd64.
Unpacking libxcb-shm0-dev:amd64 (from .../libxcb-shm0-dev_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libdrm-dev.
Unpacking libdrm-dev (from .../libdrm-dev_2.4.45-3_amd64.deb) ...
Selecting previously unselected package mesa-common-dev.
Unpacking mesa-common-dev (from .../mesa-common-dev_9.1.3-6_amd64.deb) ...
Selecting previously unselected package libx11-xcb-dev.
Unpacking libx11-xcb-dev (from .../libx11-xcb-dev_2%3a1.6.0-1_amd64.deb) ...
Selecting previously unselected package libxcb-dri2-0-dev:amd64.
Unpacking libxcb-dri2-0-dev:amd64 (from .../libxcb-dri2-0-dev_1.9.1-3_amd64.deb) ...
Selecting previously unselected package libxcb-glx0-dev:amd64.
Unpacking libxcb-glx0-dev:amd64 (from .../libxcb-glx0-dev_1.9.1-3_amd64.deb) ...
Selecting previously unselected package x11proto-fixes-dev.
Unpacking x11proto-fixes-dev (from .../x11proto-fixes-dev_1%3a5.0-2_all.deb) ...
Selecting previously unselected package libxfixes-dev.
Unpacking libxfixes-dev (from .../libxfixes-dev_1%3a5.0-4+deb7u1_amd64.deb) ...
Selecting previously unselected package x11proto-damage-dev.
Unpacking x11proto-damage-dev (from .../x11proto-damage-dev_1%3a1.2.1-2_all.deb) ...
Selecting previously unselected package libxdamage-dev.
Unpacking libxdamage-dev (from .../libxdamage-dev_1%3a1.1.3-2_amd64.deb) ...
Selecting previously unselected package x11proto-xf86vidmode-dev.
Unpacking x11proto-xf86vidmode-dev (from .../x11proto-xf86vidmode-dev_2.3.1-2_all.deb) ...
Selecting previously unselected package libxxf86vm-dev.
Unpacking libxxf86vm-dev (from .../libxxf86vm-dev_1%3a1.1.2-1+deb7u1_amd64.deb) ...
Selecting previously unselected package x11proto-dri2-dev.
Unpacking x11proto-dri2-dev (from .../x11proto-dri2-dev_2.8-2_all.deb) ...
Selecting previously unselected package x11proto-gl-dev.
Unpacking x11proto-gl-dev (from .../x11proto-gl-dev_1.4.16-2_all.deb) ...
Selecting previously unselected package libgl1-mesa-dev.
Unpacking libgl1-mesa-dev (from .../libgl1-mesa-dev_9.1.3-6_amd64.deb) ...
Selecting previously unselected package libegl1-mesa-dev.
Unpacking libegl1-mesa-dev (from .../libegl1-mesa-dev_9.1.3-6_amd64.deb) ...
Selecting previously unselected package libcairo2-dev.
Unpacking libcairo2-dev (from .../libcairo2-dev_1.12.14-5_amd64.deb) ...
Selecting previously unselected package libconfig-dev:amd64.
Unpacking libconfig-dev:amd64 (from .../libconfig-dev_1.4.8-5_amd64.deb) ...
Selecting previously unselected package libconfig++-dev:amd64.
Unpacking libconfig++-dev:amd64 (from .../libconfig++-dev_1.4.8-5_amd64.deb) ...
Selecting previously unselected package libfftw3-bin.
Unpacking libfftw3-bin (from .../libfftw3-bin_3.3.3-5_amd64.deb) ...
Selecting previously unselected package libfftw3-dev:amd64.
Unpacking libfftw3-dev:amd64 (from .../libfftw3-dev_3.3.3-5_amd64.deb) ...
Selecting previously unselected package libgdk-pixbuf2.0-dev.
Unpacking libgdk-pixbuf2.0-dev (from .../libgdk-pixbuf2.0-dev_2.28.2-1_amd64.deb) ...
Selecting previously unselected package libgsl0ldbl.
Unpacking libgsl0ldbl (from .../libgsl0ldbl_1.15+dfsg.2-2_amd64.deb) ...
Selecting previously unselected package libgsl0-dev.
Unpacking libgsl0-dev (from .../libgsl0-dev_1.15+dfsg.2-2_amd64.deb) ...
Selecting previously unselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.3.1-1_amd64.deb) ...
Selecting previously unselected package libharfbuzz-dev.
Unpacking libharfbuzz-dev (from .../libharfbuzz-dev_0.9.18-3_amd64.deb) ...
Selecting previously unselected package libpango1.0-dev.
Unpacking libpango1.0-dev (from .../libpango1.0-dev_1.32.5-5+b1_amd64.deb) ...
Selecting previously unselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.2.1-2_all.deb) ...
Selecting previously unselected package libxinerama-dev:amd64.
Unpacking libxinerama-dev:amd64 (from .../libxinerama-dev_2%3a1.1.2-1+deb7u1_amd64.deb) ...
Selecting previously unselected package libxi-dev.
Unpacking libxi-dev (from .../libxi-dev_2%3a1.6.1-1+deb7u1_amd64.deb) ...
Selecting previously unselected package x11proto-randr-dev.
Unpacking x11proto-randr-dev (from .../x11proto-randr-dev_1.4.0-2_all.deb) ...
Selecting previously unselected package libxrandr-dev.
Unpacking libxrandr-dev (from .../libxrandr-dev_2%3a1.3.2-2+deb7u1_amd64.deb) ...
Selecting previously unselected package libxcursor-dev:amd64.
Unpacking libxcursor-dev:amd64 (from .../libxcursor-dev_1%3a1.1.13-1+deb7u1_amd64.deb) ...
Selecting previously unselected package x11proto-composite-dev.
Unpacking x11proto-composite-dev (from .../x11proto-composite-dev_1%3a0.4.2-2_all.deb) ...
Selecting previously unselected package libxcomposite-dev.
Unpacking libxcomposite-dev (from .../libxcomposite-dev_1%3a0.4.4-1_amd64.deb) ...
Selecting previously unselected package libgtk-3-dev.
Unpacking libgtk-3-dev (from .../libgtk-3-dev_3.8.2-2_amd64.deb) ...
Selecting previously unselected package liblapack3.
Unpacking liblapack3 (from .../liblapack3_3.4.2+dfsg-1_amd64.deb) ...
Selecting previously unselected package libitpp8.
Unpacking libitpp8 (from .../libitpp8_4.3.0-2_amd64.deb) ...
Selecting previously unselected package libitpp-dev.
Unpacking libitpp-dev (from .../libitpp-dev_4.3.0-2_amd64.deb) ...
Selecting previously unselected package libsamplerate0-dev:amd64.
Unpacking libsamplerate0-dev:amd64 (from .../libsamplerate0-dev_0.1.8-5_amd64.deb) ...
Selecting previously unselected package libpango1.0-0:amd64.
Unpacking libpango1.0-0:amd64 (from .../libpango1.0-0_1.32.5-5+b1_amd64.deb) ...
Selecting previously unselected package libunique-3.0-0.
Unpacking libunique-3.0-0 (from .../libunique-3.0-0_3.0.2-2_amd64.deb) ...
Selecting previously unselected package libunique-3.0-dev.
Unpacking libunique-3.0-dev (from .../libunique-3.0-dev_3.0.2-2_amd64.deb) ...
Selecting previously unselected package libvte-2.90-dev.
Unpacking libvte-2.90-dev (from .../libvte-2.90-dev_1%3a0.34.6-1_amd64.deb) ...
Selecting previously unselected package libxml2-utils.
Unpacking libxml2-utils (from .../libxml2-utils_2.9.1+dfsg1-2_amd64.deb) ...
Selecting previously unselected package sbuild-build-depends-aghermann-dummy.
Unpacking sbuild-build-depends-aghermann-dummy (from .../sbuild-build-depends-aghermann-dummy.deb) ...
Setting up libpipeline1:amd64 (1.2.4-1) ...
Setting up libpopt0:amd64 (1.16-7) ...
Setting up libudev0:amd64 (175-7.2) ...
Setting up groff-base (1.22.2-3) ...
Setting up bsdmainutils (9.0.5) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode
update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode
Setting up man-db (2.6.3-7) ...
Not building database; man-db/auto-update is not 'true'.
Setting up libasprintf0c2:amd64 (0.18.2.1-1) ...
Setting up libgpg-error0:amd64 (1.10-3.1) ...
Setting up libgcrypt11:amd64 (1.5.2-2) ...
Setting up libp11-kit0:amd64 (0.18.3-2) ...
Setting up libtasn1-3:amd64 (2.14-3) ...
Setting up libgnutls26:amd64 (2.12.23-5) ...
Setting up libkeyutils1:amd64 (1.5.5-7) ...
Setting up libkrb5support0:amd64 (1.10.1+dfsg-6) ...
Setting up libk5crypto3:amd64 (1.10.1+dfsg-6) ...
Setting up libkrb5-3:amd64 (1.10.1+dfsg-6) ...
Setting up libgssapi-krb5-2:amd64 (1.10.1+dfsg-6) ...
Setting up libmagic1:amd64 (1:5.14-2) ...
Setting up libxml2:amd64 (2.9.1+dfsg1-2) ...
Setting up libffi6:amd64 (3.0.13-4) ...
Setting up libglib2.0-0:amd64 (2.36.3-1) ...
Setting up libatk1.0-data (2.8.0-2) ...
Setting up libatk1.0-0:amd64 (2.8.0-2) ...
Setting up libdbus-1-3:amd64 (1.6.12-1) ...
Setting up libxau6:amd64 (1:1.0.8-1) ...
Setting up libxdmcp6:amd64 (1:1.1.1-1) ...
Setting up libxcb1:amd64 (1.9.1-3) ...
Setting up libx11-data (2:1.6.0-1) ...
Setting up libx11-6:amd64 (2:1.6.0-1) ...
Setting up libatspi2.0-0:amd64 (2.9.3-1) ...
Setting up libatk-bridge2.0-0:amd64 (2.9.3-1) ...
Setting up libavahi-common-data:amd64 (0.6.31-2) ...
Setting up libavahi-common3:amd64 (0.6.31-2) ...
Setting up libavahi-client3:amd64 (0.6.31-2) ...
Setting up libdrm2:amd64 (2.4.45-3) ...
Setting up libglapi-mesa:amd64 (9.1.3-6) ...
Setting up libllvm3.2:amd64 (1:3.2repack-8) ...
Setting up libxcb-dri2-0:amd64 (1.9.1-3) ...
Setting up libgbm1:amd64 (9.1.3-6) ...
Setting up libwayland-client0:amd64 (1.1.0-2) ...
Setting up libwayland-server0:amd64 (1.1.0-2) ...
Setting up libx11-xcb1:amd64 (2:1.6.0-1) ...
Setting up libxcb-render0:amd64 (1.9.1-3) ...
Setting up libxcb-shape0:amd64 (1.9.1-3) ...
Setting up libxcb-xfixes0:amd64 (1.9.1-3) ...
Setting up libegl1-mesa:amd64 (9.1.3-6) ...
Setting up libexpat1:amd64 (2.1.0-3) ...
Setting up libfreetype6:amd64 (2.4.9-1.1) ...
Setting up fonts-dejavu-core (2.33+svn2514-3) ...
Setting up ttf-dejavu-core (2.33+svn2514-3) ...
Setting up fontconfig-config (2.9.0-7.1) ...
Setting up libfontconfig1:amd64 (2.9.0-7.1) ...
Setting up libxcb-glx0:amd64 (1.9.1-3) ...
Setting up libxfixes3:amd64 (1:5.0-4+deb7u1) ...
Setting up libxdamage1:amd64 (1:1.1.3-2) ...
Setting up libxext6:amd64 (2:1.3.1-2+deb7u1) ...
Setting up libxxf86vm1:amd64 (1:1.1.2-1+deb7u1) ...
Setting up libgl1-mesa-glx:amd64 (9.1.3-6) ...
Setting up libpixman-1-0:amd64 (0.26.0-4) ...
Setting up libpng12-0:amd64 (1.2.49-4) ...
Setting up libxcb-shm0:amd64 (1.9.1-3) ...
Setting up libxrender1:amd64 (1:0.9.7-1+deb7u1) ...
Setting up libcairo2:amd64 (1.12.14-5) ...
Setting up libcairo-gobject2:amd64 (1.12.14-5) ...
Setting up liblzo2-2:amd64 (2.06-1) ...
Setting up libcairo-script-interpreter2:amd64 (1.12.14-5) ...
Setting up liblcms2-2:amd64 (2.2+git20110628-2.2) ...
Setting up libcolord1:amd64 (0.1.21-4) ...
Setting up libconfig++9:amd64 (1.4.8-5) ...
Setting up libconfig9:amd64 (1.4.8-5) ...
Setting up libcroco3:amd64 (0.6.8-2) ...
Setting up libcups2:amd64 (1.6.2-9) ...
Setting up libdatrie1:amd64 (0.2.6-2) ...
Setting up libdconf1:amd64 (0.16.0-4) ...
Setting up libpciaccess0:amd64 (0.13.1-2) ...
Setting up libdrm-intel1:amd64 (2.4.45-3) ...
Setting up libdrm-nouveau2:amd64 (2.4.45-3) ...
Setting up libdrm-radeon1:amd64 (2.4.45-3) ...
Setting up libopenvg1-mesa:amd64 (9.1.3-6) ...
Setting up libegl1-mesa-drivers:amd64 (9.1.3-6) ...
Setting up libfftw3-double3:amd64 (3.3.3-5) ...
Setting up libfftw3-long3:amd64 (3.3.3-5) ...
Setting up libfftw3-quad3:amd64 (3.3.3-5) ...
Setting up libfftw3-single3:amd64 (3.3.3-5) ...
Setting up libjpeg8:amd64 (8d-1) ...
Setting up libjasper1:amd64 (1.900.1-14) ...
Setting up libjbig0:amd64 (2.0-2) ...
Setting up libtiff4:amd64 (3.9.6-11) ...
Setting up libgdk-pixbuf2.0-common (2.28.2-1) ...
Setting up libgdk-pixbuf2.0-0:amd64 (2.28.2-1) ...
Setting up libgfortran3:amd64 (4.8.1-3) ...
Setting up libgraphite2-3:amd64 (1.2.3-1) ...
Setting up dconf-service (0.16.0-4) ...
Setting up dconf-gsettings-backend:amd64 (0.16.0-4) ...
Setting up libgtk-3-common (3.8.2-2) ...
Setting up libthai-data (0.1.19-2) ...
Setting up libthai0:amd64 (0.1.19-2) ...
Setting up fontconfig (2.9.0-7.1) ...
Regenerating fonts cache... done.
Setting up libpango-1.0-0:amd64 (1.32.5-5+b1) ...
Setting up libharfbuzz0a:amd64 (0.9.18-3) ...
Setting up libpangoft2-1.0-0:amd64 (1.32.5-5+b1) ...
Setting up libpangocairo-1.0-0:amd64 (1.32.5-5+b1) ...
Setting up libxcomposite1:amd64 (1:0.4.4-1) ...
Setting up libxcursor1:amd64 (1:1.1.13-1+deb7u1) ...
Setting up libxi6:amd64 (2:1.6.1-1+deb7u1) ...
Setting up libxinerama1:amd64 (2:1.1.2-1+deb7u1) ...
Setting up libxrandr2:amd64 (2:1.3.2-2+deb7u1) ...
Setting up shared-mime-info (1.0-1+b1) ...
Setting up libgtk-3-0:amd64 (3.8.2-2) ...
Setting up libicu48:amd64 (4.8.1.1-12) ...
Setting up libharfbuzz-icu0:amd64 (0.9.18-3) ...
Setting up x11-common (1:7.7+3) ...
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libice6:amd64 (2:1.0.8-2) ...
Setting up libkms1:amd64 (2.4.45-3) ...
Setting up libxft2:amd64 (2.3.1-1) ...
Setting up libpangoxft-1.0-0:amd64 (1.32.5-5+b1) ...
Setting up libpcrecpp0:amd64 (1:8.31-2) ...
Setting up libsamplerate0:amd64 (0.1.8-5) ...
Setting up libsm6:amd64 (2:1.2.1-2) ...
Setting up libunistring0:amd64 (0.9.3-5) ...
Setting up libpangox-1.0-0:amd64 (0.0.2-4) ...
Setting up libsystemd-login0:amd64 (44-12) ...
Setting up adduser (3.113+nmu3) ...
Setting up file (1:5.14-2) ...
Setting up gettext-base (0.18.2.1-1) ...
Setting up libsigsegv2 (2.9-4) ...
Setting up m4 (1.4.16-5) ...
Setting up autoconf (2.69-1) ...
Setting up autoconf-archive (20111221-2) ...
Setting up autotools-dev (20130515.1) ...
Setting up automake (1:1.13.3-1) ...
update-alternatives: using /usr/bin/automake-1.13 to provide /usr/bin/automake (automake) in auto mode
Setting up dbus (1.6.12-1) ...
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of start.
Setting up dbus-x11 (1.6.12-1) ...
Setting up gettext (0.18.2.1-1) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16+nmu2) ...
Setting up debhelper (9.20130605) ...
Setting up libtool (2.4.2-1.2) ...
Setting up dh-autoreconf (7) ...
Setting up libgirepository-1.0-1 (1.36.0-2+b1) ...
Setting up gir1.2-glib-2.0 (1.36.0-2+b1) ...
Setting up gir1.2-atk-1.0 (2.8.0-2) ...
Setting up gir1.2-freedesktop (1.36.0-2+b1) ...
Setting up gir1.2-gdkpixbuf-2.0 (2.28.2-1) ...
Setting up gir1.2-pango-1.0 (1.32.5-5+b1) ...
Setting up gir1.2-gtk-3.0 (3.8.2-2) ...
Setting up libvte-2.90-common (1:0.34.6-1) ...
Setting up libvte-2.90-9 (1:0.34.6-1) ...
Setting up gir1.2-vte-2.90 (1:0.34.6-1) ...
Setting up hardening-includes (2.3) ...
Setting up hardening-wrapper (2.3) ...
Setting up libelfg0 (0.8.13-3) ...
Setting up libglib2.0-data (2.36.3-1) ...
Setting up libglib2.0-bin (2.36.3-1) ...
Setting up libpcre3-dev:amd64 (1:8.31-2) ...
Setting up pkg-config (0.26-1) ...
Setting up zlib1g-dev:amd64 (1:1.2.8.dfsg-1) ...
Setting up libglib2.0-dev (2.36.3-1) ...
Setting up libatk-bridge2.0-dev:amd64 (2.9.3-1) ...
Setting up libatk1.0-dev (2.8.0-2) ...
Setting up libblas3 (1.2.20110419-5) ...
update-alternatives: using /usr/lib/libblas/libblas.so.3 to provide /usr/lib/libblas.so.3 (libblas.so.3) in auto mode
Setting up libexpat1-dev:amd64 (2.1.0-3) ...
Setting up libfreetype6-dev (2.4.9-1.1) ...
Setting up libfontconfig1-dev (2.9.0-7.1) ...
Setting up xorg-sgml-doctools (1:1.10-1) ...
Setting up x11proto-core-dev (7.0.24-1) ...
Setting up libxau-dev:amd64 (1:1.0.8-1) ...
Setting up libxdmcp-dev:amd64 (1:1.1.1-1) ...
Setting up x11proto-input-dev (2.3-1) ...
Setting up x11proto-kb-dev (1.0.6-2) ...
Setting up xtrans-dev (1.2.7-1) ...
Setting up libpthread-stubs0:amd64 (0.3-3) ...
Setting up libpthread-stubs0-dev:amd64 (0.3-3) ...
Setting up libxcb1-dev:amd64 (1.9.1-3) ...
Setting up libx11-dev:amd64 (2:1.6.0-1) ...
Setting up x11proto-render-dev (2:0.11.1-2) ...
Setting up libxrender-dev:amd64 (1:0.9.7-1+deb7u1) ...
Setting up x11proto-xext-dev (7.2.1-1) ...
Setting up libxext-dev:amd64 (2:1.3.1-2+deb7u1) ...
Setting up libpng12-dev (1.2.49-4) ...
Setting up libice-dev:amd64 (2:1.0.8-2) ...
Setting up libsm-dev:amd64 (2:1.2.1-2) ...
Setting up libpixman-1-dev (0.26.0-4) ...
Setting up libxcb-render0-dev:amd64 (1.9.1-3) ...
Setting up libxcb-shm0-dev:amd64 (1.9.1-3) ...
Setting up libdrm-dev (2.4.45-3) ...
Setting up mesa-common-dev (9.1.3-6) ...
Setting up libx11-xcb-dev (2:1.6.0-1) ...
Setting up libxcb-dri2-0-dev:amd64 (1.9.1-3) ...
Setting up libxcb-glx0-dev:amd64 (1.9.1-3) ...
Setting up x11proto-fixes-dev (1:5.0-2) ...
Setting up libxfixes-dev (1:5.0-4+deb7u1) ...
Setting up x11proto-damage-dev (1:1.2.1-2) ...
Setting up libxdamage-dev (1:1.1.3-2) ...
Setting up x11proto-xf86vidmode-dev (2.3.1-2) ...
Setting up libxxf86vm-dev (1:1.1.2-1+deb7u1) ...
Setting up x11proto-dri2-dev (2.8-2) ...
Setting up x11proto-gl-dev (1.4.16-2) ...
Setting up libgl1-mesa-dev (9.1.3-6) ...
Setting up libegl1-mesa-dev (9.1.3-6) ...
Setting up libcairo2-dev (1.12.14-5) ...
Setting up libconfig-dev:amd64 (1.4.8-5) ...
Setting up libconfig++-dev:amd64 (1.4.8-5) ...
Setting up libfftw3-bin (3.3.3-5) ...
Setting up libfftw3-dev:amd64 (3.3.3-5) ...
Setting up libgdk-pixbuf2.0-dev (2.28.2-1) ...
Setting up libgsl0ldbl (1.15+dfsg.2-2) ...
Setting up libgsl0-dev (1.15+dfsg.2-2) ...
Setting up libxft-dev (2.3.1-1) ...
Setting up libharfbuzz-dev (0.9.18-3) ...
Setting up libpango1.0-dev (1.32.5-5+b1) ...
Setting up x11proto-xinerama-dev (1.2.1-2) ...
Setting up libxinerama-dev:amd64 (2:1.1.2-1+deb7u1) ...
Setting up libxi-dev (2:1.6.1-1+deb7u1) ...
Setting up x11proto-randr-dev (1.4.0-2) ...
Setting up libxrandr-dev (2:1.3.2-2+deb7u1) ...
Setting up libxcursor-dev:amd64 (1:1.1.13-1+deb7u1) ...
Setting up x11proto-composite-dev (1:0.4.2-2) ...
Setting up libxcomposite-dev (1:0.4.4-1) ...
Setting up libgtk-3-dev (3.8.2-2) ...
Setting up liblapack3 (3.4.2+dfsg-1) ...
update-alternatives: using /usr/lib/lapack/liblapack.so.3 to provide /usr/lib/liblapack.so.3 (liblapack.so.3) in auto mode
Setting up libitpp8 (4.3.0-2) ...
Setting up libitpp-dev (4.3.0-2) ...
Setting up libsamplerate0-dev:amd64 (0.1.8-5) ...
Setting up libpango1.0-0:amd64 (1.32.5-5+b1) ...
Setting up libunique-3.0-0 (3.0.2-2) ...
Setting up libunique-3.0-dev (3.0.2-2) ...
Setting up libvte-2.90-dev (1:0.34.6-1) ...
Setting up libxml2-utils (2.9.1+dfsg1-2) ...
Setting up sbuild-build-depends-aghermann-dummy (0.invalid.0) ...
Processing triggers for libc-bin ...
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build environment │
└──────────────────────────────────────────────────────────────────────────────┘
Kernel: Linux 2.6.32-5-xen-amd64 amd64 (x86_64)
Toolchain package versions: binutils_2.23.52.20130620-1 dpkg-dev_1.16.10 g++-4.6_4.6.4-4 g++-4.8_4.8.1-3 gcc-4.6_4.6.4-4 gcc-4.7_4.7.3-5 gcc-4.8_4.8.1-3 libc6-dev_2.17-5 libstdc++-4.8-dev_4.8.1-3 libstdc++6_4.8.1-3 libstdc++6-4.6-dev_4.6.4-4 linux-libc-dev_3.9.6-1
Package versions: adduser_3.113+nmu3 apt_0.9.8.2 autoconf_2.69-1 autoconf-archive_20111221-2 automake_1:1.13.3-1 autotools-dev_20130515.1 base-files_7.2 base-passwd_3.5.26 bash_4.2+dfsg-1 binutils_2.23.52.20130620-1 bsdmainutils_9.0.5 bsdutils_1:2.20.1-5.4 build-essential_11.6 bzip2_1.0.6-4 coreutils_8.20-3 cpp_4:4.8.1-1 cpp-4.6_4.6.4-4 cpp-4.7_4.7.3-5 cpp-4.8_4.8.1-3 dash_0.5.7-3 dbus_1.6.12-1 dbus-x11_1.6.12-1 dconf-gsettings-backend_0.16.0-4 dconf-service_0.16.0-4 debconf_1.5.50 debconf-i18n_1.5.50 debfoster_2.7-1.2 debhelper_9.20130605 debian-archive-keyring_2012.4 debianutils_4.3.4 dh-autoreconf_7 diffutils_1:3.2-8 dpkg_1.16.10 dpkg-dev_1.16.10 e2fslibs_1.42.5-1.1 e2fsprogs_1.42.5-1.1 fakeroot_1.19-2 file_1:5.14-2 findutils_4.4.2-5 fontconfig_2.9.0-7.1 fontconfig-config_2.9.0-7.1 fonts-dejavu-core_2.33+svn2514-3 g++_4:4.8.1-1 g++-4.6_4.6.4-4 g++-4.8_4.8.1-3 gcc_4:4.8.1-1 gcc-4.4-base_4.4.7-4 gcc-4.5-base_4.5.4-1 gcc-4.6_4.6.4-4 gcc-4.6-base_4.6.4-4 gcc-4.7_4.7.3-5 gcc-4.7-base_4.7.3-5 gcc-4.8_4.8.1-3 gcc-4.8-base_4.8.1-3 gettext_0.18.2.1-1 gettext-base_0.18.2.1-1 gir1.2-atk-1.0_2.8.0-2 gir1.2-freedesktop_1.36.0-2+b1 gir1.2-gdkpixbuf-2.0_2.28.2-1 gir1.2-glib-2.0_1.36.0-2+b1 gir1.2-gtk-3.0_3.8.2-2 gir1.2-pango-1.0_1.32.5-5+b1 gir1.2-vte-2.90_1:0.34.6-1 gnupg_1.4.12-7 gpgv_1.4.12-7 grep_2.14-2 groff-base_1.22.2-3 gzip_1.6-1 hardening-includes_2.3 hardening-wrapper_2.3 hostname_3.13 initscripts_2.88dsf-41 insserv_1.14.0-5 intltool-debian_0.35.0+20060710.1 libacl1_2.2.52-1 libapt-pkg4.12_0.9.8.2 libasan0_4.8.1-3 libasprintf0c2_0.18.2.1-1 libatk-bridge2.0-0_2.9.3-1 libatk-bridge2.0-dev_2.9.3-1 libatk1.0-0_2.8.0-2 libatk1.0-data_2.8.0-2 libatk1.0-dev_2.8.0-2 libatomic1_4.8.1-3 libatspi2.0-0_2.9.3-1 libattr1_1:2.4.47-1 libavahi-client3_0.6.31-2 libavahi-common-data_0.6.31-2 libavahi-common3_0.6.31-2 libblas3_1.2.20110419-5 libblkid1_2.20.1-5.4 libbz2-1.0_1.0.6-4 libc-bin_2.17-5 libc-dev-bin_2.17-5 libc6_2.17-5 libc6-dev_2.17-5 libcairo-gobject2_1.12.14-5 libcairo-script-interpreter2_1.12.14-5 libcairo2_1.12.14-5 libcairo2-dev_1.12.14-5 libcap2_1:2.22-1.2 libclass-isa-perl_0.36-5 libcloog-isl4_0.18.0-2 libcloog-ppl1_0.16.1-3 libcolord1_0.1.21-4 libcomerr2_1.42.5-1.1 libconfig++-dev_1.4.8-5 libconfig++9_1.4.8-5 libconfig-dev_1.4.8-5 libconfig9_1.4.8-5 libcroco3_0.6.8-2 libcups2_1.6.2-9 libdatrie1_0.2.6-2 libdb5.1_5.1.29-6 libdbus-1-3_1.6.12-1 libdconf1_0.16.0-4 libdpkg-perl_1.16.10 libdrm-dev_2.4.45-3 libdrm-intel1_2.4.45-3 libdrm-nouveau2_2.4.45-3 libdrm-radeon1_2.4.45-3 libdrm2_2.4.45-3 libegl1-mesa_9.1.3-6 libegl1-mesa-dev_9.1.3-6 libegl1-mesa-drivers_9.1.3-6 libelfg0_0.8.13-3 libexpat1_2.1.0-3 libexpat1-dev_2.1.0-3 libffi6_3.0.13-4 libfftw3-bin_3.3.3-5 libfftw3-dev_3.3.3-5 libfftw3-double3_3.3.3-5 libfftw3-long3_3.3.3-5 libfftw3-quad3_3.3.3-5 libfftw3-single3_3.3.3-5 libfile-fcntllock-perl_0.14-2 libfontconfig1_2.9.0-7.1 libfontconfig1-dev_2.9.0-7.1 libfreetype6_2.4.9-1.1 libfreetype6-dev_2.4.9-1.1 libgbm1_9.1.3-6 libgc1c2_1:7.1-9.1 libgcc-4.7-dev_4.7.3-5 libgcc-4.8-dev_4.8.1-3 libgcc1_1:4.8.1-3 libgcrypt11_1.5.2-2 libgdbm3_1.8.3-12 libgdk-pixbuf2.0-0_2.28.2-1 libgdk-pixbuf2.0-common_2.28.2-1 libgdk-pixbuf2.0-dev_2.28.2-1 libgfortran3_4.8.1-3 libgirepository-1.0-1_1.36.0-2+b1 libgl1-mesa-dev_9.1.3-6 libgl1-mesa-glx_9.1.3-6 libglapi-mesa_9.1.3-6 libglib2.0-0_2.36.3-1 libglib2.0-bin_2.36.3-1 libglib2.0-data_2.36.3-1 libglib2.0-dev_2.36.3-1 libgmp10_2:5.1.2+dfsg-1 libgmpxx4ldbl_2:5.1.2+dfsg-1 libgnutls26_2.12.23-5 libgomp1_4.8.1-3 libgpg-error0_1.10-3.1 libgpm2_1.20.4-6 libgraphite2-3_1.2.3-1 libgsl0-dev_1.15+dfsg.2-2 libgsl0ldbl_1.15+dfsg.2-2 libgssapi-krb5-2_1.10.1+dfsg-6 libgtk-3-0_3.8.2-2 libgtk-3-common_3.8.2-2 libgtk-3-dev_3.8.2-2 libharfbuzz-dev_0.9.18-3 libharfbuzz-icu0_0.9.18-3 libharfbuzz0a_0.9.18-3 libice-dev_2:1.0.8-2 libice6_2:1.0.8-2 libicu48_4.8.1.1-12 libisl10_0.11.2-1 libitm1_4.8.1-3 libitpp-dev_4.3.0-2 libitpp8_4.3.0-2 libjasper1_1.900.1-14 libjbig0_2.0-2 libjpeg8_8d-1 libk5crypto3_1.10.1+dfsg-6 libkeyutils1_1.5.5-7 libkms1_2.4.45-3 libkrb5-3_1.10.1+dfsg-6 libkrb5support0_1.10.1+dfsg-6 liblapack3_3.4.2+dfsg-1 liblcms2-2_2.2+git20110628-2.2 libllvm3.2_1:3.2repack-8 liblocale-gettext-perl_1.05-7+b1 liblzma5_5.1.1alpha+20120614-2 liblzo2-2_2.06-1 libmagic1_1:5.14-2 libmount1_2.20.1-5.4 libmpc2_0.9-4 libmpc3_1.0.1-1 libmpfr4_3.1.1-1 libncurses5_5.9+20130608-1 libopenvg1-mesa_9.1.3-6 libp11-kit0_0.18.3-2 libpam-modules_1.1.3-9 libpam-modules-bin_1.1.3-9 libpam-runtime_1.1.3-9 libpam0g_1.1.3-9 libpango-1.0-0_1.32.5-5+b1 libpango1.0-0_1.32.5-5+b1 libpango1.0-dev_1.32.5-5+b1 libpangocairo-1.0-0_1.32.5-5+b1 libpangoft2-1.0-0_1.32.5-5+b1 libpangox-1.0-0_0.0.2-4 libpangoxft-1.0-0_1.32.5-5+b1 libpciaccess0_0.13.1-2 libpcre3_1:8.31-2 libpcre3-dev_1:8.31-2 libpcrecpp0_1:8.31-2 libpipeline1_1.2.4-1 libpixman-1-0_0.26.0-4 libpixman-1-dev_0.26.0-4 libpng12-0_1.2.49-4 libpng12-dev_1.2.49-4 libpopt0_1.16-7 libppl-c4_1:1.0-7 libppl12_1:1.0-7 libpthread-stubs0_0.3-3 libpthread-stubs0-dev_0.3-3 libquadmath0_4.8.1-3 libreadline6_6.2+dfsg-0.1 libsamplerate0_0.1.8-5 libsamplerate0-dev_0.1.8-5 libselinux1_2.1.13-2 libsemanage-common_2.1.10-2 libsemanage1_2.1.10-2 libsepol1_2.1.9-2 libsigsegv2_2.9-4 libslang2_2.2.4-15 libsm-dev_2:1.2.1-2 libsm6_2:1.2.1-2 libss2_1.42.5-1.1 libstdc++-4.8-dev_4.8.1-3 libstdc++6_4.8.1-3 libstdc++6-4.6-dev_4.6.4-4 libswitch-perl_2.16-2 libsystemd-login0_44-12 libtasn1-3_2.14-3 libtext-charwidth-perl_0.04-7+b1 libtext-iconv-perl_1.7-5 libtext-wrapi18n-perl_0.06-7 libthai-data_0.1.19-2 libthai0_0.1.19-2 libtiff4_3.9.6-11 libtimedate-perl_1.2000-1 libtinfo5_5.9+20130608-1 libtool_2.4.2-1.2 libtsan0_4.8.1-3 libudev0_175-7.2 libunique-3.0-0_3.0.2-2 libunique-3.0-dev_3.0.2-2 libunistring0_0.9.3-5 libusb-0.1-4_2:0.1.12-23.2 libustr-1.0-1_1.0.4-3 libuuid1_2.20.1-5.4 libvte-2.90-9_1:0.34.6-1 libvte-2.90-common_1:0.34.6-1 libvte-2.90-dev_1:0.34.6-1 libwayland-client0_1.1.0-2 libwayland-server0_1.1.0-2 libx11-6_2:1.6.0-1 libx11-data_2:1.6.0-1 libx11-dev_2:1.6.0-1 libx11-xcb-dev_2:1.6.0-1 libx11-xcb1_2:1.6.0-1 libxau-dev_1:1.0.8-1 libxau6_1:1.0.8-1 libxcb-dri2-0_1.9.1-3 libxcb-dri2-0-dev_1.9.1-3 libxcb-glx0_1.9.1-3 libxcb-glx0-dev_1.9.1-3 libxcb-render0_1.9.1-3 libxcb-render0-dev_1.9.1-3 libxcb-shape0_1.9.1-3 libxcb-shm0_1.9.1-3 libxcb-shm0-dev_1.9.1-3 libxcb-xfixes0_1.9.1-3 libxcb1_1.9.1-3 libxcb1-dev_1.9.1-3 libxcomposite-dev_1:0.4.4-1 libxcomposite1_1:0.4.4-1 libxcursor-dev_1:1.1.13-1+deb7u1 libxcursor1_1:1.1.13-1+deb7u1 libxdamage-dev_1:1.1.3-2 libxdamage1_1:1.1.3-2 libxdmcp-dev_1:1.1.1-1 libxdmcp6_1:1.1.1-1 libxext-dev_2:1.3.1-2+deb7u1 libxext6_2:1.3.1-2+deb7u1 libxfixes-dev_1:5.0-4+deb7u1 libxfixes3_1:5.0-4+deb7u1 libxft-dev_2.3.1-1 libxft2_2.3.1-1 libxi-dev_2:1.6.1-1+deb7u1 libxi6_2:1.6.1-1+deb7u1 libxinerama-dev_2:1.1.2-1+deb7u1 libxinerama1_2:1.1.2-1+deb7u1 libxml2_2.9.1+dfsg1-2 libxml2-utils_2.9.1+dfsg1-2 libxrandr-dev_2:1.3.2-2+deb7u1 libxrandr2_2:1.3.2-2+deb7u1 libxrender-dev_1:0.9.7-1+deb7u1 libxrender1_1:0.9.7-1+deb7u1 libxxf86vm-dev_1:1.1.2-1+deb7u1 libxxf86vm1_1:1.1.2-1+deb7u1 linux-libc-dev_3.9.6-1 login_1:4.1.5.1-1 lsb-base_4.1+Debian12 m4_1.4.16-5 make_3.81-8.2 man-db_2.6.3-7 mawk_1.3.3-17 mesa-common-dev_9.1.3-6 mount_2.20.1-5.4 multiarch-support_2.17-5 ncurses-base_5.9+20130608-1 ncurses-bin_5.9+20130608-1 passwd_1:4.1.5.1-1 patch_2.6.1-3 perl_5.14.2-21 perl-base_5.14.2-21 perl-modules_5.14.2-21 pkg-config_0.26-1 po-debconf_1.0.16+nmu2 readline-common_6.2+dfsg-0.1 sbuild-build-depends-aghermann-dummy_0.invalid.0 sbuild-build-depends-core-dummy_0.invalid.0 sed_4.2.2-1 sensible-utils_0.0.9 shared-mime-info_1.0-1+b1 sudo_1.8.5p2-1+nmu1 sysv-rc_2.88dsf-41 sysvinit_2.88dsf-41 sysvinit-utils_2.88dsf-41 tar_1.26+dfsg-6 ttf-dejavu-core_2.33+svn2514-3 tzdata_2013c-2 ucf_3.0027 util-linux_2.20.1-5.4 vim_2:7.3.923-2 vim-common_2:7.3.923-2 vim-runtime_2:7.3.923-2 x11-common_1:7.7+3 x11proto-composite-dev_1:0.4.2-2 x11proto-core-dev_7.0.24-1 x11proto-damage-dev_1:1.2.1-2 x11proto-dri2-dev_2.8-2 x11proto-fixes-dev_1:5.0-2 x11proto-gl-dev_1.4.16-2 x11proto-input-dev_2.3-1 x11proto-kb-dev_1.0.6-2 x11proto-randr-dev_1.4.0-2 x11proto-render-dev_2:0.11.1-2 x11proto-xext-dev_7.2.1-1 x11proto-xf86vidmode-dev_2.3.1-2 x11proto-xinerama-dev_1.2.1-2 xorg-sgml-doctools_1:1.10-1 xtrans-dev_1.2.7-1 xz-utils_5.1.1alpha+20120614-2 zlib1g_1:1.2.8.dfsg-1 zlib1g-dev_1:1.2.8.dfsg-1
┌──────────────────────────────────────────────────────────────────────────────┐
│ Build │
└──────────────────────────────────────────────────────────────────────────────┘
Unpack source
─────────────
gpgv: keyblock resource `/sbuild-nonexistent/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Sat May 18 02:47:04 2013 UTC using DSA key ID 75C024C8
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./aghermann_0.9.0.4-1.dsc
dpkg-source: info: extracting aghermann in aghermann-0.9.0.4
dpkg-source: info: unpacking aghermann_0.9.0.4.orig.tar.bz2
dpkg-source: info: unpacking aghermann_0.9.0.4-1.debian.tar.gz
Check disc space
────────────────
Sufficient free space for build
User Environment
────────────────
HOME=/sbuild-nonexistent
LOGNAME=user
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SCHROOT_ALIAS_NAME=unstable-amd64-sbuild
SCHROOT_CHROOT_NAME=unstable-amd64-sbuild
SCHROOT_COMMAND=env
SCHROOT_GID=1000
SCHROOT_GROUP=user
SCHROOT_SESSION_ID=unstable-amd64-sbuild-aeae9be6-1777-4eeb-87f0-55b177119af0
SCHROOT_UID=1000
SCHROOT_USER=user
SHELL=/bin/sh
USER=user
dpkg-buildpackage
─────────────────
dpkg-buildpackage: source package aghermann
dpkg-buildpackage: source version 0.9.0.4-1
dpkg-buildpackage: source changed by Andrei Zavada <johnhommer@gmail.com>
dpkg-source --before-build aghermann-0.9.0.4
dpkg-buildpackage: host architecture amd64
fakeroot debian/rules clean
dh clean --with autoreconf
dh_testdir
dh_auto_clean
dh_autoreconf_clean
dh_clean
dpkg-source -b aghermann-0.9.0.4
dpkg-source: info: using source format `3.0 (quilt)'
dpkg-source: info: building aghermann using existing ./aghermann_0.9.0.4.orig.tar.bz2
dpkg-source: info: building aghermann in aghermann_0.9.0.4-1.debian.tar.gz
dpkg-source: info: building aghermann in aghermann_0.9.0.4-1.dsc
debian/rules build
dh build --with autoreconf
dh_testdir
dh_autoreconf
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: copying file `m4/ltversion.m4'
libtoolize: copying file `m4/lt~obsolete.m4'
configure.ac:12: installing './config.guess'
configure.ac:12: installing './config.sub'
configure.ac:8: installing './install-sh'
src/Makefile.am: installing './depcomp'
dh_auto_configure
configure: WARNING: unrecognized options: --disable-maintainer-mode
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 whether make supports nested variables... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... none
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-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 fgrep... /bin/grep -F
checking how to print strings... printf
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -E
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 for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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... no
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... none
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for g++ option to support OpenMP... -fopenmp
checking whether g++ has all required c++11 features... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for LIBCONFIGXX... yes
checking for SAMPLERATE... yes
checking for GSL... yes
checking for FFTW3... yes
checking for ITPP... no
configure: error: Package requirements (itpp) were not met:
No package 'itpp' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables ITPP_CFLAGS
and ITPP_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
==> config.log <==
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Aghermann configure 0.9.0.4, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure --build=x86_64-linux-gnu --prefix=/usr --includedir=${prefix}/include --mandir=${prefix}/share/man --infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --libdir=${prefix}/lib/x86_64-linux-gnu --libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode --disable-dependency-tracking
## --------- ##
## Platform. ##
## --------- ##
hostname = ip-10-158-73-227
uname -m = x86_64
uname -r = 2.6.32-5-xen-amd64
uname -s = Linux
uname -v = #1 SMP Sun Sep 23 13:49:30 UTC 2012
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2455: checking for a BSD-compatible install
configure:2523: result: /usr/bin/install -c
configure:2534: checking whether build environment is sane
configure:2589: result: yes
configure:2740: checking for a thread-safe mkdir -p
configure:2779: result: /bin/mkdir -p
configure:2786: checking for gawk
configure:2816: result: no
configure:2786: checking for mawk
configure:2802: found /usr/bin/mawk
configure:2813: result: mawk
configure:2824: checking whether make sets $(MAKE)
configure:2846: result: yes
configure:2875: checking whether make supports nested variables
configure:2892: result: yes
configure:2991: checking for style of include used by make
configure:3019: result: GNU
configure:3090: checking for gcc
configure:3106: found /usr/bin/gcc
configure:3117: result: gcc
configure:3346: checking for C compiler version
configure:3355: gcc --version >&5
gcc-4.8.real (Debian 4.8.1-3) 4.8.1
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:3366: $? = 0
configure:3355: gcc -v >&5
Using built-in specs.
COLLECT_GCC=/usr/bin/gcc-4.8.real
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.8.1-3' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --with-arch-32=i586 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.8.1 (Debian 4.8.1-3)
configure:3366: $? = 0
configure:3355: gcc -V >&5
gcc-4.8.real: error: unrecognized command line option '-V'
gcc-4.8.real: fatal error: no input files
compilation terminated.
configure:3366: $? = 4
configure:3355: gcc -qversion >&5
gcc-4.8.real: error: unrecognized command line option '-qversion'
gcc-4.8.real: fatal error: no input files
compilation terminated.
configure:3366: $? = 4
configure:3386: checking whether the C compiler works
configure:3408: gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c >&5
configure:3412: $? = 0
configure:3460: result: yes
configure:3463: checking for C compiler default output file name
configure:3465: result: a.out
configure:3471: checking for suffix of executables
configure:3478: gcc -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c >&5
configure:3482: $? = 0
configure:3504: result:
configure:3526: checking whether we are cross compiling
configure:3534: gcc -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c >&5
configure:3538: $? = 0
configure:3545: ./conftest
configure:3549: $? = 0
configure:3564: result: no
configure:3569: checking for suffix of object files
configure:3591: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:3595: $? = 0
configure:3616: result: o
configure:3620: checking whether we are using the GNU C compiler
configure:3639: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:3639: $? = 0
configure:3648: result: yes
configure:3657: checking whether gcc accepts -g
configure:3677: gcc -c -g -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:3677: $? = 0
configure:3718: result: yes
configure:3735: checking for gcc option to accept ISO C89
configure:3798: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:3798: $? = 0
configure:3811: result: none needed
configure:3833: checking dependency style of gcc
configure:3944: result: none
configure:3963: checking build system type
configure:3977: result: x86_64-pc-linux-gnu
configure:3997: checking host system type
configure:4010: result: x86_64-pc-linux-gnu
configure:4030: checking for a sed that does not truncate output
configure:4094: result: /bin/sed
configure:4112: checking for grep that handles long lines and -e
configure:4170: result: /bin/grep
configure:4175: checking for egrep
configure:4237: result: /bin/grep -E
configure:4242: checking for fgrep
configure:4304: result: /bin/grep -F
configure:4331: checking how to print strings
configure:4358: result: printf
configure:4391: checking for ld used by gcc
configure:4458: result: /usr/bin/ld
configure:4465: checking if the linker (/usr/bin/ld) is GNU ld
configure:4480: result: yes
configure:4565: checking for BSD- or MS-compatible name lister (nm)
configure:4614: result: /usr/bin/nm -B
configure:4744: checking the name lister (/usr/bin/nm -B) interface
configure:4751: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:4754: /usr/bin/nm -B "conftest.o"
configure:4757: output
0000000000000000 B some_variable
configure:4764: result: BSD nm
configure:4767: checking whether ln -s works
configure:4771: result: yes
configure:4779: checking the maximum length of command line arguments
configure:4910: result: 3458764513820540925
configure:4927: checking whether the shell understands some XSI constructs
configure:4937: result: yes
configure:4941: checking whether the shell understands "+="
configure:4947: result: yes
configure:4982: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format
configure:5022: result: func_convert_file_noop
configure:5029: checking how to convert x86_64-pc-linux-gnu file names to toolchain format
configure:5049: result: func_convert_file_noop
configure:5056: checking for /usr/bin/ld option to reload object files
configure:5063: result: -r
configure:5137: checking for objdump
configure:5153: found /usr/bin/objdump
configure:5164: result: objdump
dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr --includedir=${prefix}/include --mandir=${prefix}/share/man --infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --libdir=${prefix}/lib/x86_64-linux-gnu --libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode --disable-dependency-tracking returned exit code 1
configure:5196: checking how to recognize dependent libraries
configure:5394: result: pass_all
configure:5479: checking for dlltool
configure:5509: result: no
configure:5539: checking how to associate runtime and link libraries
configure:5566: result: printf %s\n
configure:5627: checking for ar
configure:5643: found /usr/bin/ar
configure:5654: result: ar
configure:5691: checking for archiver @FILE support
configure:5708: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:5708: $? = 0
configure:5711: ar cru libconftest.a @conftest.lst >&5
configure:5714: $? = 0
configure:5719: ar cru libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
configure:5722: $? = 1
configure:5734: result: @
configure:5792: checking for strip
configure:5808: found /usr/bin/strip
configure:5819: result: strip
configure:5891: checking for ranlib
configure:5907: found /usr/bin/ranlib
configure:5918: result: ranlib
configure:6020: checking command to parse /usr/bin/nm -B output from gcc object
configure:6140: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:6143: $? = 0
configure:6147: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:6150: $? = 0
configure:6216: gcc -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c conftstm.o >&5
configure:6219: $? = 0
configure:6257: result: ok
configure:6294: checking for sysroot
configure:6324: result: no
configure:6401: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:6404: $? = 0
configure:6587: checking for mt
configure:6617: result: no
configure:6637: checking if : is a manifest tool
configure:6643: : '-?'
configure:6651: result: no
configure:7293: checking how to run the C preprocessor
configure:7324: gcc -E -D_FORTIFY_SOURCE=2 conftest.c
configure:7324: $? = 0
configure:7338: gcc -E -D_FORTIFY_SOURCE=2 conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:7338: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Aghermann"
| #define PACKAGE_TARNAME "aghermann"
| #define PACKAGE_VERSION "0.9.0.4"
| #define PACKAGE_STRING "Aghermann 0.9.0.4"
| #define PACKAGE_BUGREPORT "johnhommer@gmail.com"
| #define PACKAGE_URL ""
| #define PACKAGE "aghermann"
| #define VERSION "0.9.0.4"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:7363: result: gcc -E
configure:7383: gcc -E -D_FORTIFY_SOURCE=2 conftest.c
configure:7383: $? = 0
configure:7397: gcc -E -D_FORTIFY_SOURCE=2 conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:7397: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Aghermann"
| #define PACKAGE_TARNAME "aghermann"
| #define PACKAGE_VERSION "0.9.0.4"
| #define PACKAGE_STRING "Aghermann 0.9.0.4"
| #define PACKAGE_BUGREPORT "johnhommer@gmail.com"
| #define PACKAGE_URL ""
| #define PACKAGE "aghermann"
| #define VERSION "0.9.0.4"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:7426: checking for ANSI C header files
configure:7446: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7446: $? = 0
configure:7519: gcc -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c >&5
configure:7519: $? = 0
configure:7519: ./conftest
configure:7519: $? = 0
configure:7530: result: yes
configure:7543: checking for sys/types.h
configure:7543: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7543: $? = 0
configure:7543: result: yes
configure:7543: checking for sys/stat.h
configure:7543: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7543: $? = 0
configure:7543: result: yes
configure:7543: checking for stdlib.h
configure:7543: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7543: $? = 0
configure:7543: result: yes
configure:7543: checking for string.h
configure:7543: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7543: $? = 0
configure:7543: result: yes
configure:7543: checking for memory.h
configure:7543: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7543: $? = 0
configure:7543: result: yes
configure:7543: checking for strings.h
configure:7543: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7543: $? = 0
configure:7543: result: yes
configure:7543: checking for inttypes.h
configure:7543: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7543: $? = 0
configure:7543: result: yes
configure:7543: checking for stdint.h
configure:7543: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7543: $? = 0
configure:7543: result: yes
configure:7543: checking for unistd.h
configure:7543: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7543: $? = 0
configure:7543: result: yes
configure:7557: checking for dlfcn.h
configure:7557: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7557: $? = 0
configure:7557: result: yes
configure:7733: checking for objdir
configure:7748: result: .libs
configure:8019: checking if gcc supports -fno-rtti -fno-exceptions
configure:8037: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default]
configure:8041: $? = 0
configure:8054: result: no
configure:8381: checking for gcc option to produce PIC
configure:8388: result: -fPIC -DPIC
configure:8396: checking if gcc PIC flag -fPIC -DPIC works
configure:8414: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -fPIC -DPIC -DPIC conftest.c >&5
configure:8418: $? = 0
configure:8431: result: yes
configure:8460: checking if gcc static flag -static works
configure:8488: result: yes
configure:8503: checking if gcc supports -c -o file.o
configure:8524: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -o out/conftest2.o conftest.c >&5
configure:8528: $? = 0
configure:8550: result: yes
configure:8558: checking if gcc supports -c -o file.o
configure:8605: result: yes
configure:8638: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:9795: result: yes
configure:9832: checking whether -lc should be explicitly linked in
configure:9840: gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:9843: $? = 0
configure:9858: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
configure:9861: $? = 0
configure:9875: result: no
configure:10035: checking dynamic linker characteristics
configure:10535: gcc -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-rpath -Wl,/foo conftest.c >&5
configure:10535: $? = 0
configure:10769: result: GNU/Linux ld.so
configure:10876: checking how to hardcode library paths into programs
configure:10901: result: immediate
configure:11441: checking whether stripping libraries is possible
configure:11446: result: yes
configure:11481: checking if libtool supports shared libraries
configure:11483: result: yes
configure:11486: checking whether to build shared libraries
configure:11507: result: yes
configure:11510: checking whether to build static libraries
configure:11514: result: no
configure:11664: checking for C++ compiler version
configure:11673: g++ --version >&5
g++-4.8.real (Debian 4.8.1-3) 4.8.1
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:11684: $? = 0
configure:11673: g++ -v >&5
Using built-in specs.
COLLECT_GCC=/usr/bin/g++-4.8.real
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.8.1-3' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --with-arch-32=i586 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.8.1 (Debian 4.8.1-3)
configure:11684: $? = 0
configure:11673: g++ -V >&5
g++-4.8.real: error: unrecognized command line option '-V'
g++-4.8.real: fatal error: no input files
compilation terminated.
configure:11684: $? = 4
configure:11673: g++ -qversion >&5
g++-4.8.real: error: unrecognized command line option '-qversion'
g++-4.8.real: fatal error: no input files
compilation terminated.
configure:11684: $? = 4
configure:11688: checking whether we are using the GNU C++ compiler
configure:11707: g++ -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.cpp >&5
configure:11707: $? = 0
configure:11716: result: yes
configure:11725: checking whether g++ accepts -g
configure:11745: g++ -c -g -D_FORTIFY_SOURCE=2 conftest.cpp >&5
configure:11745: $? = 0
configure:11786: result: yes
configure:11811: checking dependency style of g++
configure:11922: result: none
configure:11955: checking how to run the C++ preprocessor
configure:11982: g++ -E -D_FORTIFY_SOURCE=2 conftest.cpp
configure:11982: $? = 0
configure:11996: g++ -E -D_FORTIFY_SOURCE=2 conftest.cpp
conftest.cpp:23:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:11996: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Aghermann"
| #define PACKAGE_TARNAME "aghermann"
| #define PACKAGE_VERSION "0.9.0.4"
| #define PACKAGE_STRING "Aghermann 0.9.0.4"
| #define PACKAGE_BUGREPORT "johnhommer@gmail.com"
| #define PACKAGE_URL ""
| #define PACKAGE "aghermann"
| #define VERSION "0.9.0.4"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:12021: result: g++ -E
configure:12041: g++ -E -D_FORTIFY_SOURCE=2 conftest.cpp
configure:12041: $? = 0
configure:12055: g++ -E -D_FORTIFY_SOURCE=2 conftest.cpp
conftest.cpp:23:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:12055: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Aghermann"
| #define PACKAGE_TARNAME "aghermann"
| #define PACKAGE_VERSION "0.9.0.4"
| #define PACKAGE_STRING "Aghermann 0.9.0.4"
| #define PACKAGE_BUGREPORT "johnhommer@gmail.com"
| #define PACKAGE_URL ""
| #define PACKAGE "aghermann"
| #define VERSION "0.9.0.4"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:12224: checking for ld used by g++
configure:12291: result: /usr/bin/ld -m elf_x86_64
configure:12298: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
configure:12313: result: yes
configure:12368: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:13370: result: yes
configure:13406: g++ -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 conftest.cpp >&5
configure:13409: $? = 0
configure:13929: checking for g++ option to produce PIC
configure:13936: result: -fPIC -DPIC
configure:13944: checking if g++ PIC flag -fPIC -DPIC works
configure:13962: g++ -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -fPIC -DPIC -DPIC conftest.cpp >&5
configure:13966: $? = 0
configure:13979: result: yes
configure:14002: checking if g++ static flag -static works
configure:14030: result: yes
configure:14042: checking if g++ supports -c -o file.o
configure:14063: g++ -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -o out/conftest2.o conftest.cpp >&5
configure:14067: $? = 0
configure:14089: result: yes
configure:14094: checking if g++ supports -c -o file.o
configure:14141: result: yes
configure:14171: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:14210: result: yes
configure:14351: checking dynamic linker characteristics
configure:15019: result: GNU/Linux ld.so
configure:15072: checking how to hardcode library paths into programs
configure:15097: result: immediate
configure:15151: checking for g++ option to support OpenMP
configure:15166: g++ -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.cpp >&5
conftest.cpp:25:2: error: 'choke' does not name a type
choke me
^
In file included from conftest.cpp:27:0:
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:38:3: error: 'omp_lock_t' does not name a type
} omp_lock_t;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:76:28: error: variable or field 'omp_init_lock' declared void
extern void omp_init_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:76:28: error: 'omp_lock_t' was not declared in this scope
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:76:40: error: expected primary-expression before ')' token
extern void omp_init_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:77:31: error: variable or field 'omp_destroy_lock' declared void
extern void omp_destroy_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:77:31: error: 'omp_lock_t' was not declared in this scope
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:77:43: error: expected primary-expression before ')' token
extern void omp_destroy_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:78:27: error: variable or field 'omp_set_lock' declared void
extern void omp_set_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:78:27: error: 'omp_lock_t' was not declared in this scope
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:78:39: error: expected primary-expression before ')' token
extern void omp_set_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:79:29: error: variable or field 'omp_unset_lock' declared void
extern void omp_unset_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:79:29: error: 'omp_lock_t' was not declared in this scope
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:79:41: error: expected primary-expression before ')' token
extern void omp_unset_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:80:27: error: 'omp_lock_t' was not declared in this scope
extern int omp_test_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:80:39: error: expected primary-expression before ')' token
extern int omp_test_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/omp.h:80:41: error: expected ',' or ';' before 'throw'
extern int omp_test_lock (omp_lock_t *) __GOMP_NOTHROW;
^
configure:15166: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Aghermann"
| #define PACKAGE_TARNAME "aghermann"
| #define PACKAGE_VERSION "0.9.0.4"
| #define PACKAGE_STRING "Aghermann 0.9.0.4"
| #define PACKAGE_BUGREPORT "johnhommer@gmail.com"
| #define PACKAGE_URL ""
| #define PACKAGE "aghermann"
| #define VERSION "0.9.0.4"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
|
| #ifndef _OPENMP
| choke me
| #endif
| #include <omp.h>
| int main () { return omp_get_num_threads (); }
|
configure:15184: g++ -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -fopenmp -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.cpp >&5
configure:15184: $? = 0
configure:15198: result: -fopenmp
configure:15213: checking whether g++ has all required c++11 features
configure:15247: g++ -std=c++0x -o conftest -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.cpp >&5
configure:15247: $? = 0
configure:15247: ./conftest
configure:15247: $? = 0
configure:15259: result: yes
configure:15320: checking for pkg-config
configure:15338: found /usr/bin/pkg-config
configure:15350: result: /usr/bin/pkg-config
configure:15375: checking pkg-config is at least version 0.9.0
configure:15378: result: yes
configure:15388: checking for LIBCONFIGXX
configure:15395: $PKG_CONFIG --exists --print-errors "libconfig++"
configure:15398: $? = 0
configure:15412: $PKG_CONFIG --exists --print-errors "libconfig++"
configure:15415: $? = 0
configure:15473: result: yes
configure:15479: checking for SAMPLERATE
configure:15486: $PKG_CONFIG --exists --print-errors "samplerate >= 0.1.7"
configure:15489: $? = 0
configure:15503: $PKG_CONFIG --exists --print-errors "samplerate >= 0.1.7"
configure:15506: $? = 0
configure:15564: result: yes
configure:15570: checking for GSL
configure:15577: $PKG_CONFIG --exists --print-errors "gsl"
configure:15580: $? = 0
configure:15594: $PKG_CONFIG --exists --print-errors "gsl"
configure:15597: $? = 0
configure:15655: result: yes
configure:15661: checking for FFTW3
configure:15668: $PKG_CONFIG --exists --print-errors "fftw3"
make: *** [build] Error 255
dpkg-buildpackage: error: debian/rules build gave error exit status 2
configure:15671: $? = 0
configure:15685: $PKG_CONFIG --exists --print-errors "fftw3"
configure:15688: $? = 0
configure:15746: result: yes
configure:15752: checking for ITPP
configure:15759: $PKG_CONFIG --exists --print-errors "itpp"
Package itpp was not found in the pkg-config search path.
Perhaps you should add the directory containing `itpp.pc'
to the PKG_CONFIG_PATH environment variable
No package 'itpp' found
configure:15762: $? = 1
configure:15776: $PKG_CONFIG --exists --print-errors "itpp"
Package itpp was not found in the pkg-config search path.
Perhaps you should add the directory containing `itpp.pc'
to the PKG_CONFIG_PATH environment variable
No package 'itpp' found
configure:15779: $? = 1
configure:15793: result: no
No package 'itpp' found
configure:15809: error: Package requirements (itpp) were not met:
No package 'itpp' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables ITPP_CFLAGS
and ITPP_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_cxx_cpp11_features=yes
ac_cv_env_CAIRO_CFLAGS_set=
ac_cv_env_CAIRO_CFLAGS_value=
ac_cv_env_CAIRO_LIBS_set=
ac_cv_env_CAIRO_LIBS_value=
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security'
ac_cv_env_CPPFLAGS_set=set
ac_cv_env_CPPFLAGS_value=-D_FORTIFY_SOURCE=2
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=set
ac_cv_env_CXXFLAGS_value='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security'
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_FFTW3_CFLAGS_set=
ac_cv_env_FFTW3_CFLAGS_value=
ac_cv_env_FFTW3_LIBS_set=
ac_cv_env_FFTW3_LIBS_value=
ac_cv_env_GSL_CFLAGS_set=
ac_cv_env_GSL_CFLAGS_value=
ac_cv_env_GSL_LIBS_set=
ac_cv_env_GSL_LIBS_value=
ac_cv_env_GTK_CFLAGS_set=
ac_cv_env_GTK_CFLAGS_value=
ac_cv_env_GTK_LIBS_set=
ac_cv_env_GTK_LIBS_value=
ac_cv_env_ITPP_CFLAGS_set=
ac_cv_env_ITPP_CFLAGS_value=
ac_cv_env_ITPP_LIBS_set=
ac_cv_env_ITPP_LIBS_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value=-Wl,-z,relro
ac_cv_env_LIBCONFIGXX_CFLAGS_set=
ac_cv_env_LIBCONFIGXX_CFLAGS_value=
ac_cv_env_LIBCONFIGXX_LIBS_set=
ac_cv_env_LIBCONFIGXX_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_SAMPLERATE_CFLAGS_set=
ac_cv_env_SAMPLERATE_CFLAGS_value=
ac_cv_env_SAMPLERATE_LIBS_set=
ac_cv_env_SAMPLERATE_LIBS_value=
ac_cv_env_UNIQUE_CFLAGS_set=
ac_cv_env_UNIQUE_CFLAGS_value=
ac_cv_env_UNIQUE_LIBS_set=
ac_cv_env_UNIQUE_LIBS_value=
ac_cv_env_VTE_CFLAGS_set=
ac_cv_env_VTE_CFLAGS_value=
ac_cv_env_VTE_LIBS_set=
ac_cv_env_VTE_LIBS_value=
ac_cv_env_build_alias_set=set
ac_cv_env_build_alias_value=x86_64-linux-gnu
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-pc-linux-gnu
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/bin/sed
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=mawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_cxx_openmp=-fopenmp
ac_cv_prog_make_make_set=yes
am_cv_CC_dependencies_compiler_type=none
am_cv_CXX_dependencies_compiler_type=none
am_cv_make_support_nested_variables=yes
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64'
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_pic_works_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_compiler_static_works_CXX=yes
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=3458764513820540925
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
pkg_cv_FFTW3_CFLAGS=' '
pkg_cv_FFTW3_LIBS='-lfftw3 '
pkg_cv_GSL_CFLAGS=' '
pkg_cv_GSL_LIBS='-lgsl -lgslcblas -lm '
pkg_cv_LIBCONFIGXX_CFLAGS=' '
pkg_cv_LIBCONFIGXX_LIBS='-lconfig++ '
pkg_cv_SAMPLERATE_CFLAGS=' '
pkg_cv_SAMPLERATE_LIBS='-lsamplerate '
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /«PKGBUILDDIR»/missing aclocal-1.13'
AMDEPBACKSLASH=''
AMDEP_FALSE=''
AMDEP_TRUE='#'
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='1'
AM_V='$(V)'
AR='ar'
AUTOCONF='${SHELL} /«PKGBUILDDIR»/missing autoconf'
AUTOHEADER='${SHELL} /«PKGBUILDDIR»/missing autoheader'
AUTOMAKE='${SHELL} /«PKGBUILDDIR»/missing automake-1.13'
AWK='mawk'
CAIRO_CFLAGS=''
CAIRO_LIBS=''
CC='gcc'
CCDEPMODE='depmode=none'
CFLAGS='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security'
CPP='gcc -E'
CPPFLAGS='-D_FORTIFY_SOURCE=2'
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=none'
CXXFLAGS='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security'
CYGPATH_W='echo'
DEFS=''
DEPDIR='.deps'
DLLTOOL='false'
DO_EMACS_ORGMODE_CONV_FALSE=''
DO_EMACS_ORGMODE_CONV_TRUE=''
DO_PCH_FALSE=''
DO_PCH_TRUE=''
DO_UPDATE_DESKTOP_DB_FALSE=''
DO_UPDATE_DESKTOP_DB_TRUE=''
DO_UPDATE_MIME_DB_FALSE=''
DO_UPDATE_MIME_DB_TRUE=''
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
FFTW3_CFLAGS=' '
FFTW3_LIBS='-lfftw3 '
FGREP='/bin/grep -F'
GREP='/bin/grep'
GSL_CFLAGS=' '
GSL_LIBS='-lgsl -lgslcblas -lm '
GTK_CFLAGS=''
GTK_LIBS=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
ITPP_CFLAGS=''
ITPP_LIBS=''
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS='-Wl,-z,relro'
LIBCONFIGXX_CFLAGS=' '
LIBCONFIGXX_LIBS='-lconfig++ '
LIBFFTW3_LDADD=''
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /«PKGBUILDDIR»/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
NM='/usr/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OPENMP_CXXFLAGS='-fopenmp'
ORGMODE_EMACS=''
OTOOL64=''
OTOOL=''
PACKAGE='aghermann'
PACKAGE_BUGREPORT='johnhommer@gmail.com'
PACKAGE_NAME='Aghermann'
PACKAGE_STRING='Aghermann 0.9.0.4'
PACKAGE_TARNAME='aghermann'
PACKAGE_URL=''
PACKAGE_VERSION='0.9.0.4'
PATH_SEPARATOR=':'
PKGDATADIR=''
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
RANLIB='ranlib'
SAMPLERATE_CFLAGS=' '
SAMPLERATE_LIBS='-lsamplerate '
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/bash'
STRIP='strip'
UNIQUE_CFLAGS=''
UNIQUE_LIBS=''
UPDATE_DESKTOP_DATABASE=''
UPDATE_MIME_DATABASE=''
VERSION='0.9.0.4'
VTE_CFLAGS=''
VTE_LIBS=''
XDGDATADIR=''
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX=''
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE=''
am__fastdepCC_FALSE=''
am__fastdepCC_TRUE='#'
am__fastdepCXX_FALSE=''
am__fastdepCXX_TRUE='#'
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep=''
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-pc-linux-gnu'
build_alias='x86_64-linux-gnu'
build_cpu='x86_64'
build_date=''
build_datetime=''
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='NONE'
fftw3_ldadd=''
glib_compile_resources=''
host='x86_64-pc-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${prefix}/share/info'
install_sh='${SHELL} /«PKGBUILDDIR»/install-sh'
libdir='${prefix}/lib/x86_64-linux-gnu'
libexecdir='${prefix}/lib/x86_64-linux-gnu'
localedir='${datarootdir}/locale'
localstatedir='/var'
mandir='${prefix}/share/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='/etc'
target_alias=''
user=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME "Aghermann"
#define PACKAGE_TARNAME "aghermann"
#define PACKAGE_VERSION "0.9.0.4"
#define PACKAGE_STRING "Aghermann 0.9.0.4"
#define PACKAGE_BUGREPORT "johnhommer@gmail.com"
#define PACKAGE_URL ""
#define PACKAGE "aghermann"
#define VERSION "0.9.0.4"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
configure: exit 1
────────────────────────────────────────────────────────────────────────────────
Build finished at 20130621-0603
Finished
────────
E: Build failure (dpkg-buildpackage died)
┌──────────────────────────────────────────────────────────────────────────────┐
│ Cleanup │
└──────────────────────────────────────────────────────────────────────────────┘
Purging /«BUILDDIR»
Not cleaning session: cloned chroot in use
┌──────────────────────────────────────────────────────────────────────────────┐
│ Summary │
└──────────────────────────────────────────────────────────────────────────────┘
Build Architecture: amd64
Build-Space: 6652
Build-Time: 41
Distribution: unstable
Fail-Stage: build
Host Architecture: amd64
Install-Time: 35
Job: aghermann_0.9.0.4-1
Machine Architecture: amd64
Package: aghermann
Package-Time: 99
Source-Version: 0.9.0.4-1
Space: 6652
Status: attempted
Version: 0.9.0.4-1
────────────────────────────────────────────────────────────────────────────────
Finished at 20130621-0603
Build needed 00:01:39, 6652k disc space
DC-Status: Failed 100.559961786s
DC-Time-Estimation: 100.559961786 versus expected 287 (r/m: 1.8540185865499828 ; m: 100.559961786)
|