File: xine-ui_0.99.6-1_lsid64.buildlog

package info (click to toggle)
collab-qa-tools 0.2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 16,668 kB
  • ctags: 247
  • sloc: ruby: 3,432; makefile: 2
file content (3001 lines) | stat: -rw-r--r-- 243,400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
DC-Build-Header: xine-ui 0.99.6-1 / Tue Aug 23 01:08:11 +0200 2011
sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-77.nancy.grid5000.fr

╔══════════════════════════════════════════════════════════════════════════════╗
║ xine-ui 0.99.6-1 (amd64)                                   23 Aug 2011 01:08 ║
╚══════════════════════════════════════════════════════════════════════════════╝

Package: xine-ui
Version: 0.99.6-1
Source Version: 0.99.6-1
Distribution: lsid64
Architecture: amd64


┌──────────────────────────────────────────────────────────────────────────────┐
│ Update chroot                                                                │
└──────────────────────────────────────────────────────────────────────────────┘

Ign http://localhost sid InRelease
Hit http://localhost sid Release.gpg
Hit http://localhost sid Release
Ign http://localhost sid/main Sources/DiffIndex
Ign http://localhost sid/contrib Sources/DiffIndex
Ign http://localhost sid/non-free Sources/DiffIndex
Ign http://localhost sid/main amd64 Packages/DiffIndex
Ign http://localhost sid/contrib amd64 Packages/DiffIndex
Ign http://localhost sid/non-free amd64 Packages/DiffIndex
Ign http://localhost sid/contrib TranslationIndex
Ign http://localhost sid/main TranslationIndex
Ign http://localhost sid/non-free TranslationIndex
Hit http://localhost sid/main Sources
Hit http://localhost sid/contrib Sources
Hit http://localhost sid/non-free Sources
Hit http://localhost sid/main amd64 Packages
Hit http://localhost sid/contrib amd64 Packages
Hit http://localhost sid/non-free amd64 Packages
Ign http://localhost sid/contrib Translation-en
Ign http://localhost sid/main Translation-en
Ign http://localhost sid/non-free Translation-en
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files                                                           │
└──────────────────────────────────────────────────────────────────────────────┘


Check APT
─────────

Checking available source versions...

Download source files with APT
──────────────────────────────

Reading package lists...
Building dependency tree...
Reading state information...
NOTICE: 'xine-ui' packaging is maintained in the 'Hg' version control system at:
http://hg.debian.org/hg/xine-lib/pkg/xine-ui-0.99.5-deb
Need to get 2577 kB of source archives.
Get:1 http://localhost/debian/ sid/main xine-ui 0.99.6-1 (dsc) [1704 B]
Get:2 http://localhost/debian/ sid/main xine-ui 0.99.6-1 (tar) [2181 kB]
Get:3 http://localhost/debian/ sid/main xine-ui 0.99.6-1 (diff) [395 kB]
Fetched 2577 kB in 0s (10.2 MB/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 `/build/xine-ui-c9qcR8/resolver-cR4fhu/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
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/700 B of archives.
After this operation, 0 B of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  sbuild-build-depends-core-dummy
Authentication warning overridden.
Selecting previously deselected package sbuild-build-depends-core-dummy.
(Reading database ... 10769 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) ...
Cannot open /var/lib/schroot/mount/lsid64-31d5d243-998e-4024-9ae6-c595455ea678/etc/lsb-release: No such file or directory
Merged Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>> 5.0.0), libxine-dev (>= 1.1.0), libpng-dev, libx11-dev, libxext-dev, libxft-dev, libxinerama-dev, libxt-dev, libxtst-dev, libxv-dev, libxxf86vm-dev, libaa1-dev, libgpmg1-dev (>> 1.19.6), liblircclient-dev, libcurl3-gnutls-dev, libfreetype6-dev, libreadline-dev, libcaca-dev
Merged Build-Conflicts: libcurl3-openssl-dev
Filtered Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>> 5.0.0), libxine-dev (>= 1.1.0), libpng-dev, libx11-dev, libxext-dev, libxft-dev, libxinerama-dev, libxt-dev, libxtst-dev, libxv-dev, libxxf86vm-dev, libaa1-dev, libgpmg1-dev (>> 1.19.6), liblircclient-dev, libcurl3-gnutls-dev, libfreetype6-dev, libreadline-dev, libcaca-dev
Filtered Build-Conflicts: libcurl3-openssl-dev
dpkg-deb: building package `sbuild-build-depends-xine-ui-dummy' in `/build/xine-ui-c9qcR8/resolver-d1gmOu/apt_archive/sbuild-build-depends-xine-ui-dummy.deb'.
OK
Reading package lists...

┌──────────────────────────────────────────────────────────────────────────────┐
│ Install xine-ui build dependencies (apt-based resolver)                      │
└──────────────────────────────────────────────────────────────────────────────┘

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  bsdmainutils ca-certificates comerr-dev debhelper file fontconfig-config
  gettext gettext-base groff-base html2text intltool-debian krb5-multidev
  libaa1 libaa1-dev libcaca-dev libcaca0 libcroco3 libcurl3-gnutls
  libcurl4-gnutls-dev libexpat1 libexpat1-dev libfontconfig1
  libfontconfig1-dev libfreetype6 libfreetype6-dev libgcrypt11 libgcrypt11-dev
  libglib2.0-0 libgnutls-dev libgnutls-openssl27 libgnutls26 libgnutlsxx27
  libgpg-error-dev libgpg-error0 libgpm-dev libgpm2 libgpmg1-dev
  libgssapi-krb5-2 libgssrpc4 libice-dev libice6 libidn11 libidn11-dev
  libk5crypto3 libkadm5clnt-mit8 libkadm5srv-mit8 libkdb5-5 libkeyutils1
  libkrb5-3 libkrb5-dev libkrb5support0 libldap-2.4-2 libldap2-dev
  liblircclient-dev liblircclient0 libmagic1 libncurses5-dev libpcre3
  libpipeline1 libpng12-0 libpng12-dev libpopt0 libpthread-stubs0
  libpthread-stubs0-dev libreadline-dev libreadline6-dev librtmp0 libsasl2-2
  libslang2-dev libsm-dev libsm6 libssl1.0.0 libtasn1-3 libtasn1-3-dev
  libunistring0 libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxcb1
  libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxft-dev libxft2
  libxi-dev libxi6 libxine-dev libxine1-bin libxinerama-dev libxinerama1
  libxml2 libxrender-dev libxrender1 libxt-dev libxt6 libxtst-dev libxtst6
  libxv-dev libxv1 libxxf86vm-dev libxxf86vm1 man-db openssl pkg-config
  po-debconf ttf-dejavu-core ucf x11-common x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev x11proto-record-dev x11proto-render-dev
  x11proto-video-dev x11proto-xext-dev x11proto-xf86vidmode-dev
  x11proto-xinerama-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  wamerican wordlist whois vacation doc-base dh-make gettext-doc groff
  krb5-doc libcurl3-dbg rng-tools libgcrypt11-doc gnutls-doc gnutls-bin
  guile-gnutls gpm krb5-user lirc ncurses-doc www-browser libmail-box-perl
Recommended packages:
  curl wget lynx-cur autopoint libglib2.0-data shared-mime-info
  libsasl2-modules xml-core libmail-sendmail-perl
The following NEW packages will be installed:
  bsdmainutils ca-certificates comerr-dev debhelper file fontconfig-config
  gettext gettext-base groff-base html2text intltool-debian krb5-multidev
  libaa1 libaa1-dev libcaca-dev libcaca0 libcroco3 libcurl3-gnutls
  libcurl4-gnutls-dev libexpat1 libexpat1-dev libfontconfig1
  libfontconfig1-dev libfreetype6 libfreetype6-dev libgcrypt11 libgcrypt11-dev
  libglib2.0-0 libgnutls-dev libgnutls-openssl27 libgnutls26 libgnutlsxx27
  libgpg-error-dev libgpg-error0 libgpm-dev libgpm2 libgpmg1-dev
  libgssapi-krb5-2 libgssrpc4 libice-dev libice6 libidn11 libidn11-dev
  libk5crypto3 libkadm5clnt-mit8 libkadm5srv-mit8 libkdb5-5 libkeyutils1
  libkrb5-3 libkrb5-dev libkrb5support0 libldap-2.4-2 libldap2-dev
  liblircclient-dev liblircclient0 libmagic1 libncurses5-dev libpcre3
  libpipeline1 libpng12-0 libpng12-dev libpopt0 libpthread-stubs0
  libpthread-stubs0-dev libreadline-dev libreadline6-dev librtmp0 libsasl2-2
  libslang2-dev libsm-dev libsm6 libssl1.0.0 libtasn1-3 libtasn1-3-dev
  libunistring0 libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxcb1
  libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxft-dev libxft2
  libxi-dev libxi6 libxine-dev libxine1-bin libxinerama-dev libxinerama1
  libxml2 libxrender-dev libxrender1 libxt-dev libxt6 libxtst-dev libxtst6
  libxv-dev libxv1 libxxf86vm-dev libxxf86vm1 man-db openssl pkg-config
  po-debconf sbuild-build-depends-xine-ui-dummy ttf-dejavu-core ucf x11-common
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev x11proto-record-dev
  x11proto-render-dev x11proto-video-dev x11proto-xext-dev
  x11proto-xf86vidmode-dev x11proto-xinerama-dev xorg-sgml-doctools xtrans-dev
  zlib1g-dev
0 upgraded, 125 newly installed, 0 to remove and 0 not upgraded.
Need to get 38.2 MB/38.2 MB of archives.
After this operation, 112 MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  libpipeline1 libgpg-error0 libgcrypt11 libtasn1-3 libgnutls26
  libgnutls-openssl27 libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
  libgssapi-krb5-2 libgssrpc4 libidn11 libkadm5clnt-mit8 libkdb5-5
  libkadm5srv-mit8 libsasl2-2 libldap-2.4-2 libpcre3 librtmp0 libssl1.0.0
  openssl ca-certificates libcurl3-gnutls libexpat1 libfreetype6 ucf
  ttf-dejavu-core fontconfig-config libfontconfig1 x11-common libice6
  libpng12-0 libsm6 libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxext6
  libxrender1 libxft2 libxi6 libxinerama1 libxt6 libxv1 libxxf86vm1
  libgnutlsxx27 bsdmainutils groff-base libpopt0 man-db libmagic1 file
  gettext-base libgpm2 libxml2 html2text libglib2.0-0 libcroco3 libunistring0
  gettext intltool-debian po-debconf debhelper comerr-dev krb5-multidev libaa1
  xorg-sgml-doctools x11proto-core-dev libxau-dev libxdmcp-dev
  x11proto-input-dev x11proto-kb-dev xtrans-dev libpthread-stubs0
  libpthread-stubs0-dev libxcb1-dev libx11-dev zlib1g-dev libpng12-dev
  libslang2-dev libncurses5-dev libaa1-dev libcaca0 libcaca-dev
  libgpg-error-dev libgcrypt11-dev libtasn1-3-dev libgnutls-dev pkg-config
  libidn11-dev libkrb5-dev libldap2-dev libcurl4-gnutls-dev libexpat1-dev
  libfreetype6-dev libfontconfig1-dev libgpm-dev libgpmg1-dev libice-dev
  liblircclient0 libreadline6-dev libreadline-dev libsm-dev x11proto-xext-dev
  libxext-dev x11proto-render-dev libxrender-dev libxft-dev libxi-dev
  libxine1-bin libxine-dev x11proto-xinerama-dev libxinerama-dev libxt-dev
  libxtst6 x11proto-record-dev libxtst-dev x11proto-video-dev libxv-dev
  x11proto-xf86vidmode-dev libxxf86vm-dev liblircclient-dev
  sbuild-build-depends-xine-ui-dummy
Authentication warning overridden.
Get:1 http://localhost/debian/ sid/main libpipeline1 amd64 1.2.0-3 [37.9 kB]
Get:2 http://localhost/debian/ sid/main libgpg-error0 amd64 1.10-0.3 [68.7 kB]
Get:3 http://localhost/debian/ sid/main libgcrypt11 amd64 1.4.6-9 [285 kB]
Get:4 http://localhost/debian/ sid/main libtasn1-3 amd64 2.9-4 [63.9 kB]
Get:5 http://localhost/debian/ sid/main libgnutls26 amd64 2.12.7-6 [785 kB]
Get:6 http://localhost/debian/ sid/main libgnutls-openssl27 amd64 2.12.7-6 [390 kB]
Get:7 http://localhost/debian/ sid/main libkeyutils1 amd64 1.5.2-1 [8772 B]
Get:8 http://localhost/debian/ sid/main libkrb5support0 amd64 1.9.1+dfsg-2 [47.1 kB]
Get:9 http://localhost/debian/ sid/main libk5crypto3 amd64 1.9.1+dfsg-2 [111 kB]
Get:10 http://localhost/debian/ sid/main libkrb5-3 amd64 1.9.1+dfsg-2 [381 kB]
Get:11 http://localhost/debian/ sid/main libgssapi-krb5-2 amd64 1.9.1+dfsg-2 [147 kB]
Get:12 http://localhost/debian/ sid/main libgssrpc4 amd64 1.9.1+dfsg-2 [85.4 kB]
Get:13 http://localhost/debian/ sid/main libidn11 amd64 1.22-3 [165 kB]
Get:14 http://localhost/debian/ sid/main libkadm5clnt-mit8 amd64 1.9.1+dfsg-2 [64.9 kB]
Get:15 http://localhost/debian/ sid/main libkdb5-5 amd64 1.9.1+dfsg-2 [63.0 kB]
Get:16 http://localhost/debian/ sid/main libkadm5srv-mit8 amd64 1.9.1+dfsg-2 [81.1 kB]
Get:17 http://localhost/debian/ sid/main libsasl2-2 amd64 2.1.24~rc1.dfsg1+cvs2011-05-23-6 [119 kB]
Get:18 http://localhost/debian/ sid/main libldap-2.4-2 amd64 2.4.25-3 [235 kB]
Get:19 http://localhost/debian/ sid/main libpcre3 amd64 8.12-4 [225 kB]
Get:20 http://localhost/debian/ sid/main librtmp0 amd64 2.4~20110711.gitc28f1bab-1 [61.4 kB]
Get:21 http://localhost/debian/ sid/main libssl1.0.0 amd64 1.0.0d-3 [1141 kB]
Get:22 http://localhost/debian/ sid/main openssl amd64 1.0.0d-3 [678 kB]
Get:23 http://localhost/debian/ sid/main ca-certificates all 20110502 [176 kB]
Get:24 http://localhost/debian/ sid/main libcurl3-gnutls amd64 7.21.7-1 [297 kB]
Get:25 http://localhost/debian/ sid/main libexpat1 amd64 2.0.1-7 [137 kB]
Get:26 http://localhost/debian/ sid/main libfreetype6 amd64 2.4.6-2 [435 kB]
Get:27 http://localhost/debian/ sid/main ucf all 3.0025+nmu2 [70.6 kB]
Get:28 http://localhost/debian/ sid/main ttf-dejavu-core all 2.33-2 [1552 kB]
Get:29 http://localhost/debian/ sid/main fontconfig-config all 2.8.0-3 [221 kB]
Get:30 http://localhost/debian/ sid/main libfontconfig1 amd64 2.8.0-3 [282 kB]
Get:31 http://localhost/debian/ sid/main x11-common all 1:7.6+8 [276 kB]
Get:32 http://localhost/debian/ sid/main libice6 amd64 2:1.0.7-2 [56.5 kB]
Get:33 http://localhost/debian/ sid/main libpng12-0 amd64 1.2.46-3 [188 kB]
Get:34 http://localhost/debian/ sid/main libsm6 amd64 2:1.2.0-2 [29.8 kB]
Get:35 http://localhost/debian/ sid/main libxau6 amd64 1:1.0.6-3 [17.0 kB]
Get:36 http://localhost/debian/ sid/main libxdmcp6 amd64 1:1.1.0-3 [22.9 kB]
Get:37 http://localhost/debian/ sid/main libxcb1 amd64 1.7-3 [45.4 kB]
Get:38 http://localhost/debian/ sid/main libx11-data all 2:1.4.4-1 [183 kB]
Get:39 http://localhost/debian/ sid/main libx11-6 amd64 2:1.4.4-1 [889 kB]
Get:40 http://localhost/debian/ sid/main libxext6 amd64 2:1.3.0-3 [52.3 kB]
Get:41 http://localhost/debian/ sid/main libxrender1 amd64 1:0.9.6-2 [31.5 kB]
Get:42 http://localhost/debian/ sid/main libxft2 amd64 2.2.0-3 [58.1 kB]
Get:43 http://localhost/debian/ sid/main libxi6 amd64 2:1.4.3-3 [66.2 kB]
Get:44 http://localhost/debian/ sid/main libxinerama1 amd64 2:1.1.1-3 [15.9 kB]
Get:45 http://localhost/debian/ sid/main libxt6 amd64 1:1.1.1-2 [207 kB]
Get:46 http://localhost/debian/ sid/main libxv1 amd64 2:1.0.6-2 [20.7 kB]
Get:47 http://localhost/debian/ sid/main libxxf86vm1 amd64 1:1.1.1-2 [18.2 kB]
Get:48 http://localhost/debian/ sid/main libgnutlsxx27 amd64 2.12.7-6 [391 kB]
Get:49 http://localhost/debian/ sid/main bsdmainutils amd64 8.2.3 [208 kB]
Get:50 http://localhost/debian/ sid/main groff-base amd64 1.21-6 [1150 kB]
Get:51 http://localhost/debian/ sid/main libpopt0 amd64 1.16-1 [54.1 kB]
Get:52 http://localhost/debian/ sid/main man-db amd64 2.6.0.2-2 [1023 kB]
Get:53 http://localhost/debian/ sid/main libmagic1 amd64 5.04-5+b1 [233 kB]
Get:54 http://localhost/debian/ sid/main file amd64 5.04-5+b1 [49.8 kB]
Get:55 http://localhost/debian/ sid/main gettext-base amd64 0.18.1.1-4 [154 kB]
Get:56 http://localhost/debian/ sid/main libgpm2 amd64 1.20.4-3.4 [35.5 kB]
Get:57 http://localhost/debian/ sid/main libxml2 amd64 2.7.8.dfsg-4 [892 kB]
Get:58 http://localhost/debian/ sid/main html2text amd64 1.3.2a-15 [103 kB]
Get:59 http://localhost/debian/ sid/main libglib2.0-0 amd64 2.28.6-1 [1648 kB]
Get:60 http://localhost/debian/ sid/main libcroco3 amd64 0.6.2-1 [125 kB]
Get:61 http://localhost/debian/ sid/main libunistring0 amd64 0.9.3-4 [437 kB]
Get:62 http://localhost/debian/ sid/main gettext amd64 0.18.1.1-4 [2079 kB]
Get:63 http://localhost/debian/ sid/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
Get:64 http://localhost/debian/ sid/main po-debconf all 1.0.16+nmu1 [223 kB]
Get:65 http://localhost/debian/ sid/main debhelper all 8.9.4 [561 kB]
Get:66 http://localhost/debian/ sid/main comerr-dev amd64 2.1-1.42~WIP-2011-07-02-1 [42.4 kB]
Get:67 http://localhost/debian/ sid/main krb5-multidev amd64 1.9.1+dfsg-2 [115 kB]
Get:68 http://localhost/debian/ sid/main libaa1 amd64 1.4p5-38+b1 [62.9 kB]
Get:69 http://localhost/debian/ sid/main xorg-sgml-doctools all 1:1.8-2 [20.0 kB]
Get:70 http://localhost/debian/ sid/main x11proto-core-dev all 7.0.22-1 [323 kB]
Get:71 http://localhost/debian/ sid/main libxau-dev amd64 1:1.0.6-3 [20.5 kB]
Get:72 http://localhost/debian/ sid/main libxdmcp-dev amd64 1:1.1.0-3 [56.5 kB]
Get:73 http://localhost/debian/ sid/main x11proto-input-dev all 2.0.2-2 [82.3 kB]
Get:74 http://localhost/debian/ sid/main x11proto-kb-dev all 1.0.5-2 [27.5 kB]
Get:75 http://localhost/debian/ sid/main xtrans-dev all 1.2.6-2 [101 kB]
Get:76 http://localhost/debian/ sid/main libpthread-stubs0 amd64 0.3-2.1 [3232 B]
Get:77 http://localhost/debian/ sid/main libpthread-stubs0-dev amd64 0.3-2.1 [3554 B]
Get:78 http://localhost/debian/ sid/main libxcb1-dev amd64 1.7-3 [83.1 kB]
Get:79 http://localhost/debian/ sid/main libx11-dev amd64 2:1.4.4-1 [3383 kB]
Get:80 http://localhost/debian/ sid/main zlib1g-dev amd64 1:1.2.3.4.dfsg-3 [192 kB]
Get:81 http://localhost/debian/ sid/main libpng12-dev amd64 1.2.46-3 [265 kB]
Get:82 http://localhost/debian/ sid/main libslang2-dev amd64 2.2.4-2 [631 kB]
Get:83 http://localhost/debian/ sid/main libncurses5-dev amd64 5.9-1 [507 kB]
Get:84 http://localhost/debian/ sid/main libaa1-dev amd64 1.4p5-38+b1 [146 kB]
Get:85 http://localhost/debian/ sid/main libcaca0 amd64 0.99.beta17-2 [387 kB]
Get:86 http://localhost/debian/ sid/main libcaca-dev amd64 0.99.beta17-2 [1002 kB]
Get:87 http://localhost/debian/ sid/main libgpg-error-dev amd64 1.10-0.3 [31.6 kB]
Get:88 http://localhost/debian/ sid/main libgcrypt11-dev amd64 1.4.6-9 [386 kB]
Get:89 http://localhost/debian/ sid/main libtasn1-3-dev amd64 2.9-4 [384 kB]
Get:90 http://localhost/debian/ sid/main libgnutls-dev amd64 2.12.7-6 [916 kB]
Get:91 http://localhost/debian/ sid/main pkg-config amd64 0.26-1 [59.5 kB]
Get:92 http://localhost/debian/ sid/main libidn11-dev amd64 1.22-3 [731 kB]
Get:93 http://localhost/debian/ sid/main libkrb5-dev amd64 1.9.1+dfsg-2 [38.4 kB]
Get:94 http://localhost/debian/ sid/main libldap2-dev amd64 2.4.25-3 [1091 kB]
Get:95 http://localhost/debian/ sid/main libcurl4-gnutls-dev amd64 7.21.7-1 [1176 kB]
Get:96 http://localhost/debian/ sid/main libexpat1-dev amd64 2.0.1-7 [221 kB]
Get:97 http://localhost/debian/ sid/main libfreetype6-dev amd64 2.4.6-2 [797 kB]
Get:98 http://localhost/debian/ sid/main libfontconfig1-dev amd64 2.8.0-3 [833 kB]
Get:99 http://localhost/debian/ sid/main libgpm-dev amd64 1.20.4-3.4 [38.8 kB]
Get:100 http://localhost/debian/ sid/main libgpmg1-dev amd64 1.20.4-3.4 [24.0 kB]
Get:101 http://localhost/debian/ sid/main libice-dev amd64 2:1.0.7-2 [143 kB]
Get:102 http://localhost/debian/ sid/main liblircclient0 amd64 0.9.0~pre1-1 [36.4 kB]
Get:103 http://localhost/debian/ sid/main libreadline6-dev amd64 6.2-2 [263 kB]
Get:104 http://localhost/debian/ sid/main libreadline-dev amd64 6.2-2 [882 B]
Get:105 http://localhost/debian/ sid/main libsm-dev amd64 2:1.2.0-2 [101 kB]
Get:106 http://localhost/debian/ sid/main x11proto-xext-dev all 7.2.0-3 [255 kB]
Get:107 http://localhost/debian/ sid/main libxext-dev amd64 2:1.3.0-3 [167 kB]
Get:108 http://localhost/debian/ sid/main x11proto-render-dev all 2:0.11.1-2 [20.8 kB]
Get:109 http://localhost/debian/ sid/main libxrender-dev amd64 1:0.9.6-2 [39.7 kB]
Get:110 http://localhost/debian/ sid/main libxft-dev amd64 2.2.0-3 [71.5 kB]
Get:111 http://localhost/debian/ sid/main libxi-dev amd64 2:1.4.3-3 [253 kB]
Get:112 http://localhost/debian/ sid/main libxine1-bin amd64 1.1.19-3 [1549 kB]
Get:113 http://localhost/debian/ sid/main libxine-dev amd64 1.1.19-3 [328 kB]
Get:114 http://localhost/debian/ sid/main x11proto-xinerama-dev all 1.2.1-2 [4938 B]
Get:115 http://localhost/debian/ sid/main libxinerama-dev amd64 2:1.1.1-3 [18.1 kB]
Get:116 http://localhost/debian/ sid/main libxt-dev amd64 1:1.1.1-2 [512 kB]
Get:117 http://localhost/debian/ sid/main libxtst6 amd64 2:1.2.0-3 [23.8 kB]
Get:118 http://localhost/debian/ sid/main x11proto-record-dev all 1.14.1-1 [31.8 kB]
Get:119 http://localhost/debian/ sid/main libxtst-dev amd64 2:1.2.0-3 [75.0 kB]
Get:120 http://localhost/debian/ sid/main x11proto-video-dev all 2.3.1-1 [16.8 kB]
Get:121 http://localhost/debian/ sid/main libxv-dev amd64 2:1.0.6-2 [44.3 kB]
Get:122 http://localhost/debian/ sid/main x11proto-xf86vidmode-dev all 2.3.1-2 [6114 B]
Get:123 http://localhost/debian/ sid/main libxxf86vm-dev amd64 1:1.1.1-2 [22.9 kB]
Get:124 http://localhost/debian/ sid/main liblircclient-dev amd64 0.9.0~pre1-1 [39.5 kB]

Extracting templates from packages: 24%
Extracting templates from packages: 48%
Extracting templates from packages: 72%
Extracting templates from packages: 96%
Extracting templates from packages: 100%
Preconfiguring packages ...
Fetched 38.2 MB in 0s (48.7 MB/s)
Selecting previously deselected package libpipeline1.
(Reading database ... 10769 files and directories currently installed.)
Unpacking libpipeline1 (from .../libpipeline1_1.2.0-3_amd64.deb) ...
Selecting previously deselected package libgpg-error0.
Unpacking libgpg-error0 (from .../libgpg-error0_1.10-0.3_amd64.deb) ...
Selecting previously deselected package libgcrypt11.
Unpacking libgcrypt11 (from .../libgcrypt11_1.4.6-9_amd64.deb) ...
Selecting previously deselected package libtasn1-3.
Unpacking libtasn1-3 (from .../libtasn1-3_2.9-4_amd64.deb) ...
Selecting previously deselected package libgnutls26.
Unpacking libgnutls26 (from .../libgnutls26_2.12.7-6_amd64.deb) ...
Selecting previously deselected package libgnutls-openssl27.
Unpacking libgnutls-openssl27 (from .../libgnutls-openssl27_2.12.7-6_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.5.2-1_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from .../libkrb5support0_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 (from .../libkrb5-3_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libgssapi-krb5-2.
Unpacking libgssapi-krb5-2 (from .../libgssapi-krb5-2_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libgssrpc4.
Unpacking libgssrpc4 (from .../libgssrpc4_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libidn11.
Unpacking libidn11 (from .../libidn11_1.22-3_amd64.deb) ...
Selecting previously deselected package libkadm5clnt-mit8.
Unpacking libkadm5clnt-mit8 (from .../libkadm5clnt-mit8_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkdb5-5.
Unpacking libkdb5-5 (from .../libkdb5-5_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkadm5srv-mit8.
Unpacking libkadm5srv-mit8 (from .../libkadm5srv-mit8_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libsasl2-2.
Unpacking libsasl2-2 (from .../libsasl2-2_2.1.24~rc1.dfsg1+cvs2011-05-23-6_amd64.deb) ...
Selecting previously deselected package libldap-2.4-2.
Unpacking libldap-2.4-2 (from .../libldap-2.4-2_2.4.25-3_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_8.12-4_amd64.deb) ...
Selecting previously deselected package librtmp0.
Unpacking librtmp0 (from .../librtmp0_2.4~20110711.gitc28f1bab-1_amd64.deb) ...
Selecting previously deselected package libssl1.0.0.
Unpacking libssl1.0.0 (from .../libssl1.0.0_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package openssl.
Unpacking openssl (from .../openssl_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package ca-certificates.
Unpacking ca-certificates (from .../ca-certificates_20110502_all.deb) ...
Selecting previously deselected package libcurl3-gnutls.
Unpacking libcurl3-gnutls (from .../libcurl3-gnutls_7.21.7-1_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-7_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.4.6-2_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../ucf_3.0025+nmu2_all.deb) ...
Moving old data out of the way
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.33-2_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.8.0-3_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.8.0-3_amd64.deb) ...
Selecting previously deselected package x11-common.
Unpacking x11-common (from .../x11-common_1%3a7.6+8_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.7-2_amd64.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.46-3_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.2.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.6-3_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.1.0-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.7-3_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.4.4-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.4.4-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.3.0-3_amd64.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.6-2_amd64.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.2.0-3_amd64.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_2%3a1.4.3-3_amd64.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_2%3a1.1.1-3_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libxv1.
Unpacking libxv1 (from .../libxv1_2%3a1.0.6-2_amd64.deb) ...
Selecting previously deselected package libxxf86vm1.
Unpacking libxxf86vm1 (from .../libxxf86vm1_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libgnutlsxx27.
Unpacking libgnutlsxx27 (from .../libgnutlsxx27_2.12.7-6_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_8.2.3_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.21-6_amd64.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.16-1_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.6.0.2-2_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.04-5+b1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../file_5.04-5+b1_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.18.1.1-4_amd64.deb) ...
Selecting previously deselected package libgpm2.
Unpacking libgpm2 (from .../libgpm2_1.20.4-3.4_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.8.dfsg-4_amd64.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-15_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.28.6-1_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ...
Selecting previously deselected package libunistring0.
Unpacking libunistring0 (from .../libunistring0_0.9.3-4_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.18.1.1-4_amd64.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously deselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.16+nmu1_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_8.9.4_all.deb) ...
Selecting previously deselected package comerr-dev.
Unpacking comerr-dev (from .../comerr-dev_2.1-1.42~WIP-2011-07-02-1_amd64.deb) ...
Selecting previously deselected package krb5-multidev.
Unpacking krb5-multidev (from .../krb5-multidev_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libaa1.
Unpacking libaa1 (from .../libaa1_1.4p5-38+b1_amd64.deb) ...
Selecting previously deselected package xorg-sgml-doctools.
Unpacking xorg-sgml-doctools (from .../xorg-sgml-doctools_1%3a1.8-2_all.deb) ...
Selecting previously deselected package x11proto-core-dev.
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.22-1_all.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.6-3_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.1.0-3_amd64.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_2.0.2-2_all.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.5-2_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.6-2_all.deb) ...
Selecting previously deselected package libpthread-stubs0.
Unpacking libpthread-stubs0 (from .../libpthread-stubs0_0.3-2.1_amd64.deb) ...
Selecting previously deselected package libpthread-stubs0-dev.
Unpacking libpthread-stubs0-dev (from .../libpthread-stubs0-dev_0.3-2.1_amd64.deb) ...
Selecting previously deselected package libxcb1-dev.
Unpacking libxcb1-dev (from .../libxcb1-dev_1.7-3_amd64.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.4.4-1_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.4.dfsg-3_amd64.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.46-3_amd64.deb) ...
Selecting previously deselected package libslang2-dev.
Unpacking libslang2-dev (from .../libslang2-dev_2.2.4-2_amd64.deb) ...
Selecting previously deselected package libncurses5-dev.
Unpacking libncurses5-dev (from .../libncurses5-dev_5.9-1_amd64.deb) ...
Selecting previously deselected package libaa1-dev.
Unpacking libaa1-dev (from .../libaa1-dev_1.4p5-38+b1_amd64.deb) ...
Selecting previously deselected package libcaca0.
Unpacking libcaca0 (from .../libcaca0_0.99.beta17-2_amd64.deb) ...
Selecting previously deselected package libcaca-dev.
Unpacking libcaca-dev (from .../libcaca-dev_0.99.beta17-2_amd64.deb) ...
Selecting previously deselected package libgpg-error-dev.
Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.10-0.3_amd64.deb) ...
Selecting previously deselected package libgcrypt11-dev.
Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.6-9_amd64.deb) ...
Selecting previously deselected package libtasn1-3-dev.
Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_2.9-4_amd64.deb) ...
Selecting previously deselected package libgnutls-dev.
Unpacking libgnutls-dev (from .../libgnutls-dev_2.12.7-6_amd64.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.26-1_amd64.deb) ...
Selecting previously deselected package libidn11-dev.
Unpacking libidn11-dev (from .../libidn11-dev_1.22-3_amd64.deb) ...
Selecting previously deselected package libkrb5-dev.
Unpacking libkrb5-dev (from .../libkrb5-dev_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libldap2-dev.
Unpacking libldap2-dev (from .../libldap2-dev_2.4.25-3_amd64.deb) ...
Selecting previously deselected package libcurl4-gnutls-dev.
Unpacking libcurl4-gnutls-dev (from .../libcurl4-gnutls-dev_7.21.7-1_amd64.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_2.0.1-7_amd64.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.4.6-2_amd64.deb) ...
Selecting previously deselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.8.0-3_amd64.deb) ...
Selecting previously deselected package libgpm-dev.
Unpacking libgpm-dev (from .../libgpm-dev_1.20.4-3.4_amd64.deb) ...
Selecting previously deselected package libgpmg1-dev.
Unpacking libgpmg1-dev (from .../libgpmg1-dev_1.20.4-3.4_amd64.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.7-2_amd64.deb) ...
Selecting previously deselected package liblircclient0.
Unpacking liblircclient0 (from .../liblircclient0_0.9.0~pre1-1_amd64.deb) ...
Selecting previously deselected package libreadline6-dev.
Unpacking libreadline6-dev (from .../libreadline6-dev_6.2-2_amd64.deb) ...
Selecting previously deselected package libreadline-dev.
Unpacking libreadline-dev (from .../libreadline-dev_6.2-2_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.2.0-2_amd64.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.2.0-3_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_2%3a1.3.0-3_amd64.deb) ...
Selecting previously deselected package x11proto-render-dev.
Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.11.1-2_all.deb) ...
Selecting previously deselected package libxrender-dev.
Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.6-2_amd64.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.2.0-3_amd64.deb) ...
Selecting previously deselected package libxi-dev.
Unpacking libxi-dev (from .../libxi-dev_2%3a1.4.3-3_amd64.deb) ...
Selecting previously deselected package libxine1-bin.
Unpacking libxine1-bin (from .../libxine1-bin_1.1.19-3_amd64.deb) ...
Selecting previously deselected package libxine-dev.
Unpacking libxine-dev (from .../libxine-dev_1.1.19-3_amd64.deb) ...
Selecting previously deselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.2.1-2_all.deb) ...
Selecting previously deselected package libxinerama-dev.
Unpacking libxinerama-dev (from .../libxinerama-dev_2%3a1.1.1-3_amd64.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libxtst6.
Unpacking libxtst6 (from .../libxtst6_2%3a1.2.0-3_amd64.deb) ...
Selecting previously deselected package x11proto-record-dev.
Unpacking x11proto-record-dev (from .../x11proto-record-dev_1.14.1-1_all.deb) ...
Selecting previously deselected package libxtst-dev.
Unpacking libxtst-dev (from .../libxtst-dev_2%3a1.2.0-3_amd64.deb) ...
Selecting previously deselected package x11proto-video-dev.
Unpacking x11proto-video-dev (from .../x11proto-video-dev_2.3.1-1_all.deb) ...
Selecting previously deselected package libxv-dev.
Unpacking libxv-dev (from .../libxv-dev_2%3a1.0.6-2_amd64.deb) ...
Selecting previously deselected package x11proto-xf86vidmode-dev.
Unpacking x11proto-xf86vidmode-dev (from .../x11proto-xf86vidmode-dev_2.3.1-2_all.deb) ...
Selecting previously deselected package libxxf86vm-dev.
Unpacking libxxf86vm-dev (from .../libxxf86vm-dev_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package liblircclient-dev.
Unpacking liblircclient-dev (from .../liblircclient-dev_0.9.0~pre1-1_amd64.deb) ...
Selecting previously deselected package sbuild-build-depends-xine-ui-dummy.
Unpacking sbuild-build-depends-xine-ui-dummy (from .../sbuild-build-depends-xine-ui-dummy.deb) ...
Processing triggers for install-info ...
Setting up libpipeline1 (1.2.0-3) ...
Setting up libgpg-error0 (1.10-0.3) ...
Setting up libgcrypt11 (1.4.6-9) ...
Setting up libtasn1-3 (2.9-4) ...
Setting up libgnutls26 (2.12.7-6) ...
Setting up libgnutls-openssl27 (2.12.7-6) ...
Setting up libkeyutils1 (1.5.2-1) ...
Setting up libkrb5support0 (1.9.1+dfsg-2) ...
Setting up libk5crypto3 (1.9.1+dfsg-2) ...
Setting up libkrb5-3 (1.9.1+dfsg-2) ...
Setting up libgssapi-krb5-2 (1.9.1+dfsg-2) ...
Setting up libgssrpc4 (1.9.1+dfsg-2) ...
Setting up libidn11 (1.22-3) ...
Setting up libkadm5clnt-mit8 (1.9.1+dfsg-2) ...
Setting up libkdb5-5 (1.9.1+dfsg-2) ...
Setting up libkadm5srv-mit8 (1.9.1+dfsg-2) ...
Setting up libsasl2-2 (2.1.24~rc1.dfsg1+cvs2011-05-23-6) ...
Setting up libldap-2.4-2 (2.4.25-3) ...
Setting up libpcre3 (8.12-4) ...
Setting up librtmp0 (2.4~20110711.gitc28f1bab-1) ...
Setting up libssl1.0.0 (1.0.0d-3) ...
Setting up openssl (1.0.0d-3) ...
Setting up ca-certificates (20110502) ...
Updating certificates in /etc/ssl/certs... WARNING: Skipping duplicate certificate cert_igca_rsa.pem
WARNING: Skipping duplicate certificate cert_igca_rsa.pem
WARNING: Skipping duplicate certificate brasil.gov.br.pem
WARNING: Skipping duplicate certificate brasil.gov.br.pem
157 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d....done.
Setting up libcurl3-gnutls (7.21.7-1) ...
Setting up libexpat1 (2.0.1-7) ...
Setting up libfreetype6 (2.4.6-2) ...
Setting up ucf (3.0025+nmu2) ...
Setting up ttf-dejavu-core (2.33-2) ...
Setting up fontconfig-config (2.8.0-3) ...
Setting up libfontconfig1 (2.8.0-3) ...
Setting up x11-common (1:7.6+8) ...
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libice6 (2:1.0.7-2) ...
Setting up libpng12-0 (1.2.46-3) ...
Setting up libsm6 (2:1.2.0-2) ...
Setting up libxau6 (1:1.0.6-3) ...
Setting up libxdmcp6 (1:1.1.0-3) ...
Setting up libxcb1 (1.7-3) ...
Setting up libx11-data (2:1.4.4-1) ...
Setting up libx11-6 (2:1.4.4-1) ...
Setting up libxext6 (2:1.3.0-3) ...
Setting up libxrender1 (1:0.9.6-2) ...
Setting up libxft2 (2.2.0-3) ...
Setting up libxi6 (2:1.4.3-3) ...
Setting up libxinerama1 (2:1.1.1-3) ...
Setting up libxt6 (1:1.1.1-2) ...
Setting up libxv1 (2:1.0.6-2) ...
Setting up libxxf86vm1 (1:1.1.1-2) ...
Setting up libgnutlsxx27 (2.12.7-6) ...
Setting up bsdmainutils (8.2.3) ...
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 groff-base (1.21-6) ...
Setting up libpopt0 (1.16-1) ...
Setting up man-db (2.6.0.2-2) ...
Building database of manual pages ...
Setting up libmagic1 (5.04-5+b1) ...
Setting up file (5.04-5+b1) ...
Setting up gettext-base (0.18.1.1-4) ...
Setting up libgpm2 (1.20.4-3.4) ...
Setting up libxml2 (2.7.8.dfsg-4) ...
Setting up html2text (1.3.2a-15) ...
Setting up libglib2.0-0 (2.28.6-1) ...
No schema files found: doing nothing.
Setting up libcroco3 (0.6.2-1) ...
Setting up libunistring0 (0.9.3-4) ...
Setting up gettext (0.18.1.1-4) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16+nmu1) ...
Setting up debhelper (8.9.4) ...
Setting up comerr-dev (2.1-1.42~WIP-2011-07-02-1) ...
Setting up krb5-multidev (1.9.1+dfsg-2) ...
Setting up libaa1 (1.4p5-38+b1) ...
Setting up xorg-sgml-doctools (1:1.8-2) ...
Setting up x11proto-core-dev (7.0.22-1) ...
Setting up libxau-dev (1:1.0.6-3) ...
Setting up libxdmcp-dev (1:1.1.0-3) ...
Setting up x11proto-input-dev (2.0.2-2) ...
Setting up x11proto-kb-dev (1.0.5-2) ...
Setting up xtrans-dev (1.2.6-2) ...
Setting up libpthread-stubs0 (0.3-2.1) ...
Setting up libpthread-stubs0-dev (0.3-2.1) ...
Setting up libxcb1-dev (1.7-3) ...
Setting up libx11-dev (2:1.4.4-1) ...
Setting up zlib1g-dev (1:1.2.3.4.dfsg-3) ...
Setting up libpng12-dev (1.2.46-3) ...
Setting up libslang2-dev (2.2.4-2) ...
Setting up libncurses5-dev (5.9-1) ...
Setting up libaa1-dev (1.4p5-38+b1) ...
Setting up libcaca0 (0.99.beta17-2) ...
Setting up libcaca-dev (0.99.beta17-2) ...
Setting up libgpg-error-dev (1.10-0.3) ...
Setting up libgcrypt11-dev (1.4.6-9) ...
Setting up libtasn1-3-dev (2.9-4) ...
Setting up libgnutls-dev (2.12.7-6) ...
Setting up pkg-config (0.26-1) ...
Setting up libidn11-dev (1.22-3) ...
Setting up libkrb5-dev (1.9.1+dfsg-2) ...
Setting up libldap2-dev (2.4.25-3) ...
Setting up libcurl4-gnutls-dev (7.21.7-1) ...
Setting up libexpat1-dev (2.0.1-7) ...
Setting up libfreetype6-dev (2.4.6-2) ...
Setting up libfontconfig1-dev (2.8.0-3) ...
Setting up libgpm-dev (1.20.4-3.4) ...
Setting up libgpmg1-dev (1.20.4-3.4) ...
Setting up libice-dev (2:1.0.7-2) ...
Setting up liblircclient0 (0.9.0~pre1-1) ...
Setting up libreadline6-dev (6.2-2) ...
Setting up libreadline-dev (6.2-2) ...
Setting up libsm-dev (2:1.2.0-2) ...
Setting up x11proto-xext-dev (7.2.0-3) ...
Setting up libxext-dev (2:1.3.0-3) ...
Setting up x11proto-render-dev (2:0.11.1-2) ...
Setting up libxrender-dev (1:0.9.6-2) ...
Setting up libxft-dev (2.2.0-3) ...
Setting up libxi-dev (2:1.4.3-3) ...
Setting up libxine1-bin (1.1.19-3) ...
Setting up libxine-dev (1.1.19-3) ...
Setting up x11proto-xinerama-dev (1.2.1-2) ...
Setting up libxinerama-dev (2:1.1.1-3) ...
Setting up libxt-dev (1:1.1.1-2) ...
Setting up libxtst6 (2:1.2.0-3) ...
Setting up x11proto-record-dev (1.14.1-1) ...
Setting up libxtst-dev (2:1.2.0-3) ...
Setting up x11proto-video-dev (2.3.1-1) ...
Setting up libxv-dev (2:1.0.6-2) ...
Setting up x11proto-xf86vidmode-dev (2.3.1-2) ...
Setting up libxxf86vm-dev (1:1.1.1-2) ...
Setting up liblircclient-dev (0.9.0~pre1-1) ...
Setting up sbuild-build-depends-xine-ui-dummy (0.invalid.0) ...

┌──────────────────────────────────────────────────────────────────────────────┐
│ Build environment                                                            │
└──────────────────────────────────────────────────────────────────────────────┘

Kernel: Linux 2.6.32-5-amd64 amd64 (x86_64)
Toolchain package versions: binutils_2.21.53.20110805-1 dpkg-dev_1.16.0.3 g++-4.6_4.6.1-7 gcc-4.6_4.6.1-7 libc6-dev_2.13-16 libstdc++6_4.6.1-7 libstdc++6-4.6-dev_4.6.1-7 linux-libc-dev_3.0.0-2
Package versions: apt_0.8.15.6 apt-utils_0.8.15.6 base-files_6.5 base-passwd_3.5.23 bash_4.1-3 binutils_2.21.53.20110805-1 bsdmainutils_8.2.3 bsdutils_1:2.19.1-5 build-essential_11.5 bzip2_1.0.5-6 ca-certificates_20110502 comerr-dev_2.1-1.42~WIP-2011-07-02-1 coreutils_8.5-1 cpp_4:4.6.1-2 cpp-4.6_4.6.1-7 dash_0.5.7-1 debconf_1.5.41 debfoster_2.7-1.1 debhelper_8.9.4 debian-archive-keyring_2010.08.28 debianutils_4.0.2 diffutils_1:3.0-1 dpkg_1.16.0.3 dpkg-dev_1.16.0.3 e2fslibs_1.42~WIP-2011-07-02-1 e2fsprogs_1.42~WIP-2011-07-02-1 fakeroot_1.17-1 file_5.04-5+b1 findutils_4.4.2-1+b1 fontconfig-config_2.8.0-3 g++_4:4.6.1-2 g++-4.6_4.6.1-7 gcc_4:4.6.1-2 gcc-4.6_4.6.1-7 gcc-4.6-base_4.6.1-7 gettext_0.18.1.1-4 gettext-base_0.18.1.1-4 gnupg_1.4.11-3 gpgv_1.4.11-3 grep_2.9-2 groff-base_1.21-6 gzip_1.4-1 hostname_3.06 html2text_1.3.2a-15 initscripts_2.88dsf-13.11 insserv_1.14.0-2.1 install-info_4.13a.dfsg.1-6 intltool-debian_0.35.0+20060710.1 krb5-multidev_1.9.1+dfsg-2 less_444-1 libaa1_1.4p5-38+b1 libaa1-dev_1.4p5-38+b1 libacl1_2.2.51-3 libattr1_1:2.4.46-3 libblkid1_2.19.1-5 libbz2-1.0_1.0.5-6 libc-bin_2.13-16 libc-dev-bin_2.13-16 libc6_2.13-16 libc6-dev_2.13-16 libcaca-dev_0.99.beta17-2 libcaca0_0.99.beta17-2 libcloog-ppl0_0.15.9-3 libcomerr2_1.42~WIP-2011-07-02-1 libcroco3_0.6.2-1 libcurl3-gnutls_7.21.7-1 libcurl4-gnutls-dev_7.21.7-1 libdb5.1_5.1.25-11 libdpkg-perl_1.16.0.3 libexpat1_2.0.1-7 libexpat1-dev_2.0.1-7 libfontconfig1_2.8.0-3 libfontconfig1-dev_2.8.0-3 libfreetype6_2.4.6-2 libfreetype6-dev_2.4.6-2 libgc1c2_1:7.1-8 libgcc1_1:4.6.1-7 libgcrypt11_1.4.6-9 libgcrypt11-dev_1.4.6-9 libgdbm3_1.8.3-10 libglib2.0-0_2.28.6-1 libgmp10_2:5.0.1+dfsg-7 libgmpxx4ldbl_2:5.0.1+dfsg-7 libgnutls-dev_2.12.7-6 libgnutls-openssl27_2.12.7-6 libgnutls26_2.12.7-6 libgnutlsxx27_2.12.7-6 libgomp1_4.6.1-7 libgpg-error-dev_1.10-0.3 libgpg-error0_1.10-0.3 libgpm-dev_1.20.4-3.4 libgpm2_1.20.4-3.4 libgpmg1-dev_1.20.4-3.4 libgssapi-krb5-2_1.9.1+dfsg-2 libgssrpc4_1.9.1+dfsg-2 libice-dev_2:1.0.7-2 libice6_2:1.0.7-2 libidn11_1.22-3 libidn11-dev_1.22-3 libk5crypto3_1.9.1+dfsg-2 libkadm5clnt-mit8_1.9.1+dfsg-2 libkadm5srv-mit8_1.9.1+dfsg-2 libkdb5-5_1.9.1+dfsg-2 libkeyutils1_1.5.2-1 libkrb5-3_1.9.1+dfsg-2 libkrb5-dev_1.9.1+dfsg-2 libkrb5support0_1.9.1+dfsg-2 libldap-2.4-2_2.4.25-3 libldap2-dev_2.4.25-3 liblircclient-dev_0.9.0~pre1-1 liblircclient0_0.9.0~pre1-1 liblzma2_5.1.1alpha+20110809-1 libmagic1_5.04-5+b1 libmount1_2.19.1-5 libmpc2_0.9-3 libmpfr4_3.0.1-5 libncurses5_5.9-1 libncurses5-dev_5.9-1 libncursesw5_5.9-1 libpam-modules_1.1.3-2 libpam-modules-bin_1.1.3-2 libpam-runtime_1.1.3-2 libpam0g_1.1.3-2 libpcre3_8.12-4 libpipeline1_1.2.0-3 libpng12-0_1.2.46-3 libpng12-dev_1.2.46-3 libpopt0_1.16-1 libppl-c4_0.11.2-4 libppl9_0.11.2-4 libpthread-stubs0_0.3-2.1 libpthread-stubs0-dev_0.3-2.1 libpwl5_0.11.2-4 libquadmath0_4.6.1-7 libreadline-dev_6.2-2 libreadline6_6.2-2 libreadline6-dev_6.2-2 librtmp0_2.4~20110711.gitc28f1bab-1 libsasl2-2_2.1.24~rc1.dfsg1+cvs2011-05-23-6 libselinux1_2.0.98-1.1 libsepol1_2.0.42-1 libslang2_2.2.4-2 libslang2-dev_2.2.4-2 libsm-dev_2:1.2.0-2 libsm6_2:1.2.0-2 libss2_1.42~WIP-2011-07-02-1 libssl1.0.0_1.0.0d-3 libstdc++6_4.6.1-7 libstdc++6-4.6-dev_4.6.1-7 libtasn1-3_2.9-4 libtasn1-3-dev_2.9-4 libtimedate-perl_1.2000-1 libunistring0_0.9.3-4 libusb-0.1-4_2:0.1.12-19 libuuid1_2.19.1-5 libx11-6_2:1.4.4-1 libx11-data_2:1.4.4-1 libx11-dev_2:1.4.4-1 libxau-dev_1:1.0.6-3 libxau6_1:1.0.6-3 libxcb1_1.7-3 libxcb1-dev_1.7-3 libxdmcp-dev_1:1.1.0-3 libxdmcp6_1:1.1.0-3 libxext-dev_2:1.3.0-3 libxext6_2:1.3.0-3 libxft-dev_2.2.0-3 libxft2_2.2.0-3 libxi-dev_2:1.4.3-3 libxi6_2:1.4.3-3 libxine-dev_1.1.19-3 libxine1-bin_1.1.19-3 libxinerama-dev_2:1.1.1-3 libxinerama1_2:1.1.1-3 libxml2_2.7.8.dfsg-4 libxrender-dev_1:0.9.6-2 libxrender1_1:0.9.6-2 libxt-dev_1:1.1.1-2 libxt6_1:1.1.1-2 libxtst-dev_2:1.2.0-3 libxtst6_2:1.2.0-3 libxv-dev_2:1.0.6-2 libxv1_2:1.0.6-2 libxxf86vm-dev_1:1.1.1-2 libxxf86vm1_1:1.1.1-2 linux-libc-dev_3.0.0-2 login_1:4.1.4.2+svn3283-3 lsb-base_3.2-27 make_3.81-8.1 man-db_2.6.0.2-2 mawk_1.3.3-15 mount_2.19.1-5 multiarch-support_2.13-16 ncurses-base_5.9-1 ncurses-bin_5.9-1 nvi_1.81.6-8.2 openssl_1.0.0d-3 passwd_1:4.1.4.2+svn3283-3 patch_2.6.1-2 perl_5.12.4-4 perl-base_5.12.4-4 perl-modules_5.12.4-4 pkg-config_0.26-1 po-debconf_1.0.16+nmu1 readline-common_6.2-2 sbuild-build-depends-core-dummy_0.invalid.0 sbuild-build-depends-xine-ui-dummy_0.invalid.0 sed_4.2.1-9 sensible-utils_0.0.6 sysv-rc_2.88dsf-13.11 sysvinit_2.88dsf-13.11 sysvinit-utils_2.88dsf-13.11 tar_1.26-2 ttf-dejavu-core_2.33-2 tzdata_2011h-3 ucf_3.0025+nmu2 util-linux_2.19.1-5 x11-common_1:7.6+8 x11proto-core-dev_7.0.22-1 x11proto-input-dev_2.0.2-2 x11proto-kb-dev_1.0.5-2 x11proto-record-dev_1.14.1-1 x11proto-render-dev_2:0.11.1-2 x11proto-video-dev_2.3.1-1 x11proto-xext-dev_7.2.0-3 x11proto-xf86vidmode-dev_2.3.1-2 x11proto-xinerama-dev_1.2.1-2 xorg-sgml-doctools_1:1.8-2 xtrans-dev_1.2.6-2 xz-utils_5.1.1alpha+20110809-1 zlib1g_1:1.2.3.4.dfsg-3 zlib1g-dev_1:1.2.3.4.dfsg-3

┌──────────────────────────────────────────────────────────────────────────────┐
│ Build                                                                        │
└──────────────────────────────────────────────────────────────────────────────┘


Unpack source
─────────────

gpgv: keyblock resource `/var/lib/sbuild/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Mon Mar 22 09:27:25 2010 CET using RSA key ID 0069F28F
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./xine-ui_0.99.6-1.dsc
dpkg-source: info: extracting xine-ui in xine-ui-0.99.6
dpkg-source: info: unpacking xine-ui_0.99.6.orig.tar.bz2
dpkg-source: info: unpacking xine-ui_0.99.6-1.debian.tar.gz
dpkg-source: info: applying debian-changes

Check disc space
────────────────

Sufficient free space for build

dpkg-buildpackage
─────────────────

dpkg-buildpackage: export CFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export CPPFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: export CXXFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export FFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export LDFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: source package xine-ui
dpkg-buildpackage: source version 0.99.6-1
 dpkg-source --before-build xine-ui-0.99.6
dpkg-buildpackage: host architecture amd64
dpkg-source: info: using options from xine-ui-0.99.6/debian/source/options: --single-debian-patch
 fakeroot debian/rules clean
dh_testdir
dh_testroot
[ ! -f Makefile ] || /usr/bin/make distclean
dh_clean build-stamp debian/gxine.postinst \
		po/*.gmo po/stamp-po \
		misc/xine-bugreport misc/xine-check \
		src/xitk/xine-toolkit/po/*.gmo \
		src/xitk/xine-toolkit/po/stamp-po \
		doc/man/en/xine-check.1 doc/man/en/aaxine.1 doc/man/en/xine.1 doc/man/pl/aaxine.1 doc/man/pl/xine.1 doc/man/de/xine-check.1 doc/man/de/aaxine.1 doc/man/de/xine.1 doc/man/es/xine-check.1 doc/man/es/aaxine.1 doc/man/es/xine.1 doc/man/fr/xine.1
 dpkg-source -b xine-ui-0.99.6
dpkg-source: info: using options from xine-ui-0.99.6/debian/source/options: --single-debian-patch
dpkg-source: info: using source format `3.0 (quilt)'
dpkg-source: info: building xine-ui using existing ./xine-ui_0.99.6.orig.tar.bz2
dpkg-source: warning: ignoring deletion of file doc/man/en/xine-check.1
dpkg-source: warning: ignoring deletion of file doc/man/en/aaxine.1
dpkg-source: warning: ignoring deletion of file doc/man/en/xine.1
dpkg-source: warning: ignoring deletion of file doc/man/pl/aaxine.1
dpkg-source: warning: ignoring deletion of file doc/man/pl/xine.1
dpkg-source: warning: ignoring deletion of file doc/man/de/xine-check.1
dpkg-source: warning: ignoring deletion of file doc/man/de/aaxine.1
dpkg-source: warning: ignoring deletion of file doc/man/de/xine.1
dpkg-source: warning: ignoring deletion of file doc/man/es/xine-check.1
dpkg-source: warning: ignoring deletion of file doc/man/es/aaxine.1
dpkg-source: warning: ignoring deletion of file doc/man/es/xine.1
dpkg-source: warning: ignoring deletion of file doc/man/fr/xine.1
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/pl.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/pt_BR.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/ru.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/nb.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/it.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/cs.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/de.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/sk.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/stamp-po
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/fr.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/uk.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/es.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/eu.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/ja.gmo
dpkg-source: warning: ignoring deletion of file po/pl.gmo
dpkg-source: warning: ignoring deletion of file po/eo.gmo
dpkg-source: warning: ignoring deletion of file po/pt_BR.gmo
dpkg-source: warning: ignoring deletion of file po/ru.gmo
dpkg-source: warning: ignoring deletion of file po/nb.gmo
dpkg-source: warning: ignoring deletion of file po/it.gmo
dpkg-source: warning: ignoring deletion of file po/cs.gmo
dpkg-source: warning: ignoring deletion of file po/de.gmo
dpkg-source: warning: ignoring deletion of file po/sk.gmo
dpkg-source: warning: ignoring deletion of file po/stamp-po
dpkg-source: warning: ignoring deletion of file po/fr.gmo
dpkg-source: warning: ignoring deletion of file po/uk.gmo
dpkg-source: warning: ignoring deletion of file po/es.gmo
dpkg-source: warning: ignoring deletion of file po/eu.gmo
dpkg-source: warning: ignoring deletion of file po/ja.gmo
dpkg-source: warning: ignoring deletion of file misc/xine-bugreport
dpkg-source: warning: ignoring deletion of file misc/xine-check
dpkg-source: info: local changes stored in xine-ui-0.99.6/debian/patches/debian-changes, the modified files are:
 xine-ui-0.99.6/doc/man/de/xine-remote.1
 xine-ui-0.99.6/doc/man/en/xine-remote.1
 xine-ui-0.99.6/doc/man/es/xine-remote.1
 xine-ui-0.99.6/doc/man/pl/xine-remote.1
 xine-ui-0.99.6/misc/desktops/xine.desktop
 xine-ui-0.99.6/src/common/getsubopt.c
 xine-ui-0.99.6/src/xitk/Imlib-light/misc.c
 xine-ui-0.99.6/src/xitk/common.h
 xine-ui-0.99.6/src/xitk/event.c
 xine-ui-0.99.6/src/xitk/main.c
 xine-ui-0.99.6/src/xitk/panel.c
 xine-ui-0.99.6/src/xitk/videowin.c
 xine-ui-0.99.6/src/xitk/videowin.h
dpkg-source: info: building xine-ui in xine-ui_0.99.6-1.debian.tar.gz
dpkg-source: info: building xine-ui in xine-ui_0.99.6-1.dsc
 debian/rules build
make: Nothing to be done for `build'.
 fakeroot debian/rules binary
dh_testdir
sh ./configure \
		--prefix=/usr --mandir=\${prefix}/share/man \
		--with-aalib --enable-vdr-keys \
		--build x86_64-linux-gnu || \
		(echo "=== config.log: ==="; cat config.log; false)
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for 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... gcc3
checking for strerror in -lcposix... no
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking whether gcc and cc understand -c and -o together... yes
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -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 minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for ANSI C header files... (cached) yes
checking whether make sets $(MAKE)... (cached) yes
checking for ranlib... ranlib
checking whether ln -s works... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking whether NLS is requested... yes
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for plural forms in GNU msgfmt... yes
checking for iconv... yes
checking for iconv declaration... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for off_t... yes
checking for size_t... yes
checking for XINE... yes
checking for pthread_create in -lpthread... yes
checking for X... libraries , headers 
checking for X11... yes
checking for XV... yes
checking for XShmAttach in -lXext... yes
checking sys/ipc.h usability... yes
checking sys/ipc.h presence... yes
checking for sys/ipc.h... yes
checking sys/shm.h usability... yes
checking sys/shm.h presence... yes
checking for sys/shm.h... yes
checking whether shmctl IPC_RMID allowes subsequent attaches... yes
checking for X11/extensions/XShm.h... yes
checking for XINERAMA... yes
checking for XXF86VM... yes
checking for XTEST... yes
checking for readline.h... /usr/include/readline/readline.h
configure: checking whether libreadline is linked against libncurses
checking for cbreak in -lreadline... no
checking for cbreak in -lncurses... yes
configure: libreadline is not linked against libncurses; adding -lncurses 
checking for CURL... yes
checking for socket in -lsocket... no
checking for gethostbyname in -lnsl... yes
checking for aalib-config... /usr/bin/aalib-config
checking for AALIB version >= 1.2.0... yes
checking for dlopen in -lc... no
checking for dlopen in -ldl... yes
checking for CACA... yes
checking for dlopen in -lc... (cached) no
checking whether to have Xft support... yes
checking Xft UTF-8 support... yes
checking for LIBPNG... yes
checking for LIRC... yes
checking for NVTVSIMPLE... *** nvtvsimple support will be disabled ***
checking for tar... tar
checking for sane -Wpointer-arith... yes
checking if gcc supports "-Wall" flags... yes
checking if gcc supports "-fno-strict-aliasing" flags... yes
checking __attribute__ ((aligned ())) support... 64
checking for nanosleep in -lposix4... no
checking for getline... yes
checking for getsubopt... yes
checking for nanosleep... yes
checking for strndup... yes
checking for strsep... yes
checking for strlcat... no
checking for strlcpy... no
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking linux/kd.hb usability... no
checking linux/kd.hb presence... no
checking for linux/kd.hb... no
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking for GNU getopt_long... yes
checking if gcc supports "-Wformat" flags... yes
checking if gcc supports "-Wformat=2" flags... yes
checking if gcc supports "-Wno-format-zero-length" flags... yes
checking if gcc supports "-Wmissing-format-attribute" flags... yes
checking if gcc supports "-Wstrict-aliasing" flags... yes
checking if gcc supports "-Wstrict-aliasing=2" flags... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating m4/Makefile
config.status: creating src/Makefile
config.status: creating src/common/Makefile
config.status: creating src/xitk/Makefile
config.status: creating src/xitk/Imlib-light/Makefile
config.status: creating src/xitk/xine-toolkit/Makefile
config.status: creating src/xitk/xine-toolkit/po/Makefile.in
config.status: creating src/xitk/skins/Makefile
config.status: creating src/xitk/skins/xinetic/Makefile
config.status: creating src/xitk/oxine/Makefile
config.status: creating src/xitk/oxine/data/Makefile
config.status: creating src/aaui/Makefile
config.status: creating src/dfb/Makefile
config.status: creating src/fb/Makefile
config.status: creating doc/Makefile
config.status: creating doc/man/Makefile
config.status: creating doc/man/de/Makefile
config.status: creating doc/man/de/xine.1
config.status: creating doc/man/de/aaxine.1
config.status: creating doc/man/de/xine-check.1
config.status: creating doc/man/en/Makefile
config.status: creating doc/man/en/xine.1
config.status: creating doc/man/en/aaxine.1
config.status: creating doc/man/en/xine-check.1
config.status: creating doc/man/fr/Makefile
config.status: creating doc/man/fr/xine.1
config.status: creating doc/man/es/Makefile
config.status: creating doc/man/es/xine.1
config.status: creating doc/man/es/aaxine.1
config.status: creating doc/man/es/xine-check.1
config.status: creating doc/man/pl/Makefile
config.status: creating doc/man/pl/xine.1
config.status: creating doc/man/pl/aaxine.1
config.status: creating misc/Makefile
config.status: creating misc/build_rpms.sh
config.status: creating misc/SlackBuild
config.status: creating misc/xine-ui.spec
config.status: creating misc/desktops/Makefile
config.status: creating misc/visuals/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: creating src/xitk/xine-toolkit/po/POTFILES
config.status: creating src/xitk/xine-toolkit/po/Makefile
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing default commands
dh_testdir
/usr/bin/make
make[1]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6'
/usr/bin/make  all-recursive
make[2]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6'
Making all in doc
make[3]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc'
Making all in man
make[4]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man'
Making all in fr
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/fr'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/fr'
Making all in es
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/es'
ln -s xine-check.1 xine-bugreport.1
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/es'
Making all in en
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/en'
ln -s xine-check.1 xine-bugreport.1
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/en'
Making all in pl
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/pl'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/pl'
Making all in de
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/de'
ln -s xine-check.1 xine-bugreport.1
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man/de'
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man'
make[4]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc/man'
make[4]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc'
make[3]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/doc'
Making all in m4
make[3]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/m4'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/m4'
Making all in po
make[3]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/po'
test ! -f ./xine-ui.pot || \
	  test -z "cs.gmo de.gmo eo.gmo es.gmo eu.gmo fr.gmo it.gmo ja.gmo nb.gmo pl.gmo pt_BR.gmo ru.gmo sk.gmo uk.gmo" || /usr/bin/make cs.gmo de.gmo eo.gmo es.gmo eu.gmo fr.gmo it.gmo ja.gmo nb.gmo pl.gmo pt_BR.gmo ru.gmo sk.gmo uk.gmo
make[4]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/po'
rm -f cs.gmo && /usr/bin/msgfmt -c --statistics -o cs.gmo cs.po
613 translated messages.
rm -f de.gmo && /usr/bin/msgfmt -c --statistics -o de.gmo de.po
607 translated messages, 3 fuzzy translations, 3 untranslated messages.
rm -f eo.gmo && /usr/bin/msgfmt -c --statistics -o eo.gmo eo.po
607 translated messages, 3 fuzzy translations, 3 untranslated messages.
rm -f es.gmo && /usr/bin/msgfmt -c --statistics -o es.gmo es.po
613 translated messages.
rm -f eu.gmo && /usr/bin/msgfmt -c --statistics -o eu.gmo eu.po
588 translated messages, 13 fuzzy translations, 12 untranslated messages.
rm -f fr.gmo && /usr/bin/msgfmt -c --statistics -o fr.gmo fr.po
607 translated messages, 3 fuzzy translations, 3 untranslated messages.
rm -f it.gmo && /usr/bin/msgfmt -c --statistics -o it.gmo it.po
608 translated messages, 3 fuzzy translations, 2 untranslated messages.
rm -f ja.gmo && /usr/bin/msgfmt -c --statistics -o ja.gmo ja.po
582 translated messages, 15 fuzzy translations, 16 untranslated messages.
rm -f nb.gmo && /usr/bin/msgfmt -c --statistics -o nb.gmo nb.po
591 translated messages, 14 fuzzy translations, 8 untranslated messages.
rm -f pl.gmo && /usr/bin/msgfmt -c --statistics -o pl.gmo pl.po
585 translated messages, 12 fuzzy translations, 16 untranslated messages.
rm -f pt_BR.gmo && /usr/bin/msgfmt -c --statistics -o pt_BR.gmo pt_BR.po
421 translated messages, 61 fuzzy translations, 131 untranslated messages.
rm -f ru.gmo && /usr/bin/msgfmt -c --statistics -o ru.gmo ru.po
595 translated messages, 10 fuzzy translations, 8 untranslated messages.
rm -f sk.gmo && /usr/bin/msgfmt -c --statistics -o sk.gmo sk.po
550 translated messages, 30 fuzzy translations, 33 untranslated messages.
rm -f uk.gmo && /usr/bin/msgfmt -c --statistics -o uk.gmo uk.po
103 translated messages, 92 fuzzy translations, 418 untranslated messages.
make[4]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/po'
touch stamp-po
make[3]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/po'
Making all in misc
make[3]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/misc'
Making all in desktops
make[4]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/misc/desktops'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/misc/desktops'
Making all in visuals
make[4]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/misc/visuals'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/misc/visuals'
make[4]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/misc'
test `cd .; pwd` = `pwd` || cp ./xine-check.sh.in .
perl ./build-xine-check.pl ./xine-check.en
chmod a+x xine-check
test -f xine-bugreport || ln -s xine-check xine-bugreport
make[4]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/misc'
make[3]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/misc'
Making all in src
make[3]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src'
Making all in common
make[4]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/common'
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT utils.o -MD -MP -MF .deps/utils.Tpo -c -o utils.o utils.c
mv -f .deps/utils.Tpo .deps/utils.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT getline.o -MD -MP -MF .deps/getline.Tpo -c -o getline.o getline.c
mv -f .deps/getline.Tpo .deps/getline.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT strndup.o -MD -MP -MF .deps/strndup.Tpo -c -o strndup.o strndup.c
mv -f .deps/strndup.Tpo .deps/strndup.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT strsep.o -MD -MP -MF .deps/strsep.Tpo -c -o strsep.o strsep.c
mv -f .deps/strsep.Tpo .deps/strsep.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT strlcpy.o -MD -MP -MF .deps/strlcpy.Tpo -c -o strlcpy.o strlcpy.c
mv -f .deps/strlcpy.Tpo .deps/strlcpy.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT strlcat.o -MD -MP -MF .deps/strlcat.Tpo -c -o strlcat.o strlcat.c
mv -f .deps/strlcat.Tpo .deps/strlcat.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT config_wrapper.o -MD -MP -MF .deps/config_wrapper.Tpo -c -o config_wrapper.o config_wrapper.c
mv -f .deps/config_wrapper.Tpo .deps/config_wrapper.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT dump.o -MD -MP -MF .deps/dump.Tpo -c -o dump.o dump.c
mv -f .deps/dump.Tpo .deps/dump.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT globals.o -MD -MP -MF .deps/globals.Tpo -c -o globals.o globals.c
mv -f .deps/globals.Tpo .deps/globals.Po
rm -f libcommon.a
ar cru libcommon.a  utils.o getline.o strndup.o strsep.o strlcpy.o strlcat.o config_wrapper.o dump.o globals.o 
ranlib libcommon.a
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT x11utils.o -MD -MP -MF .deps/x11utils.Tpo -c -o x11utils.o x11utils.c
mv -f .deps/x11utils.Tpo .deps/x11utils.Po
rm -f libcommonx.a
ar cru libcommonx.a x11utils.o 
ranlib libcommonx.a
make[4]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/common'
Making all in xitk
make[4]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk'
Making all in Imlib-light
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/Imlib-light'
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-cache.o -MD -MP -MF .deps/libImlib_light_a-cache.Tpo -c -o libImlib_light_a-cache.o `test -f 'cache.c' || echo './'`cache.c
mv -f .deps/libImlib_light_a-cache.Tpo .deps/libImlib_light_a-cache.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-colors.o -MD -MP -MF .deps/libImlib_light_a-colors.Tpo -c -o libImlib_light_a-colors.o `test -f 'colors.c' || echo './'`colors.c
mv -f .deps/libImlib_light_a-colors.Tpo .deps/libImlib_light_a-colors.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-load.o -MD -MP -MF .deps/libImlib_light_a-load.Tpo -c -o libImlib_light_a-load.o `test -f 'load.c' || echo './'`load.c
load.c: In function 'Imlib_load_image':
load.c:210:23: warning: variable 'e' set but not used [-Wunused-but-set-variable]
load.c:209:23: warning: variable 'iden' set but not used [-Wunused-but-set-variable]
mv -f .deps/libImlib_light_a-load.Tpo .deps/libImlib_light_a-load.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-misc.o -MD -MP -MF .deps/libImlib_light_a-misc.Tpo -c -o libImlib_light_a-misc.o `test -f 'misc.c' || echo './'`misc.c
misc.c: In function 'Imlib_init':
misc.c:90:23: warning: variable 'newcm' set but not used [-Wunused-but-set-variable]
misc.c: In function 'Imlib_init_with_params':
misc.c:1156:30: warning: variable 'bit' set but not used [-Wunused-but-set-variable]
mv -f .deps/libImlib_light_a-misc.Tpo .deps/libImlib_light_a-misc.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-rend.o -MD -MP -MF .deps/libImlib_light_a-rend.Tpo -c -o libImlib_light_a-rend.o `test -f 'rend.c' || echo './'`rend.c
rend.c: In function 'Imlib_render':
rend.c:6247:52: warning: variable 'ok' set but not used [-Wunused-but-set-variable]
rend.c:6247:38: warning: variable 'shared_image' set but not used [-Wunused-but-set-variable]
rend.c:6247:23: warning: variable 'shared_pixmap' set but not used [-Wunused-but-set-variable]
mv -f .deps/libImlib_light_a-rend.Tpo .deps/libImlib_light_a-rend.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-utils.o -MD -MP -MF .deps/libImlib_light_a-utils.Tpo -c -o libImlib_light_a-utils.o `test -f 'utils.c' || echo './'`utils.c
mv -f .deps/libImlib_light_a-utils.Tpo .deps/libImlib_light_a-utils.Po
rm -f libImlib-light.a
ar cru libImlib-light.a libImlib_light_a-cache.o libImlib_light_a-colors.o libImlib_light_a-load.o libImlib_light_a-misc.o libImlib_light_a-rend.o libImlib_light_a-utils.o 
ranlib libImlib-light.a
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/Imlib-light'
Making all in xine-toolkit
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/xine-toolkit'
Making all in po
make[6]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/xine-toolkit/po'
test ! -f ./xitk.pot || \
	  test -z "cs.gmo de.gmo es.gmo eu.gmo fr.gmo it.gmo ja.gmo nb.gmo pl.gmo pt_BR.gmo ru.gmo sk.gmo uk.gmo" || /usr/bin/make cs.gmo de.gmo es.gmo eu.gmo fr.gmo it.gmo ja.gmo nb.gmo pl.gmo pt_BR.gmo ru.gmo sk.gmo uk.gmo
make[7]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/xine-toolkit/po'
rm -f cs.gmo && /usr/bin/msgfmt -c --statistics -o cs.gmo cs.po
23 translated messages.
rm -f de.gmo && /usr/bin/msgfmt -c --statistics -o de.gmo de.po
23 translated messages.
rm -f es.gmo && /usr/bin/msgfmt -c --statistics -o es.gmo es.po
23 translated messages.
rm -f eu.gmo && /usr/bin/msgfmt -c --statistics -o eu.gmo eu.po
23 translated messages.
rm -f fr.gmo && /usr/bin/msgfmt -c --statistics -o fr.gmo fr.po
23 translated messages.
rm -f it.gmo && /usr/bin/msgfmt -c --statistics -o it.gmo it.po
23 translated messages.
rm -f ja.gmo && /usr/bin/msgfmt -c --statistics -o ja.gmo ja.po
18 translated messages, 5 untranslated messages.
rm -f nb.gmo && /usr/bin/msgfmt -c --statistics -o nb.gmo nb.po
23 translated messages.
rm -f pl.gmo && /usr/bin/msgfmt -c --statistics -o pl.gmo pl.po
23 translated messages.
rm -f pt_BR.gmo && /usr/bin/msgfmt -c --statistics -o pt_BR.gmo pt_BR.po
23 translated messages.
rm -f ru.gmo && /usr/bin/msgfmt -c --statistics -o ru.gmo ru.po
23 translated messages.
rm -f sk.gmo && /usr/bin/msgfmt -c --statistics -o sk.gmo sk.po
23 translated messages.
rm -f uk.gmo && /usr/bin/msgfmt -c --statistics -o uk.gmo uk.po
18 translated messages, 5 untranslated messages.
make[7]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/xine-toolkit/po'
touch stamp-po
make[6]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/xine-toolkit/po'
make[6]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/xine-toolkit'
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-browser.o -MD -MP -MF .deps/libxitk_a-browser.Tpo -c -o libxitk_a-browser.o `test -f 'browser.c' || echo './'`browser.c
browser.c: In function 'paint':
browser.c:69:2: warning: #warning NEED [-Wcpp]
browser.c:82:2: warning: #warning NEED [-Wcpp]
browser.c: In function 'xitk_browser_rebuild_browser':
browser.c:328:19: warning: variable 'max_shortcut' set but not used [-Wunused-but-set-variable]
browser.c: In function 'xitk_browser_page_up':
browser.c:638:14: warning: variable 'max' set but not used [-Wunused-but-set-variable]
browser.c: In function 'xitk_browser_page_down':
browser.c:662:9: warning: variable 'min' set but not used [-Wunused-but-set-variable]
mv -f .deps/libxitk_a-browser.Tpo .deps/libxitk_a-browser.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-button.o -MD -MP -MF .deps/libxitk_a-button.Tpo -c -o libxitk_a-button.o `test -f 'button.c' || echo './'`button.c
mv -f .deps/libxitk_a-button.Tpo .deps/libxitk_a-button.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-checkbox.o -MD -MP -MF .deps/libxitk_a-checkbox.Tpo -c -o libxitk_a-checkbox.o `test -f 'checkbox.c' || echo './'`checkbox.c
mv -f .deps/libxitk_a-checkbox.Tpo .deps/libxitk_a-checkbox.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-combo.o -MD -MP -MF .deps/libxitk_a-combo.Tpo -c -o libxitk_a-combo.o `test -f 'combo.c' || echo './'`combo.c
mv -f .deps/libxitk_a-combo.Tpo .deps/libxitk_a-combo.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-config.o -MD -MP -MF .deps/libxitk_a-config.Tpo -c -o libxitk_a-config.o `test -f 'config.c' || echo './'`config.c
mv -f .deps/libxitk_a-config.Tpo .deps/libxitk_a-config.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-cursors.o -MD -MP -MF .deps/libxitk_a-cursors.Tpo -c -o libxitk_a-cursors.o `test -f 'cursors.c' || echo './'`cursors.c
cursors.c: In function '_cursors_create_cursor':
cursors.c:693:7: warning: pointer targets in passing argument 3 of 'XCreateBitmapFromData' differ in signedness [-Wpointer-sign]
/usr/include/X11/Xlib.h:1612:15: note: expected 'const char *' but argument is of type 'const unsigned char *'
mv -f .deps/libxitk_a-cursors.Tpo .deps/libxitk_a-cursors.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-dnd.o -MD -MP -MF .deps/libxitk_a-dnd.Tpo -c -o libxitk_a-dnd.o `test -f 'dnd.c' || echo './'`dnd.c
dnd.c: In function '_dnd_get_selection':
dnd.c:148:19: warning: variable 'nread' set but not used [-Wunused-but-set-variable]
dnd.c: In function 'xitk_init_dnd':
dnd.c:327:3: warning: passing argument 2 of 'XInternAtoms' from incompatible pointer type [enabled by default]
/usr/include/X11/Xlib.h:1549:15: note: expected 'char **' but argument is of type 'const char * const*'
dnd.c:328:3: warning: passing argument 2 of 'XInternAtoms' from incompatible pointer type [enabled by default]
/usr/include/X11/Xlib.h:1549:15: note: expected 'char **' but argument is of type 'const char * const*'
dnd.c: In function 'xitk_process_client_dnd_message':
dnd.c:547:30: warning: variable 'toplevel' set but not used [-Wunused-but-set-variable]
dnd.c:48:39: warning: array subscript is above array bounds [-Warray-bounds]
mv -f .deps/libxitk_a-dnd.Tpo .deps/libxitk_a-dnd.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-doublebox.o -MD -MP -MF .deps/libxitk_a-doublebox.Tpo -c -o libxitk_a-doublebox.o `test -f 'doublebox.c' || echo './'`doublebox.c
mv -f .deps/libxitk_a-doublebox.Tpo .deps/libxitk_a-doublebox.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-font.o -MD -MP -MF .deps/libxitk_a-font.Tpo -c -o libxitk_a-font.o `test -f 'font.c' || echo './'`font.c
mv -f .deps/libxitk_a-font.Tpo .deps/libxitk_a-font.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-getdeskroot.o -MD -MP -MF .deps/libxitk_a-getdeskroot.Tpo -c -o libxitk_a-getdeskroot.o `test -f 'getdeskroot.c' || echo './'`getdeskroot.c
mv -f .deps/libxitk_a-getdeskroot.Tpo .deps/libxitk_a-getdeskroot.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-image.o -MD -MP -MF .deps/libxitk_a-image.Tpo -c -o libxitk_a-image.o `test -f 'image.c' || echo './'`image.c
image.c: In function '_draw_frame':
image.c:1360:51: warning: variable 'fheight' set but not used [-Wunused-but-set-variable]
mv -f .deps/libxitk_a-image.Tpo .deps/libxitk_a-image.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-inputtext.o -MD -MP -MF .deps/libxitk_a-inputtext.Tpo -c -o libxitk_a-inputtext.o `test -f 'inputtext.c' || echo './'`inputtext.c
mv -f .deps/libxitk_a-inputtext.Tpo .deps/libxitk_a-inputtext.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-intbox.o -MD -MP -MF .deps/libxitk_a-intbox.Tpo -c -o libxitk_a-intbox.o `test -f 'intbox.c' || echo './'`intbox.c
mv -f .deps/libxitk_a-intbox.Tpo .deps/libxitk_a-intbox.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-label.o -MD -MP -MF .deps/libxitk_a-label.Tpo -c -o libxitk_a-label.o `test -f 'label.c' || echo './'`label.c
mv -f .deps/libxitk_a-label.Tpo .deps/libxitk_a-label.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-labelbutton.o -MD -MP -MF .deps/libxitk_a-labelbutton.Tpo -c -o libxitk_a-labelbutton.o `test -f 'labelbutton.c' || echo './'`labelbutton.c
mv -f .deps/libxitk_a-labelbutton.Tpo .deps/libxitk_a-labelbutton.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-list.o -MD -MP -MF .deps/libxitk_a-list.Tpo -c -o libxitk_a-list.o `test -f 'list.c' || echo './'`list.c
mv -f .deps/libxitk_a-list.Tpo .deps/libxitk_a-list.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-menu.o -MD -MP -MF .deps/libxitk_a-menu.Tpo -c -o libxitk_a-menu.o `test -f 'menu.c' || echo './'`menu.c
mv -f .deps/libxitk_a-menu.Tpo .deps/libxitk_a-menu.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-mrlbrowser.o -MD -MP -MF .deps/libxitk_a-mrlbrowser.Tpo -c -o libxitk_a-mrlbrowser.o `test -f 'mrlbrowser.c' || echo './'`mrlbrowser.c
mrlbrowser.c: In function 'xitk_mrlbrowser_create':
mrlbrowser.c:978:31: warning: variable 'screen' set but not used [-Wunused-but-set-variable]
mv -f .deps/libxitk_a-mrlbrowser.Tpo .deps/libxitk_a-mrlbrowser.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-skin.o -MD -MP -MF .deps/libxitk_a-skin.Tpo -c -o libxitk_a-skin.o `test -f 'skin.c' || echo './'`skin.c
skin.c:109:2: warning: #warning FIXME [-Wcpp]
mv -f .deps/libxitk_a-skin.Tpo .deps/libxitk_a-skin.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-slider.o -MD -MP -MF .deps/libxitk_a-slider.Tpo -c -o libxitk_a-slider.o `test -f 'slider.c' || echo './'`slider.c
mv -f .deps/libxitk_a-slider.Tpo .deps/libxitk_a-slider.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-tabs.o -MD -MP -MF .deps/libxitk_a-tabs.Tpo -c -o libxitk_a-tabs.o `test -f 'tabs.c' || echo './'`tabs.c
tabs.c: In function 'paint':
tabs.c:171:24: warning: variable 'private_data' set but not used [-Wunused-but-set-variable]
mv -f .deps/libxitk_a-tabs.Tpo .deps/libxitk_a-tabs.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-tips.o -MD -MP -MF .deps/libxitk_a-tips.Tpo -c -o libxitk_a-tips.o `test -f 'tips.c' || echo './'`tips.c
mv -f .deps/libxitk_a-tips.Tpo .deps/libxitk_a-tips.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-widget.o -MD -MP -MF .deps/libxitk_a-widget.Tpo -c -o libxitk_a-widget.o `test -f 'widget.c' || echo './'`widget.c
mv -f .deps/libxitk_a-widget.Tpo .deps/libxitk_a-widget.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-window.o -MD -MP -MF .deps/libxitk_a-window.Tpo -c -o libxitk_a-window.o `test -f 'window.c' || echo './'`window.c
window.c: In function '_window_handle_event':
window.c:671:16: warning: variable 'len' set but not used [-Wunused-but-set-variable]
window.c: In function 'xitk_window_dialog_button_free_with_width':
window.c:888:8: warning: 'height' may be used uninitialized in this function [-Wuninitialized]
window.c:888:8: warning: 'width' may be used uninitialized in this function [-Wuninitialized]
window.c: In function 'xitk_window_dialog_one_button_with_width':
window.c:1024:8: warning: 'height' may be used uninitialized in this function [-Wuninitialized]
window.c:1024:8: warning: 'width' may be used uninitialized in this function [-Wuninitialized]
window.c: In function 'xitk_window_dialog_checkbox_two_buttons_with_width':
window.c:1264:8: warning: 'height' may be used uninitialized in this function [-Wuninitialized]
window.c:1264:8: warning: 'width' may be used uninitialized in this function [-Wuninitialized]
window.c: In function 'xitk_window_dialog_three_buttons_with_width':
window.c:1492:8: warning: 'height' may be used uninitialized in this function [-Wuninitialized]
window.c:1492:8: warning: 'width' may be used uninitialized in this function [-Wuninitialized]
mv -f .deps/libxitk_a-window.Tpo .deps/libxitk_a-window.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-xitk.o -MD -MP -MF .deps/libxitk_a-xitk.Tpo -c -o libxitk_a-xitk.o `test -f 'xitk.c' || echo './'`xitk.c
xitk.c: In function 'xitk_xevent_notify':
xitk.c:1332:19: warning: variable 'len' set but not used [-Wunused-but-set-variable]
xitk.c:1556:22: warning: variable 'err' set but not used [-Wunused-but-set-variable]
xitk.c:1774:2: warning: #warning FIXME [-Wcpp]
mv -f .deps/libxitk_a-xitk.Tpo .deps/libxitk_a-xitk.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-recode.o -MD -MP -MF .deps/libxitk_a-recode.Tpo -c -o libxitk_a-recode.o `test -f 'recode.c' || echo './'`recode.c
mv -f .deps/libxitk_a-recode.Tpo .deps/libxitk_a-recode.Po
rm -f libxitk.a
ar cru libxitk.a libxitk_a-browser.o libxitk_a-button.o libxitk_a-checkbox.o libxitk_a-combo.o libxitk_a-config.o libxitk_a-cursors.o libxitk_a-dnd.o libxitk_a-doublebox.o libxitk_a-font.o libxitk_a-getdeskroot.o libxitk_a-image.o libxitk_a-inputtext.o libxitk_a-intbox.o libxitk_a-label.o libxitk_a-labelbutton.o libxitk_a-list.o libxitk_a-menu.o libxitk_a-mrlbrowser.o libxitk_a-skin.o libxitk_a-slider.o libxitk_a-tabs.o libxitk_a-tips.o libxitk_a-widget.o libxitk_a-window.o libxitk_a-xitk.o libxitk_a-recode.o 
ranlib libxitk.a
make[6]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/xine-toolkit'
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/xine-toolkit'
Making all in skins
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/skins'
Making all in xinetic
make[6]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/skins/xinetic'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/skins/xinetic'
make[6]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/skins'
make[6]: Nothing to be done for `all-am'.
make[6]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/skins'
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/skins'
Making all in oxine
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/oxine'
Making all in data
make[6]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/oxine/data'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/oxine/data'
make[6]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/oxine'
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT list.o -MD -MP -MF .deps/list.Tpo -c -o list.o list.c
mv -f .deps/list.Tpo .deps/list.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT mediamarks.o -MD -MP -MF .deps/mediamarks.Tpo -c -o mediamarks.o mediamarks.c
mediamarks.c: In function 'read_mediamarks':
mediamarks.c:499:3: warning: 'xml_parser_init' is deprecated (declared at /usr/include/xine/xmlparser.h:64) [-Wdeprecated-declarations]
mediamarks.c:501:3: warning: 'xml_parser_build_tree' is deprecated (declared at /usr/include/xine/xmlparser.h:68) [-Wdeprecated-declarations]
mv -f .deps/mediamarks.Tpo .deps/mediamarks.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT odk.o -MD -MP -MF .deps/odk.Tpo -c -o odk.o odk.c
mv -f .deps/odk.Tpo .deps/odk.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT otk.o -MD -MP -MF .deps/otk.Tpo -c -o otk.o otk.c
otk.c:1863:13: warning: 'otk_update_job' defined but not used [-Wunused-function]
mv -f .deps/otk.Tpo .deps/otk.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT oxine.o -MD -MP -MF .deps/oxine.Tpo -c -o oxine.o oxine.c
oxine.c: In function 'read_main_menu':
oxine.c:476:3: warning: 'xml_parser_init' is deprecated (declared at /usr/include/xine/xmlparser.h:64) [-Wdeprecated-declarations]
oxine.c:478:3: warning: 'xml_parser_build_tree' is deprecated (declared at /usr/include/xine/xmlparser.h:68) [-Wdeprecated-declarations]
mv -f .deps/oxine.Tpo .deps/oxine.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT playlist.o -MD -MP -MF .deps/playlist.Tpo -c -o playlist.o playlist.c
mv -f .deps/playlist.Tpo .deps/playlist.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT utils.o -MD -MP -MF .deps/utils.Tpo -c -o utils.o utils.c
mv -f .deps/utils.Tpo .deps/utils.Po
rm -f liboxine.a
ar cru liboxine.a list.o mediamarks.o odk.o otk.o oxine.o playlist.o utils.o 
ranlib liboxine.a
make[6]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/oxine'
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk/oxine'
Making all in .
make[5]: Entering directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk'
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/readline -I../../src/xitk/xine-toolkit -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT actions.o -MD -MP -MF .deps/actions.Tpo -c -o actions.o actions.c
mv -f .deps/actions.Tpo .deps/actions.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/readline -I../../src/xitk/xine-toolkit -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT control.o -MD -MP -MF .deps/control.Tpo -c -o control.o control.c
mv -f .deps/control.Tpo .deps/control.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/readline -I../../src/xitk/xine-toolkit -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT download.o -MD -MP -MF .deps/download.Tpo -c -o download.o download.c
download.c:31:24: fatal error: curl/types.h: No such file or directory
compilation terminated.
make[5]: *** [download.o] Error 1
make[5]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src/xitk'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/xine-ui-c9qcR8/xine-ui-0.99.6'
make: *** [build-stamp] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20110823-0109

Finished
────────

E: Build failure (dpkg-buildpackage died)

┌──────────────────────────────────────────────────────────────────────────────┐
│ Cleanup                                                                      │
└──────────────────────────────────────────────────────────────────────────────┘

Purging /var/lib/schroot/mount/lsid64-31d5d243-998e-4024-9ae6-c595455ea678/build/xine-ui-c9qcR8
Not cleaning session: cloned chroot in use

┌──────────────────────────────────────────────────────────────────────────────┐
│ Summary                                                                      │
└──────────────────────────────────────────────────────────────────────────────┘

Architecture: amd64
Build-Space: 19036
Build-Time: 35
Distribution: lsid64
Fail-Stage: build
Install-Time: 12
Job: xine-ui_0.99.6-1
Package: xine-ui
Package-Time: 57
Source-Version: 0.99.6-1
Space: 19036
Status: attempted
Version: 0.99.6-1
────────────────────────────────────────────────────────────────────────────────
Finished at 20110823-0109
Build needed 00:00:57, 19036k disc space
DC-Message: Failed, but took only 58.084731. Retrying, you never know.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
Requested exclusive mode, but other builds running.
sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-77.nancy.grid5000.fr

╔══════════════════════════════════════════════════════════════════════════════╗
║ xine-ui 0.99.6-1 (amd64)                                   23 Aug 2011 01:19 ║
╚══════════════════════════════════════════════════════════════════════════════╝

Package: xine-ui
Version: 0.99.6-1
Source Version: 0.99.6-1
Distribution: lsid64
Architecture: amd64


┌──────────────────────────────────────────────────────────────────────────────┐
│ Update chroot                                                                │
└──────────────────────────────────────────────────────────────────────────────┘

Ign http://localhost sid InRelease
Hit http://localhost sid Release.gpg
Hit http://localhost sid Release
Ign http://localhost sid/main Sources/DiffIndex
Ign http://localhost sid/contrib Sources/DiffIndex
Ign http://localhost sid/non-free Sources/DiffIndex
Ign http://localhost sid/main amd64 Packages/DiffIndex
Ign http://localhost sid/contrib amd64 Packages/DiffIndex
Ign http://localhost sid/non-free amd64 Packages/DiffIndex
Ign http://localhost sid/contrib TranslationIndex
Ign http://localhost sid/main TranslationIndex
Ign http://localhost sid/non-free TranslationIndex
Hit http://localhost sid/main Sources
Hit http://localhost sid/contrib Sources
Hit http://localhost sid/non-free Sources
Hit http://localhost sid/main amd64 Packages
Hit http://localhost sid/contrib amd64 Packages
Hit http://localhost sid/non-free amd64 Packages
Ign http://localhost sid/contrib Translation-en
Ign http://localhost sid/main Translation-en
Ign http://localhost sid/non-free Translation-en
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

┌──────────────────────────────────────────────────────────────────────────────┐
│ Fetch source files                                                           │
└──────────────────────────────────────────────────────────────────────────────┘


Check APT
─────────

Checking available source versions...

Download source files with APT
──────────────────────────────

Reading package lists...
Building dependency tree...
Reading state information...
NOTICE: 'xine-ui' packaging is maintained in the 'Hg' version control system at:
http://hg.debian.org/hg/xine-lib/pkg/xine-ui-0.99.5-deb
Need to get 2577 kB of source archives.
Get:1 http://localhost/debian/ sid/main xine-ui 0.99.6-1 (dsc) [1704 B]
Get:2 http://localhost/debian/ sid/main xine-ui 0.99.6-1 (tar) [2181 kB]
Get:3 http://localhost/debian/ sid/main xine-ui 0.99.6-1 (diff) [395 kB]
Fetched 2577 kB in 0s (54.8 MB/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 `/build/xine-ui-5NYhrA/resolver-JzlmFY/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
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/700 B of archives.
After this operation, 0 B of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  sbuild-build-depends-core-dummy
Authentication warning overridden.
Selecting previously deselected package sbuild-build-depends-core-dummy.
(Reading database ... 10769 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) ...
Cannot open /var/lib/schroot/mount/lsid64-6b6673d2-4e39-4ad0-a464-1205529f8966/etc/lsb-release: No such file or directory
Merged Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>> 5.0.0), libxine-dev (>= 1.1.0), libpng-dev, libx11-dev, libxext-dev, libxft-dev, libxinerama-dev, libxt-dev, libxtst-dev, libxv-dev, libxxf86vm-dev, libaa1-dev, libgpmg1-dev (>> 1.19.6), liblircclient-dev, libcurl3-gnutls-dev, libfreetype6-dev, libreadline-dev, libcaca-dev
Merged Build-Conflicts: libcurl3-openssl-dev
Filtered Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>> 5.0.0), libxine-dev (>= 1.1.0), libpng-dev, libx11-dev, libxext-dev, libxft-dev, libxinerama-dev, libxt-dev, libxtst-dev, libxv-dev, libxxf86vm-dev, libaa1-dev, libgpmg1-dev (>> 1.19.6), liblircclient-dev, libcurl3-gnutls-dev, libfreetype6-dev, libreadline-dev, libcaca-dev
Filtered Build-Conflicts: libcurl3-openssl-dev
dpkg-deb: building package `sbuild-build-depends-xine-ui-dummy' in `/build/xine-ui-5NYhrA/resolver-6MH4Mk/apt_archive/sbuild-build-depends-xine-ui-dummy.deb'.
OK
Reading package lists...

┌──────────────────────────────────────────────────────────────────────────────┐
│ Install xine-ui build dependencies (apt-based resolver)                      │
└──────────────────────────────────────────────────────────────────────────────┘

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  bsdmainutils ca-certificates comerr-dev debhelper file fontconfig-config
  gettext gettext-base groff-base html2text intltool-debian krb5-multidev
  libaa1 libaa1-dev libcaca-dev libcaca0 libcroco3 libcurl3-gnutls
  libcurl4-gnutls-dev libexpat1 libexpat1-dev libfontconfig1
  libfontconfig1-dev libfreetype6 libfreetype6-dev libgcrypt11 libgcrypt11-dev
  libglib2.0-0 libgnutls-dev libgnutls-openssl27 libgnutls26 libgnutlsxx27
  libgpg-error-dev libgpg-error0 libgpm-dev libgpm2 libgpmg1-dev
  libgssapi-krb5-2 libgssrpc4 libice-dev libice6 libidn11 libidn11-dev
  libk5crypto3 libkadm5clnt-mit8 libkadm5srv-mit8 libkdb5-5 libkeyutils1
  libkrb5-3 libkrb5-dev libkrb5support0 libldap-2.4-2 libldap2-dev
  liblircclient-dev liblircclient0 libmagic1 libncurses5-dev libpcre3
  libpipeline1 libpng12-0 libpng12-dev libpopt0 libpthread-stubs0
  libpthread-stubs0-dev libreadline-dev libreadline6-dev librtmp0 libsasl2-2
  libslang2-dev libsm-dev libsm6 libssl1.0.0 libtasn1-3 libtasn1-3-dev
  libunistring0 libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxcb1
  libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxft-dev libxft2
  libxi-dev libxi6 libxine-dev libxine1-bin libxinerama-dev libxinerama1
  libxml2 libxrender-dev libxrender1 libxt-dev libxt6 libxtst-dev libxtst6
  libxv-dev libxv1 libxxf86vm-dev libxxf86vm1 man-db openssl pkg-config
  po-debconf ttf-dejavu-core ucf x11-common x11proto-core-dev
  x11proto-input-dev x11proto-kb-dev x11proto-record-dev x11proto-render-dev
  x11proto-video-dev x11proto-xext-dev x11proto-xf86vidmode-dev
  x11proto-xinerama-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
Suggested packages:
  wamerican wordlist whois vacation doc-base dh-make gettext-doc groff
  krb5-doc libcurl3-dbg rng-tools libgcrypt11-doc gnutls-doc gnutls-bin
  guile-gnutls gpm krb5-user lirc ncurses-doc www-browser libmail-box-perl
Recommended packages:
  curl wget lynx-cur autopoint libglib2.0-data shared-mime-info
  libsasl2-modules xml-core libmail-sendmail-perl
The following NEW packages will be installed:
  bsdmainutils ca-certificates comerr-dev debhelper file fontconfig-config
  gettext gettext-base groff-base html2text intltool-debian krb5-multidev
  libaa1 libaa1-dev libcaca-dev libcaca0 libcroco3 libcurl3-gnutls
  libcurl4-gnutls-dev libexpat1 libexpat1-dev libfontconfig1
  libfontconfig1-dev libfreetype6 libfreetype6-dev libgcrypt11 libgcrypt11-dev
  libglib2.0-0 libgnutls-dev libgnutls-openssl27 libgnutls26 libgnutlsxx27
  libgpg-error-dev libgpg-error0 libgpm-dev libgpm2 libgpmg1-dev
  libgssapi-krb5-2 libgssrpc4 libice-dev libice6 libidn11 libidn11-dev
  libk5crypto3 libkadm5clnt-mit8 libkadm5srv-mit8 libkdb5-5 libkeyutils1
  libkrb5-3 libkrb5-dev libkrb5support0 libldap-2.4-2 libldap2-dev
  liblircclient-dev liblircclient0 libmagic1 libncurses5-dev libpcre3
  libpipeline1 libpng12-0 libpng12-dev libpopt0 libpthread-stubs0
  libpthread-stubs0-dev libreadline-dev libreadline6-dev librtmp0 libsasl2-2
  libslang2-dev libsm-dev libsm6 libssl1.0.0 libtasn1-3 libtasn1-3-dev
  libunistring0 libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxcb1
  libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxft-dev libxft2
  libxi-dev libxi6 libxine-dev libxine1-bin libxinerama-dev libxinerama1
  libxml2 libxrender-dev libxrender1 libxt-dev libxt6 libxtst-dev libxtst6
  libxv-dev libxv1 libxxf86vm-dev libxxf86vm1 man-db openssl pkg-config
  po-debconf sbuild-build-depends-xine-ui-dummy ttf-dejavu-core ucf x11-common
  x11proto-core-dev x11proto-input-dev x11proto-kb-dev x11proto-record-dev
  x11proto-render-dev x11proto-video-dev x11proto-xext-dev
  x11proto-xf86vidmode-dev x11proto-xinerama-dev xorg-sgml-doctools xtrans-dev
  zlib1g-dev
0 upgraded, 125 newly installed, 0 to remove and 0 not upgraded.
Need to get 38.2 MB/38.2 MB of archives.
After this operation, 112 MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  libpipeline1 libgpg-error0 libgcrypt11 libtasn1-3 libgnutls26
  libgnutls-openssl27 libkeyutils1 libkrb5support0 libk5crypto3 libkrb5-3
  libgssapi-krb5-2 libgssrpc4 libidn11 libkadm5clnt-mit8 libkdb5-5
  libkadm5srv-mit8 libsasl2-2 libldap-2.4-2 libpcre3 librtmp0 libssl1.0.0
  openssl ca-certificates libcurl3-gnutls libexpat1 libfreetype6 ucf
  ttf-dejavu-core fontconfig-config libfontconfig1 x11-common libice6
  libpng12-0 libsm6 libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxext6
  libxrender1 libxft2 libxi6 libxinerama1 libxt6 libxv1 libxxf86vm1
  libgnutlsxx27 bsdmainutils groff-base libpopt0 man-db libmagic1 file
  gettext-base libgpm2 libxml2 html2text libglib2.0-0 libcroco3 libunistring0
  gettext intltool-debian po-debconf debhelper comerr-dev krb5-multidev libaa1
  xorg-sgml-doctools x11proto-core-dev libxau-dev libxdmcp-dev
  x11proto-input-dev x11proto-kb-dev xtrans-dev libpthread-stubs0
  libpthread-stubs0-dev libxcb1-dev libx11-dev zlib1g-dev libpng12-dev
  libslang2-dev libncurses5-dev libaa1-dev libcaca0 libcaca-dev
  libgpg-error-dev libgcrypt11-dev libtasn1-3-dev libgnutls-dev pkg-config
  libidn11-dev libkrb5-dev libldap2-dev libcurl4-gnutls-dev libexpat1-dev
  libfreetype6-dev libfontconfig1-dev libgpm-dev libgpmg1-dev libice-dev
  liblircclient0 libreadline6-dev libreadline-dev libsm-dev x11proto-xext-dev
  libxext-dev x11proto-render-dev libxrender-dev libxft-dev libxi-dev
  libxine1-bin libxine-dev x11proto-xinerama-dev libxinerama-dev libxt-dev
  libxtst6 x11proto-record-dev libxtst-dev x11proto-video-dev libxv-dev
  x11proto-xf86vidmode-dev libxxf86vm-dev liblircclient-dev
  sbuild-build-depends-xine-ui-dummy
Authentication warning overridden.
Get:1 http://localhost/debian/ sid/main libpipeline1 amd64 1.2.0-3 [37.9 kB]
Get:2 http://localhost/debian/ sid/main libgpg-error0 amd64 1.10-0.3 [68.7 kB]
Get:3 http://localhost/debian/ sid/main libgcrypt11 amd64 1.4.6-9 [285 kB]
Get:4 http://localhost/debian/ sid/main libtasn1-3 amd64 2.9-4 [63.9 kB]
Get:5 http://localhost/debian/ sid/main libgnutls26 amd64 2.12.7-6 [785 kB]
Get:6 http://localhost/debian/ sid/main libgnutls-openssl27 amd64 2.12.7-6 [390 kB]
Get:7 http://localhost/debian/ sid/main libkeyutils1 amd64 1.5.2-1 [8772 B]
Get:8 http://localhost/debian/ sid/main libkrb5support0 amd64 1.9.1+dfsg-2 [47.1 kB]
Get:9 http://localhost/debian/ sid/main libk5crypto3 amd64 1.9.1+dfsg-2 [111 kB]
Get:10 http://localhost/debian/ sid/main libkrb5-3 amd64 1.9.1+dfsg-2 [381 kB]
Get:11 http://localhost/debian/ sid/main libgssapi-krb5-2 amd64 1.9.1+dfsg-2 [147 kB]
Get:12 http://localhost/debian/ sid/main libgssrpc4 amd64 1.9.1+dfsg-2 [85.4 kB]
Get:13 http://localhost/debian/ sid/main libidn11 amd64 1.22-3 [165 kB]
Get:14 http://localhost/debian/ sid/main libkadm5clnt-mit8 amd64 1.9.1+dfsg-2 [64.9 kB]
Get:15 http://localhost/debian/ sid/main libkdb5-5 amd64 1.9.1+dfsg-2 [63.0 kB]
Get:16 http://localhost/debian/ sid/main libkadm5srv-mit8 amd64 1.9.1+dfsg-2 [81.1 kB]
Get:17 http://localhost/debian/ sid/main libsasl2-2 amd64 2.1.24~rc1.dfsg1+cvs2011-05-23-6 [119 kB]
Get:18 http://localhost/debian/ sid/main libldap-2.4-2 amd64 2.4.25-3 [235 kB]
Get:19 http://localhost/debian/ sid/main libpcre3 amd64 8.12-4 [225 kB]
Get:20 http://localhost/debian/ sid/main librtmp0 amd64 2.4~20110711.gitc28f1bab-1 [61.4 kB]
Get:21 http://localhost/debian/ sid/main libssl1.0.0 amd64 1.0.0d-3 [1141 kB]
Get:22 http://localhost/debian/ sid/main openssl amd64 1.0.0d-3 [678 kB]
Get:23 http://localhost/debian/ sid/main ca-certificates all 20110502 [176 kB]
Get:24 http://localhost/debian/ sid/main libcurl3-gnutls amd64 7.21.7-1 [297 kB]
Get:25 http://localhost/debian/ sid/main libexpat1 amd64 2.0.1-7 [137 kB]
Get:26 http://localhost/debian/ sid/main libfreetype6 amd64 2.4.6-2 [435 kB]
Get:27 http://localhost/debian/ sid/main ucf all 3.0025+nmu2 [70.6 kB]
Get:28 http://localhost/debian/ sid/main ttf-dejavu-core all 2.33-2 [1552 kB]
Get:29 http://localhost/debian/ sid/main fontconfig-config all 2.8.0-3 [221 kB]
Get:30 http://localhost/debian/ sid/main libfontconfig1 amd64 2.8.0-3 [282 kB]
Get:31 http://localhost/debian/ sid/main x11-common all 1:7.6+8 [276 kB]
Get:32 http://localhost/debian/ sid/main libice6 amd64 2:1.0.7-2 [56.5 kB]
Get:33 http://localhost/debian/ sid/main libpng12-0 amd64 1.2.46-3 [188 kB]
Get:34 http://localhost/debian/ sid/main libsm6 amd64 2:1.2.0-2 [29.8 kB]
Get:35 http://localhost/debian/ sid/main libxau6 amd64 1:1.0.6-3 [17.0 kB]
Get:36 http://localhost/debian/ sid/main libxdmcp6 amd64 1:1.1.0-3 [22.9 kB]
Get:37 http://localhost/debian/ sid/main libxcb1 amd64 1.7-3 [45.4 kB]
Get:38 http://localhost/debian/ sid/main libx11-data all 2:1.4.4-1 [183 kB]
Get:39 http://localhost/debian/ sid/main libx11-6 amd64 2:1.4.4-1 [889 kB]
Get:40 http://localhost/debian/ sid/main libxext6 amd64 2:1.3.0-3 [52.3 kB]
Get:41 http://localhost/debian/ sid/main libxrender1 amd64 1:0.9.6-2 [31.5 kB]
Get:42 http://localhost/debian/ sid/main libxft2 amd64 2.2.0-3 [58.1 kB]
Get:43 http://localhost/debian/ sid/main libxi6 amd64 2:1.4.3-3 [66.2 kB]
Get:44 http://localhost/debian/ sid/main libxinerama1 amd64 2:1.1.1-3 [15.9 kB]
Get:45 http://localhost/debian/ sid/main libxt6 amd64 1:1.1.1-2 [207 kB]
Get:46 http://localhost/debian/ sid/main libxv1 amd64 2:1.0.6-2 [20.7 kB]
Get:47 http://localhost/debian/ sid/main libxxf86vm1 amd64 1:1.1.1-2 [18.2 kB]
Get:48 http://localhost/debian/ sid/main libgnutlsxx27 amd64 2.12.7-6 [391 kB]
Get:49 http://localhost/debian/ sid/main bsdmainutils amd64 8.2.3 [208 kB]
Get:50 http://localhost/debian/ sid/main groff-base amd64 1.21-6 [1150 kB]
Get:51 http://localhost/debian/ sid/main libpopt0 amd64 1.16-1 [54.1 kB]
Get:52 http://localhost/debian/ sid/main man-db amd64 2.6.0.2-2 [1023 kB]
Get:53 http://localhost/debian/ sid/main libmagic1 amd64 5.04-5+b1 [233 kB]
Get:54 http://localhost/debian/ sid/main file amd64 5.04-5+b1 [49.8 kB]
Get:55 http://localhost/debian/ sid/main gettext-base amd64 0.18.1.1-4 [154 kB]
Get:56 http://localhost/debian/ sid/main libgpm2 amd64 1.20.4-3.4 [35.5 kB]
Get:57 http://localhost/debian/ sid/main libxml2 amd64 2.7.8.dfsg-4 [892 kB]
Get:58 http://localhost/debian/ sid/main html2text amd64 1.3.2a-15 [103 kB]
Get:59 http://localhost/debian/ sid/main libglib2.0-0 amd64 2.28.6-1 [1648 kB]
Get:60 http://localhost/debian/ sid/main libcroco3 amd64 0.6.2-1 [125 kB]
Get:61 http://localhost/debian/ sid/main libunistring0 amd64 0.9.3-4 [437 kB]
Get:62 http://localhost/debian/ sid/main gettext amd64 0.18.1.1-4 [2079 kB]
Get:63 http://localhost/debian/ sid/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
Get:64 http://localhost/debian/ sid/main po-debconf all 1.0.16+nmu1 [223 kB]
Get:65 http://localhost/debian/ sid/main debhelper all 8.9.4 [561 kB]
Get:66 http://localhost/debian/ sid/main comerr-dev amd64 2.1-1.42~WIP-2011-07-02-1 [42.4 kB]
Get:67 http://localhost/debian/ sid/main krb5-multidev amd64 1.9.1+dfsg-2 [115 kB]
Get:68 http://localhost/debian/ sid/main libaa1 amd64 1.4p5-38+b1 [62.9 kB]
Get:69 http://localhost/debian/ sid/main xorg-sgml-doctools all 1:1.8-2 [20.0 kB]
Get:70 http://localhost/debian/ sid/main x11proto-core-dev all 7.0.22-1 [323 kB]
Get:71 http://localhost/debian/ sid/main libxau-dev amd64 1:1.0.6-3 [20.5 kB]
Get:72 http://localhost/debian/ sid/main libxdmcp-dev amd64 1:1.1.0-3 [56.5 kB]
Get:73 http://localhost/debian/ sid/main x11proto-input-dev all 2.0.2-2 [82.3 kB]
Get:74 http://localhost/debian/ sid/main x11proto-kb-dev all 1.0.5-2 [27.5 kB]
Get:75 http://localhost/debian/ sid/main xtrans-dev all 1.2.6-2 [101 kB]
Get:76 http://localhost/debian/ sid/main libpthread-stubs0 amd64 0.3-2.1 [3232 B]
Get:77 http://localhost/debian/ sid/main libpthread-stubs0-dev amd64 0.3-2.1 [3554 B]
Get:78 http://localhost/debian/ sid/main libxcb1-dev amd64 1.7-3 [83.1 kB]
Get:79 http://localhost/debian/ sid/main libx11-dev amd64 2:1.4.4-1 [3383 kB]
Get:80 http://localhost/debian/ sid/main zlib1g-dev amd64 1:1.2.3.4.dfsg-3 [192 kB]
Get:81 http://localhost/debian/ sid/main libpng12-dev amd64 1.2.46-3 [265 kB]
Get:82 http://localhost/debian/ sid/main libslang2-dev amd64 2.2.4-2 [631 kB]
Get:83 http://localhost/debian/ sid/main libncurses5-dev amd64 5.9-1 [507 kB]
Get:84 http://localhost/debian/ sid/main libaa1-dev amd64 1.4p5-38+b1 [146 kB]
Get:85 http://localhost/debian/ sid/main libcaca0 amd64 0.99.beta17-2 [387 kB]
Get:86 http://localhost/debian/ sid/main libcaca-dev amd64 0.99.beta17-2 [1002 kB]
Get:87 http://localhost/debian/ sid/main libgpg-error-dev amd64 1.10-0.3 [31.6 kB]
Get:88 http://localhost/debian/ sid/main libgcrypt11-dev amd64 1.4.6-9 [386 kB]
Get:89 http://localhost/debian/ sid/main libtasn1-3-dev amd64 2.9-4 [384 kB]
Get:90 http://localhost/debian/ sid/main libgnutls-dev amd64 2.12.7-6 [916 kB]
Get:91 http://localhost/debian/ sid/main pkg-config amd64 0.26-1 [59.5 kB]
Get:92 http://localhost/debian/ sid/main libidn11-dev amd64 1.22-3 [731 kB]
Get:93 http://localhost/debian/ sid/main libkrb5-dev amd64 1.9.1+dfsg-2 [38.4 kB]
Get:94 http://localhost/debian/ sid/main libldap2-dev amd64 2.4.25-3 [1091 kB]
Get:95 http://localhost/debian/ sid/main libcurl4-gnutls-dev amd64 7.21.7-1 [1176 kB]
Get:96 http://localhost/debian/ sid/main libexpat1-dev amd64 2.0.1-7 [221 kB]
Get:97 http://localhost/debian/ sid/main libfreetype6-dev amd64 2.4.6-2 [797 kB]
Get:98 http://localhost/debian/ sid/main libfontconfig1-dev amd64 2.8.0-3 [833 kB]
Get:99 http://localhost/debian/ sid/main libgpm-dev amd64 1.20.4-3.4 [38.8 kB]
Get:100 http://localhost/debian/ sid/main libgpmg1-dev amd64 1.20.4-3.4 [24.0 kB]
Get:101 http://localhost/debian/ sid/main libice-dev amd64 2:1.0.7-2 [143 kB]
Get:102 http://localhost/debian/ sid/main liblircclient0 amd64 0.9.0~pre1-1 [36.4 kB]
Get:103 http://localhost/debian/ sid/main libreadline6-dev amd64 6.2-2 [263 kB]
Get:104 http://localhost/debian/ sid/main libreadline-dev amd64 6.2-2 [882 B]
Get:105 http://localhost/debian/ sid/main libsm-dev amd64 2:1.2.0-2 [101 kB]
Get:106 http://localhost/debian/ sid/main x11proto-xext-dev all 7.2.0-3 [255 kB]
Get:107 http://localhost/debian/ sid/main libxext-dev amd64 2:1.3.0-3 [167 kB]
Get:108 http://localhost/debian/ sid/main x11proto-render-dev all 2:0.11.1-2 [20.8 kB]
Get:109 http://localhost/debian/ sid/main libxrender-dev amd64 1:0.9.6-2 [39.7 kB]
Get:110 http://localhost/debian/ sid/main libxft-dev amd64 2.2.0-3 [71.5 kB]
Get:111 http://localhost/debian/ sid/main libxi-dev amd64 2:1.4.3-3 [253 kB]
Get:112 http://localhost/debian/ sid/main libxine1-bin amd64 1.1.19-3 [1549 kB]
Get:113 http://localhost/debian/ sid/main libxine-dev amd64 1.1.19-3 [328 kB]
Get:114 http://localhost/debian/ sid/main x11proto-xinerama-dev all 1.2.1-2 [4938 B]
Get:115 http://localhost/debian/ sid/main libxinerama-dev amd64 2:1.1.1-3 [18.1 kB]
Get:116 http://localhost/debian/ sid/main libxt-dev amd64 1:1.1.1-2 [512 kB]
Get:117 http://localhost/debian/ sid/main libxtst6 amd64 2:1.2.0-3 [23.8 kB]
Get:118 http://localhost/debian/ sid/main x11proto-record-dev all 1.14.1-1 [31.8 kB]
Get:119 http://localhost/debian/ sid/main libxtst-dev amd64 2:1.2.0-3 [75.0 kB]
Get:120 http://localhost/debian/ sid/main x11proto-video-dev all 2.3.1-1 [16.8 kB]
Get:121 http://localhost/debian/ sid/main libxv-dev amd64 2:1.0.6-2 [44.3 kB]
Get:122 http://localhost/debian/ sid/main x11proto-xf86vidmode-dev all 2.3.1-2 [6114 B]
Get:123 http://localhost/debian/ sid/main libxxf86vm-dev amd64 1:1.1.1-2 [22.9 kB]
Get:124 http://localhost/debian/ sid/main liblircclient-dev amd64 0.9.0~pre1-1 [39.5 kB]

Extracting templates from packages: 24%
Extracting templates from packages: 48%
Extracting templates from packages: 72%
Extracting templates from packages: 96%
Extracting templates from packages: 100%
Preconfiguring packages ...
Fetched 38.2 MB in 0s (52.8 MB/s)
Selecting previously deselected package libpipeline1.
(Reading database ... 10769 files and directories currently installed.)
Unpacking libpipeline1 (from .../libpipeline1_1.2.0-3_amd64.deb) ...
Selecting previously deselected package libgpg-error0.
Unpacking libgpg-error0 (from .../libgpg-error0_1.10-0.3_amd64.deb) ...
Selecting previously deselected package libgcrypt11.
Unpacking libgcrypt11 (from .../libgcrypt11_1.4.6-9_amd64.deb) ...
Selecting previously deselected package libtasn1-3.
Unpacking libtasn1-3 (from .../libtasn1-3_2.9-4_amd64.deb) ...
Selecting previously deselected package libgnutls26.
Unpacking libgnutls26 (from .../libgnutls26_2.12.7-6_amd64.deb) ...
Selecting previously deselected package libgnutls-openssl27.
Unpacking libgnutls-openssl27 (from .../libgnutls-openssl27_2.12.7-6_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.5.2-1_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from .../libkrb5support0_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 (from .../libkrb5-3_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libgssapi-krb5-2.
Unpacking libgssapi-krb5-2 (from .../libgssapi-krb5-2_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libgssrpc4.
Unpacking libgssrpc4 (from .../libgssrpc4_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libidn11.
Unpacking libidn11 (from .../libidn11_1.22-3_amd64.deb) ...
Selecting previously deselected package libkadm5clnt-mit8.
Unpacking libkadm5clnt-mit8 (from .../libkadm5clnt-mit8_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkdb5-5.
Unpacking libkdb5-5 (from .../libkdb5-5_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libkadm5srv-mit8.
Unpacking libkadm5srv-mit8 (from .../libkadm5srv-mit8_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libsasl2-2.
Unpacking libsasl2-2 (from .../libsasl2-2_2.1.24~rc1.dfsg1+cvs2011-05-23-6_amd64.deb) ...
Selecting previously deselected package libldap-2.4-2.
Unpacking libldap-2.4-2 (from .../libldap-2.4-2_2.4.25-3_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_8.12-4_amd64.deb) ...
Selecting previously deselected package librtmp0.
Unpacking librtmp0 (from .../librtmp0_2.4~20110711.gitc28f1bab-1_amd64.deb) ...
Selecting previously deselected package libssl1.0.0.
Unpacking libssl1.0.0 (from .../libssl1.0.0_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package openssl.
Unpacking openssl (from .../openssl_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package ca-certificates.
Unpacking ca-certificates (from .../ca-certificates_20110502_all.deb) ...
Selecting previously deselected package libcurl3-gnutls.
Unpacking libcurl3-gnutls (from .../libcurl3-gnutls_7.21.7-1_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-7_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.4.6-2_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../ucf_3.0025+nmu2_all.deb) ...
Moving old data out of the way
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.33-2_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.8.0-3_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.8.0-3_amd64.deb) ...
Selecting previously deselected package x11-common.
Unpacking x11-common (from .../x11-common_1%3a7.6+8_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.7-2_amd64.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.46-3_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.2.0-2_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.6-3_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.1.0-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.7-3_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.4.4-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.4.4-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.3.0-3_amd64.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.6-2_amd64.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.2.0-3_amd64.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_2%3a1.4.3-3_amd64.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_2%3a1.1.1-3_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libxv1.
Unpacking libxv1 (from .../libxv1_2%3a1.0.6-2_amd64.deb) ...
Selecting previously deselected package libxxf86vm1.
Unpacking libxxf86vm1 (from .../libxxf86vm1_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libgnutlsxx27.
Unpacking libgnutlsxx27 (from .../libgnutlsxx27_2.12.7-6_amd64.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_8.2.3_amd64.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.21-6_amd64.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.16-1_amd64.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.6.0.2-2_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.04-5+b1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../file_5.04-5+b1_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.18.1.1-4_amd64.deb) ...
Selecting previously deselected package libgpm2.
Unpacking libgpm2 (from .../libgpm2_1.20.4-3.4_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.8.dfsg-4_amd64.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-15_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.28.6-1_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ...
Selecting previously deselected package libunistring0.
Unpacking libunistring0 (from .../libunistring0_0.9.3-4_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.18.1.1-4_amd64.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously deselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.16+nmu1_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_8.9.4_all.deb) ...
Selecting previously deselected package comerr-dev.
Unpacking comerr-dev (from .../comerr-dev_2.1-1.42~WIP-2011-07-02-1_amd64.deb) ...
Selecting previously deselected package krb5-multidev.
Unpacking krb5-multidev (from .../krb5-multidev_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libaa1.
Unpacking libaa1 (from .../libaa1_1.4p5-38+b1_amd64.deb) ...
Selecting previously deselected package xorg-sgml-doctools.
Unpacking xorg-sgml-doctools (from .../xorg-sgml-doctools_1%3a1.8-2_all.deb) ...
Selecting previously deselected package x11proto-core-dev.
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.22-1_all.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.6-3_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.1.0-3_amd64.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_2.0.2-2_all.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.5-2_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.6-2_all.deb) ...
Selecting previously deselected package libpthread-stubs0.
Unpacking libpthread-stubs0 (from .../libpthread-stubs0_0.3-2.1_amd64.deb) ...
Selecting previously deselected package libpthread-stubs0-dev.
Unpacking libpthread-stubs0-dev (from .../libpthread-stubs0-dev_0.3-2.1_amd64.deb) ...
Selecting previously deselected package libxcb1-dev.
Unpacking libxcb1-dev (from .../libxcb1-dev_1.7-3_amd64.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.4.4-1_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.4.dfsg-3_amd64.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.46-3_amd64.deb) ...
Selecting previously deselected package libslang2-dev.
Unpacking libslang2-dev (from .../libslang2-dev_2.2.4-2_amd64.deb) ...
Selecting previously deselected package libncurses5-dev.
Unpacking libncurses5-dev (from .../libncurses5-dev_5.9-1_amd64.deb) ...
Selecting previously deselected package libaa1-dev.
Unpacking libaa1-dev (from .../libaa1-dev_1.4p5-38+b1_amd64.deb) ...
Selecting previously deselected package libcaca0.
Unpacking libcaca0 (from .../libcaca0_0.99.beta17-2_amd64.deb) ...
Selecting previously deselected package libcaca-dev.
Unpacking libcaca-dev (from .../libcaca-dev_0.99.beta17-2_amd64.deb) ...
Selecting previously deselected package libgpg-error-dev.
Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.10-0.3_amd64.deb) ...
Selecting previously deselected package libgcrypt11-dev.
Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.6-9_amd64.deb) ...
Selecting previously deselected package libtasn1-3-dev.
Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_2.9-4_amd64.deb) ...
Selecting previously deselected package libgnutls-dev.
Unpacking libgnutls-dev (from .../libgnutls-dev_2.12.7-6_amd64.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.26-1_amd64.deb) ...
Selecting previously deselected package libidn11-dev.
Unpacking libidn11-dev (from .../libidn11-dev_1.22-3_amd64.deb) ...
Selecting previously deselected package libkrb5-dev.
Unpacking libkrb5-dev (from .../libkrb5-dev_1.9.1+dfsg-2_amd64.deb) ...
Selecting previously deselected package libldap2-dev.
Unpacking libldap2-dev (from .../libldap2-dev_2.4.25-3_amd64.deb) ...
Selecting previously deselected package libcurl4-gnutls-dev.
Unpacking libcurl4-gnutls-dev (from .../libcurl4-gnutls-dev_7.21.7-1_amd64.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_2.0.1-7_amd64.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.4.6-2_amd64.deb) ...
Selecting previously deselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.8.0-3_amd64.deb) ...
Selecting previously deselected package libgpm-dev.
Unpacking libgpm-dev (from .../libgpm-dev_1.20.4-3.4_amd64.deb) ...
Selecting previously deselected package libgpmg1-dev.
Unpacking libgpmg1-dev (from .../libgpmg1-dev_1.20.4-3.4_amd64.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.7-2_amd64.deb) ...
Selecting previously deselected package liblircclient0.
Unpacking liblircclient0 (from .../liblircclient0_0.9.0~pre1-1_amd64.deb) ...
Selecting previously deselected package libreadline6-dev.
Unpacking libreadline6-dev (from .../libreadline6-dev_6.2-2_amd64.deb) ...
Selecting previously deselected package libreadline-dev.
Unpacking libreadline-dev (from .../libreadline-dev_6.2-2_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.2.0-2_amd64.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.2.0-3_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_2%3a1.3.0-3_amd64.deb) ...
Selecting previously deselected package x11proto-render-dev.
Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.11.1-2_all.deb) ...
Selecting previously deselected package libxrender-dev.
Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.6-2_amd64.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.2.0-3_amd64.deb) ...
Selecting previously deselected package libxi-dev.
Unpacking libxi-dev (from .../libxi-dev_2%3a1.4.3-3_amd64.deb) ...
Selecting previously deselected package libxine1-bin.
Unpacking libxine1-bin (from .../libxine1-bin_1.1.19-3_amd64.deb) ...
Selecting previously deselected package libxine-dev.
Unpacking libxine-dev (from .../libxine-dev_1.1.19-3_amd64.deb) ...
Selecting previously deselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.2.1-2_all.deb) ...
Selecting previously deselected package libxinerama-dev.
Unpacking libxinerama-dev (from .../libxinerama-dev_2%3a1.1.1-3_amd64.deb) ...
Selecting previously deselected package libxt-dev.
Unpacking libxt-dev (from .../libxt-dev_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package libxtst6.
Unpacking libxtst6 (from .../libxtst6_2%3a1.2.0-3_amd64.deb) ...
Selecting previously deselected package x11proto-record-dev.
Unpacking x11proto-record-dev (from .../x11proto-record-dev_1.14.1-1_all.deb) ...
Selecting previously deselected package libxtst-dev.
Unpacking libxtst-dev (from .../libxtst-dev_2%3a1.2.0-3_amd64.deb) ...
Selecting previously deselected package x11proto-video-dev.
Unpacking x11proto-video-dev (from .../x11proto-video-dev_2.3.1-1_all.deb) ...
Selecting previously deselected package libxv-dev.
Unpacking libxv-dev (from .../libxv-dev_2%3a1.0.6-2_amd64.deb) ...
Selecting previously deselected package x11proto-xf86vidmode-dev.
Unpacking x11proto-xf86vidmode-dev (from .../x11proto-xf86vidmode-dev_2.3.1-2_all.deb) ...
Selecting previously deselected package libxxf86vm-dev.
Unpacking libxxf86vm-dev (from .../libxxf86vm-dev_1%3a1.1.1-2_amd64.deb) ...
Selecting previously deselected package liblircclient-dev.
Unpacking liblircclient-dev (from .../liblircclient-dev_0.9.0~pre1-1_amd64.deb) ...
Selecting previously deselected package sbuild-build-depends-xine-ui-dummy.
Unpacking sbuild-build-depends-xine-ui-dummy (from .../sbuild-build-depends-xine-ui-dummy.deb) ...
Processing triggers for install-info ...
Setting up libpipeline1 (1.2.0-3) ...
Setting up libgpg-error0 (1.10-0.3) ...
Setting up libgcrypt11 (1.4.6-9) ...
Setting up libtasn1-3 (2.9-4) ...
Setting up libgnutls26 (2.12.7-6) ...
Setting up libgnutls-openssl27 (2.12.7-6) ...
Setting up libkeyutils1 (1.5.2-1) ...
Setting up libkrb5support0 (1.9.1+dfsg-2) ...
Setting up libk5crypto3 (1.9.1+dfsg-2) ...
Setting up libkrb5-3 (1.9.1+dfsg-2) ...
Setting up libgssapi-krb5-2 (1.9.1+dfsg-2) ...
Setting up libgssrpc4 (1.9.1+dfsg-2) ...
Setting up libidn11 (1.22-3) ...
Setting up libkadm5clnt-mit8 (1.9.1+dfsg-2) ...
Setting up libkdb5-5 (1.9.1+dfsg-2) ...
Setting up libkadm5srv-mit8 (1.9.1+dfsg-2) ...
Setting up libsasl2-2 (2.1.24~rc1.dfsg1+cvs2011-05-23-6) ...
Setting up libldap-2.4-2 (2.4.25-3) ...
Setting up libpcre3 (8.12-4) ...
Setting up librtmp0 (2.4~20110711.gitc28f1bab-1) ...
Setting up libssl1.0.0 (1.0.0d-3) ...
Setting up openssl (1.0.0d-3) ...
Setting up ca-certificates (20110502) ...
Updating certificates in /etc/ssl/certs... WARNING: Skipping duplicate certificate cert_igca_rsa.pem
WARNING: Skipping duplicate certificate cert_igca_rsa.pem
WARNING: Skipping duplicate certificate brasil.gov.br.pem
WARNING: Skipping duplicate certificate brasil.gov.br.pem
157 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d....done.
Setting up libcurl3-gnutls (7.21.7-1) ...
Setting up libexpat1 (2.0.1-7) ...
Setting up libfreetype6 (2.4.6-2) ...
Setting up ucf (3.0025+nmu2) ...
Setting up ttf-dejavu-core (2.33-2) ...
Setting up fontconfig-config (2.8.0-3) ...
Setting up libfontconfig1 (2.8.0-3) ...
Setting up x11-common (1:7.6+8) ...
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libice6 (2:1.0.7-2) ...
Setting up libpng12-0 (1.2.46-3) ...
Setting up libsm6 (2:1.2.0-2) ...
Setting up libxau6 (1:1.0.6-3) ...
Setting up libxdmcp6 (1:1.1.0-3) ...
Setting up libxcb1 (1.7-3) ...
Setting up libx11-data (2:1.4.4-1) ...
Setting up libx11-6 (2:1.4.4-1) ...
Setting up libxext6 (2:1.3.0-3) ...
Setting up libxrender1 (1:0.9.6-2) ...
Setting up libxft2 (2.2.0-3) ...
Setting up libxi6 (2:1.4.3-3) ...
Setting up libxinerama1 (2:1.1.1-3) ...
Setting up libxt6 (1:1.1.1-2) ...
Setting up libxv1 (2:1.0.6-2) ...
Setting up libxxf86vm1 (1:1.1.1-2) ...
Setting up libgnutlsxx27 (2.12.7-6) ...
Setting up bsdmainutils (8.2.3) ...
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 groff-base (1.21-6) ...
Setting up libpopt0 (1.16-1) ...
Setting up man-db (2.6.0.2-2) ...
Building database of manual pages ...
Setting up libmagic1 (5.04-5+b1) ...
Setting up file (5.04-5+b1) ...
Setting up gettext-base (0.18.1.1-4) ...
Setting up libgpm2 (1.20.4-3.4) ...
Setting up libxml2 (2.7.8.dfsg-4) ...
Setting up html2text (1.3.2a-15) ...
Setting up libglib2.0-0 (2.28.6-1) ...
No schema files found: doing nothing.
Setting up libcroco3 (0.6.2-1) ...
Setting up libunistring0 (0.9.3-4) ...
Setting up gettext (0.18.1.1-4) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16+nmu1) ...
Setting up debhelper (8.9.4) ...
Setting up comerr-dev (2.1-1.42~WIP-2011-07-02-1) ...
Setting up krb5-multidev (1.9.1+dfsg-2) ...
Setting up libaa1 (1.4p5-38+b1) ...
Setting up xorg-sgml-doctools (1:1.8-2) ...
Setting up x11proto-core-dev (7.0.22-1) ...
Setting up libxau-dev (1:1.0.6-3) ...
Setting up libxdmcp-dev (1:1.1.0-3) ...
Setting up x11proto-input-dev (2.0.2-2) ...
Setting up x11proto-kb-dev (1.0.5-2) ...
Setting up xtrans-dev (1.2.6-2) ...
Setting up libpthread-stubs0 (0.3-2.1) ...
Setting up libpthread-stubs0-dev (0.3-2.1) ...
Setting up libxcb1-dev (1.7-3) ...
Setting up libx11-dev (2:1.4.4-1) ...
Setting up zlib1g-dev (1:1.2.3.4.dfsg-3) ...
Setting up libpng12-dev (1.2.46-3) ...
Setting up libslang2-dev (2.2.4-2) ...
Setting up libncurses5-dev (5.9-1) ...
Setting up libaa1-dev (1.4p5-38+b1) ...
Setting up libcaca0 (0.99.beta17-2) ...
Setting up libcaca-dev (0.99.beta17-2) ...
Setting up libgpg-error-dev (1.10-0.3) ...
Setting up libgcrypt11-dev (1.4.6-9) ...
Setting up libtasn1-3-dev (2.9-4) ...
Setting up libgnutls-dev (2.12.7-6) ...
Setting up pkg-config (0.26-1) ...
Setting up libidn11-dev (1.22-3) ...
Setting up libkrb5-dev (1.9.1+dfsg-2) ...
Setting up libldap2-dev (2.4.25-3) ...
Setting up libcurl4-gnutls-dev (7.21.7-1) ...
Setting up libexpat1-dev (2.0.1-7) ...
Setting up libfreetype6-dev (2.4.6-2) ...
Setting up libfontconfig1-dev (2.8.0-3) ...
Setting up libgpm-dev (1.20.4-3.4) ...
Setting up libgpmg1-dev (1.20.4-3.4) ...
Setting up libice-dev (2:1.0.7-2) ...
Setting up liblircclient0 (0.9.0~pre1-1) ...
Setting up libreadline6-dev (6.2-2) ...
Setting up libreadline-dev (6.2-2) ...
Setting up libsm-dev (2:1.2.0-2) ...
Setting up x11proto-xext-dev (7.2.0-3) ...
Setting up libxext-dev (2:1.3.0-3) ...
Setting up x11proto-render-dev (2:0.11.1-2) ...
Setting up libxrender-dev (1:0.9.6-2) ...
Setting up libxft-dev (2.2.0-3) ...
Setting up libxi-dev (2:1.4.3-3) ...
Setting up libxine1-bin (1.1.19-3) ...
Setting up libxine-dev (1.1.19-3) ...
Setting up x11proto-xinerama-dev (1.2.1-2) ...
Setting up libxinerama-dev (2:1.1.1-3) ...
Setting up libxt-dev (1:1.1.1-2) ...
Setting up libxtst6 (2:1.2.0-3) ...
Setting up x11proto-record-dev (1.14.1-1) ...
Setting up libxtst-dev (2:1.2.0-3) ...
Setting up x11proto-video-dev (2.3.1-1) ...
Setting up libxv-dev (2:1.0.6-2) ...
Setting up x11proto-xf86vidmode-dev (2.3.1-2) ...
Setting up libxxf86vm-dev (1:1.1.1-2) ...
Setting up liblircclient-dev (0.9.0~pre1-1) ...
Setting up sbuild-build-depends-xine-ui-dummy (0.invalid.0) ...

┌──────────────────────────────────────────────────────────────────────────────┐
│ Build environment                                                            │
└──────────────────────────────────────────────────────────────────────────────┘

Kernel: Linux 2.6.32-5-amd64 amd64 (x86_64)
Toolchain package versions: binutils_2.21.53.20110805-1 dpkg-dev_1.16.0.3 g++-4.6_4.6.1-7 gcc-4.6_4.6.1-7 libc6-dev_2.13-16 libstdc++6_4.6.1-7 libstdc++6-4.6-dev_4.6.1-7 linux-libc-dev_3.0.0-2
Package versions: apt_0.8.15.6 apt-utils_0.8.15.6 base-files_6.5 base-passwd_3.5.23 bash_4.1-3 binutils_2.21.53.20110805-1 bsdmainutils_8.2.3 bsdutils_1:2.19.1-5 build-essential_11.5 bzip2_1.0.5-6 ca-certificates_20110502 comerr-dev_2.1-1.42~WIP-2011-07-02-1 coreutils_8.5-1 cpp_4:4.6.1-2 cpp-4.6_4.6.1-7 dash_0.5.7-1 debconf_1.5.41 debfoster_2.7-1.1 debhelper_8.9.4 debian-archive-keyring_2010.08.28 debianutils_4.0.2 diffutils_1:3.0-1 dpkg_1.16.0.3 dpkg-dev_1.16.0.3 e2fslibs_1.42~WIP-2011-07-02-1 e2fsprogs_1.42~WIP-2011-07-02-1 fakeroot_1.17-1 file_5.04-5+b1 findutils_4.4.2-1+b1 fontconfig-config_2.8.0-3 g++_4:4.6.1-2 g++-4.6_4.6.1-7 gcc_4:4.6.1-2 gcc-4.6_4.6.1-7 gcc-4.6-base_4.6.1-7 gettext_0.18.1.1-4 gettext-base_0.18.1.1-4 gnupg_1.4.11-3 gpgv_1.4.11-3 grep_2.9-2 groff-base_1.21-6 gzip_1.4-1 hostname_3.06 html2text_1.3.2a-15 initscripts_2.88dsf-13.11 insserv_1.14.0-2.1 install-info_4.13a.dfsg.1-6 intltool-debian_0.35.0+20060710.1 krb5-multidev_1.9.1+dfsg-2 less_444-1 libaa1_1.4p5-38+b1 libaa1-dev_1.4p5-38+b1 libacl1_2.2.51-3 libattr1_1:2.4.46-3 libblkid1_2.19.1-5 libbz2-1.0_1.0.5-6 libc-bin_2.13-16 libc-dev-bin_2.13-16 libc6_2.13-16 libc6-dev_2.13-16 libcaca-dev_0.99.beta17-2 libcaca0_0.99.beta17-2 libcloog-ppl0_0.15.9-3 libcomerr2_1.42~WIP-2011-07-02-1 libcroco3_0.6.2-1 libcurl3-gnutls_7.21.7-1 libcurl4-gnutls-dev_7.21.7-1 libdb5.1_5.1.25-11 libdpkg-perl_1.16.0.3 libexpat1_2.0.1-7 libexpat1-dev_2.0.1-7 libfontconfig1_2.8.0-3 libfontconfig1-dev_2.8.0-3 libfreetype6_2.4.6-2 libfreetype6-dev_2.4.6-2 libgc1c2_1:7.1-8 libgcc1_1:4.6.1-7 libgcrypt11_1.4.6-9 libgcrypt11-dev_1.4.6-9 libgdbm3_1.8.3-10 libglib2.0-0_2.28.6-1 libgmp10_2:5.0.1+dfsg-7 libgmpxx4ldbl_2:5.0.1+dfsg-7 libgnutls-dev_2.12.7-6 libgnutls-openssl27_2.12.7-6 libgnutls26_2.12.7-6 libgnutlsxx27_2.12.7-6 libgomp1_4.6.1-7 libgpg-error-dev_1.10-0.3 libgpg-error0_1.10-0.3 libgpm-dev_1.20.4-3.4 libgpm2_1.20.4-3.4 libgpmg1-dev_1.20.4-3.4 libgssapi-krb5-2_1.9.1+dfsg-2 libgssrpc4_1.9.1+dfsg-2 libice-dev_2:1.0.7-2 libice6_2:1.0.7-2 libidn11_1.22-3 libidn11-dev_1.22-3 libk5crypto3_1.9.1+dfsg-2 libkadm5clnt-mit8_1.9.1+dfsg-2 libkadm5srv-mit8_1.9.1+dfsg-2 libkdb5-5_1.9.1+dfsg-2 libkeyutils1_1.5.2-1 libkrb5-3_1.9.1+dfsg-2 libkrb5-dev_1.9.1+dfsg-2 libkrb5support0_1.9.1+dfsg-2 libldap-2.4-2_2.4.25-3 libldap2-dev_2.4.25-3 liblircclient-dev_0.9.0~pre1-1 liblircclient0_0.9.0~pre1-1 liblzma2_5.1.1alpha+20110809-1 libmagic1_5.04-5+b1 libmount1_2.19.1-5 libmpc2_0.9-3 libmpfr4_3.0.1-5 libncurses5_5.9-1 libncurses5-dev_5.9-1 libncursesw5_5.9-1 libpam-modules_1.1.3-2 libpam-modules-bin_1.1.3-2 libpam-runtime_1.1.3-2 libpam0g_1.1.3-2 libpcre3_8.12-4 libpipeline1_1.2.0-3 libpng12-0_1.2.46-3 libpng12-dev_1.2.46-3 libpopt0_1.16-1 libppl-c4_0.11.2-4 libppl9_0.11.2-4 libpthread-stubs0_0.3-2.1 libpthread-stubs0-dev_0.3-2.1 libpwl5_0.11.2-4 libquadmath0_4.6.1-7 libreadline-dev_6.2-2 libreadline6_6.2-2 libreadline6-dev_6.2-2 librtmp0_2.4~20110711.gitc28f1bab-1 libsasl2-2_2.1.24~rc1.dfsg1+cvs2011-05-23-6 libselinux1_2.0.98-1.1 libsepol1_2.0.42-1 libslang2_2.2.4-2 libslang2-dev_2.2.4-2 libsm-dev_2:1.2.0-2 libsm6_2:1.2.0-2 libss2_1.42~WIP-2011-07-02-1 libssl1.0.0_1.0.0d-3 libstdc++6_4.6.1-7 libstdc++6-4.6-dev_4.6.1-7 libtasn1-3_2.9-4 libtasn1-3-dev_2.9-4 libtimedate-perl_1.2000-1 libunistring0_0.9.3-4 libusb-0.1-4_2:0.1.12-19 libuuid1_2.19.1-5 libx11-6_2:1.4.4-1 libx11-data_2:1.4.4-1 libx11-dev_2:1.4.4-1 libxau-dev_1:1.0.6-3 libxau6_1:1.0.6-3 libxcb1_1.7-3 libxcb1-dev_1.7-3 libxdmcp-dev_1:1.1.0-3 libxdmcp6_1:1.1.0-3 libxext-dev_2:1.3.0-3 libxext6_2:1.3.0-3 libxft-dev_2.2.0-3 libxft2_2.2.0-3 libxi-dev_2:1.4.3-3 libxi6_2:1.4.3-3 libxine-dev_1.1.19-3 libxine1-bin_1.1.19-3 libxinerama-dev_2:1.1.1-3 libxinerama1_2:1.1.1-3 libxml2_2.7.8.dfsg-4 libxrender-dev_1:0.9.6-2 libxrender1_1:0.9.6-2 libxt-dev_1:1.1.1-2 libxt6_1:1.1.1-2 libxtst-dev_2:1.2.0-3 libxtst6_2:1.2.0-3 libxv-dev_2:1.0.6-2 libxv1_2:1.0.6-2 libxxf86vm-dev_1:1.1.1-2 libxxf86vm1_1:1.1.1-2 linux-libc-dev_3.0.0-2 login_1:4.1.4.2+svn3283-3 lsb-base_3.2-27 make_3.81-8.1 man-db_2.6.0.2-2 mawk_1.3.3-15 mount_2.19.1-5 multiarch-support_2.13-16 ncurses-base_5.9-1 ncurses-bin_5.9-1 nvi_1.81.6-8.2 openssl_1.0.0d-3 passwd_1:4.1.4.2+svn3283-3 patch_2.6.1-2 perl_5.12.4-4 perl-base_5.12.4-4 perl-modules_5.12.4-4 pkg-config_0.26-1 po-debconf_1.0.16+nmu1 readline-common_6.2-2 sbuild-build-depends-core-dummy_0.invalid.0 sbuild-build-depends-xine-ui-dummy_0.invalid.0 sed_4.2.1-9 sensible-utils_0.0.6 sysv-rc_2.88dsf-13.11 sysvinit_2.88dsf-13.11 sysvinit-utils_2.88dsf-13.11 tar_1.26-2 ttf-dejavu-core_2.33-2 tzdata_2011h-3 ucf_3.0025+nmu2 util-linux_2.19.1-5 x11-common_1:7.6+8 x11proto-core-dev_7.0.22-1 x11proto-input-dev_2.0.2-2 x11proto-kb-dev_1.0.5-2 x11proto-record-dev_1.14.1-1 x11proto-render-dev_2:0.11.1-2 x11proto-video-dev_2.3.1-1 x11proto-xext-dev_7.2.0-3 x11proto-xf86vidmode-dev_2.3.1-2 x11proto-xinerama-dev_1.2.1-2 xorg-sgml-doctools_1:1.8-2 xtrans-dev_1.2.6-2 xz-utils_5.1.1alpha+20110809-1 zlib1g_1:1.2.3.4.dfsg-3 zlib1g-dev_1:1.2.3.4.dfsg-3

┌──────────────────────────────────────────────────────────────────────────────┐
│ Build                                                                        │
└──────────────────────────────────────────────────────────────────────────────┘


Unpack source
─────────────

gpgv: keyblock resource `/var/lib/sbuild/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Mon Mar 22 09:27:25 2010 CET using RSA key ID 0069F28F
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./xine-ui_0.99.6-1.dsc
dpkg-source: info: extracting xine-ui in xine-ui-0.99.6
dpkg-source: info: unpacking xine-ui_0.99.6.orig.tar.bz2
dpkg-source: info: unpacking xine-ui_0.99.6-1.debian.tar.gz
dpkg-source: info: applying debian-changes

Check disc space
────────────────

Sufficient free space for build

dpkg-buildpackage
─────────────────

dpkg-buildpackage: export CFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export CPPFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: export CXXFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export FFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export LDFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: source package xine-ui
dpkg-buildpackage: source version 0.99.6-1
 dpkg-source --before-build xine-ui-0.99.6
dpkg-buildpackage: host architecture amd64
dpkg-source: info: using options from xine-ui-0.99.6/debian/source/options: --single-debian-patch
 fakeroot debian/rules clean
dh_testdir
dh_testroot
[ ! -f Makefile ] || /usr/bin/make distclean
dh_clean build-stamp debian/gxine.postinst \
		po/*.gmo po/stamp-po \
		misc/xine-bugreport misc/xine-check \
		src/xitk/xine-toolkit/po/*.gmo \
		src/xitk/xine-toolkit/po/stamp-po \
		doc/man/en/xine-check.1 doc/man/en/aaxine.1 doc/man/en/xine.1 doc/man/pl/aaxine.1 doc/man/pl/xine.1 doc/man/de/xine-check.1 doc/man/de/aaxine.1 doc/man/de/xine.1 doc/man/es/xine-check.1 doc/man/es/aaxine.1 doc/man/es/xine.1 doc/man/fr/xine.1
 dpkg-source -b xine-ui-0.99.6
dpkg-source: info: using options from xine-ui-0.99.6/debian/source/options: --single-debian-patch
dpkg-source: info: using source format `3.0 (quilt)'
dpkg-source: info: building xine-ui using existing ./xine-ui_0.99.6.orig.tar.bz2
dpkg-source: warning: ignoring deletion of file doc/man/en/xine-check.1
dpkg-source: warning: ignoring deletion of file doc/man/en/aaxine.1
dpkg-source: warning: ignoring deletion of file doc/man/en/xine.1
dpkg-source: warning: ignoring deletion of file doc/man/pl/aaxine.1
dpkg-source: warning: ignoring deletion of file doc/man/pl/xine.1
dpkg-source: warning: ignoring deletion of file doc/man/de/xine-check.1
dpkg-source: warning: ignoring deletion of file doc/man/de/aaxine.1
dpkg-source: warning: ignoring deletion of file doc/man/de/xine.1
dpkg-source: warning: ignoring deletion of file doc/man/es/xine-check.1
dpkg-source: warning: ignoring deletion of file doc/man/es/aaxine.1
dpkg-source: warning: ignoring deletion of file doc/man/es/xine.1
dpkg-source: warning: ignoring deletion of file doc/man/fr/xine.1
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/pl.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/pt_BR.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/ru.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/nb.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/it.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/cs.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/de.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/sk.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/stamp-po
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/fr.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/uk.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/es.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/eu.gmo
dpkg-source: warning: ignoring deletion of file src/xitk/xine-toolkit/po/ja.gmo
dpkg-source: warning: ignoring deletion of file po/pl.gmo
dpkg-source: warning: ignoring deletion of file po/eo.gmo
dpkg-source: warning: ignoring deletion of file po/pt_BR.gmo
dpkg-source: warning: ignoring deletion of file po/ru.gmo
dpkg-source: warning: ignoring deletion of file po/nb.gmo
dpkg-source: warning: ignoring deletion of file po/it.gmo
dpkg-source: warning: ignoring deletion of file po/cs.gmo
dpkg-source: warning: ignoring deletion of file po/de.gmo
dpkg-source: warning: ignoring deletion of file po/sk.gmo
dpkg-source: warning: ignoring deletion of file po/stamp-po
dpkg-source: warning: ignoring deletion of file po/fr.gmo
dpkg-source: warning: ignoring deletion of file po/uk.gmo
dpkg-source: warning: ignoring deletion of file po/es.gmo
dpkg-source: warning: ignoring deletion of file po/eu.gmo
dpkg-source: warning: ignoring deletion of file po/ja.gmo
dpkg-source: warning: ignoring deletion of file misc/xine-bugreport
dpkg-source: warning: ignoring deletion of file misc/xine-check
dpkg-source: info: local changes stored in xine-ui-0.99.6/debian/patches/debian-changes, the modified files are:
 xine-ui-0.99.6/doc/man/de/xine-remote.1
 xine-ui-0.99.6/doc/man/en/xine-remote.1
 xine-ui-0.99.6/doc/man/es/xine-remote.1
 xine-ui-0.99.6/doc/man/pl/xine-remote.1
 xine-ui-0.99.6/misc/desktops/xine.desktop
 xine-ui-0.99.6/src/common/getsubopt.c
 xine-ui-0.99.6/src/xitk/Imlib-light/misc.c
 xine-ui-0.99.6/src/xitk/common.h
 xine-ui-0.99.6/src/xitk/event.c
 xine-ui-0.99.6/src/xitk/main.c
 xine-ui-0.99.6/src/xitk/panel.c
 xine-ui-0.99.6/src/xitk/videowin.c
 xine-ui-0.99.6/src/xitk/videowin.h
dpkg-source: info: building xine-ui in xine-ui_0.99.6-1.debian.tar.gz
dpkg-source: info: building xine-ui in xine-ui_0.99.6-1.dsc
 debian/rules build
make: Nothing to be done for `build'.
 fakeroot debian/rules binary
dh_testdir
sh ./configure \
		--prefix=/usr --mandir=\${prefix}/share/man \
		--with-aalib --enable-vdr-keys \
		--build x86_64-linux-gnu || \
		(echo "=== config.log: ==="; cat config.log; false)
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for 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... gcc3
checking for strerror in -lcposix... no
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking whether gcc and cc understand -c and -o together... yes
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -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 minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for ANSI C header files... (cached) yes
checking whether make sets $(MAKE)... (cached) yes
checking for ranlib... ranlib
checking whether ln -s works... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking whether NLS is requested... yes
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for plural forms in GNU msgfmt... yes
checking for iconv... yes
checking for iconv declaration... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for off_t... yes
checking for size_t... yes
checking for XINE... yes
checking for pthread_create in -lpthread... yes
checking for X... libraries , headers 
checking for X11... yes
checking for XV... yes
checking for XShmAttach in -lXext... yes
checking sys/ipc.h usability... yes
checking sys/ipc.h presence... yes
checking for sys/ipc.h... yes
checking sys/shm.h usability... yes
checking sys/shm.h presence... yes
checking for sys/shm.h... yes
checking whether shmctl IPC_RMID allowes subsequent attaches... yes
checking for X11/extensions/XShm.h... yes
checking for XINERAMA... yes
checking for XXF86VM... yes
checking for XTEST... yes
checking for readline.h... /usr/include/readline/readline.h
configure: checking whether libreadline is linked against libncurses
checking for cbreak in -lreadline... no
checking for cbreak in -lncurses... yes
configure: libreadline is not linked against libncurses; adding -lncurses 
checking for CURL... yes
checking for socket in -lsocket... no
checking for gethostbyname in -lnsl... yes
checking for aalib-config... /usr/bin/aalib-config
checking for AALIB version >= 1.2.0... yes
checking for dlopen in -lc... no
checking for dlopen in -ldl... yes
checking for CACA... yes
checking for dlopen in -lc... (cached) no
checking whether to have Xft support... yes
checking Xft UTF-8 support... yes
checking for LIBPNG... yes
checking for LIRC... yes
checking for NVTVSIMPLE... *** nvtvsimple support will be disabled ***
checking for tar... tar
checking for sane -Wpointer-arith... yes
checking if gcc supports "-Wall" flags... yes
checking if gcc supports "-fno-strict-aliasing" flags... yes
checking __attribute__ ((aligned ())) support... 64
checking for nanosleep in -lposix4... no
checking for getline... yes
checking for getsubopt... yes
checking for nanosleep... yes
checking for strndup... yes
checking for strsep... yes
checking for strlcat... no
checking for strlcpy... no
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking linux/kd.hb usability... no
checking linux/kd.hb presence... no
checking for linux/kd.hb... no
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking for GNU getopt_long... yes
checking if gcc supports "-Wformat" flags... yes
checking if gcc supports "-Wformat=2" flags... yes
checking if gcc supports "-Wno-format-zero-length" flags... yes
checking if gcc supports "-Wmissing-format-attribute" flags... yes
checking if gcc supports "-Wstrict-aliasing" flags... yes
checking if gcc supports "-Wstrict-aliasing=2" flags... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating m4/Makefile
config.status: creating src/Makefile
config.status: creating src/common/Makefile
config.status: creating src/xitk/Makefile
config.status: creating src/xitk/Imlib-light/Makefile
config.status: creating src/xitk/xine-toolkit/Makefile
config.status: creating src/xitk/xine-toolkit/po/Makefile.in
config.status: creating src/xitk/skins/Makefile
config.status: creating src/xitk/skins/xinetic/Makefile
config.status: creating src/xitk/oxine/Makefile
config.status: creating src/xitk/oxine/data/Makefile
config.status: creating src/aaui/Makefile
config.status: creating src/dfb/Makefile
config.status: creating src/fb/Makefile
config.status: creating doc/Makefile
config.status: creating doc/man/Makefile
config.status: creating doc/man/de/Makefile
config.status: creating doc/man/de/xine.1
config.status: creating doc/man/de/aaxine.1
config.status: creating doc/man/de/xine-check.1
config.status: creating doc/man/en/Makefile
config.status: creating doc/man/en/xine.1
config.status: creating doc/man/en/aaxine.1
config.status: creating doc/man/en/xine-check.1
config.status: creating doc/man/fr/Makefile
config.status: creating doc/man/fr/xine.1
config.status: creating doc/man/es/Makefile
config.status: creating doc/man/es/xine.1
config.status: creating doc/man/es/aaxine.1
config.status: creating doc/man/es/xine-check.1
config.status: creating doc/man/pl/Makefile
config.status: creating doc/man/pl/xine.1
config.status: creating doc/man/pl/aaxine.1
config.status: creating misc/Makefile
config.status: creating misc/build_rpms.sh
config.status: creating misc/SlackBuild
config.status: creating misc/xine-ui.spec
config.status: creating misc/desktops/Makefile
config.status: creating misc/visuals/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: creating src/xitk/xine-toolkit/po/POTFILES
config.status: creating src/xitk/xine-toolkit/po/Makefile
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing default commands
dh_testdir
/usr/bin/make
make[1]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6'
/usr/bin/make  all-recursive
make[2]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6'
Making all in doc
make[3]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc'
Making all in man
make[4]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man'
Making all in fr
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/fr'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/fr'
Making all in es
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/es'
ln -s xine-check.1 xine-bugreport.1
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/es'
Making all in en
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/en'
ln -s xine-check.1 xine-bugreport.1
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/en'
Making all in pl
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/pl'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/pl'
Making all in de
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/de'
ln -s xine-check.1 xine-bugreport.1
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man/de'
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man'
make[4]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc/man'
make[4]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc'
make[3]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/doc'
Making all in m4
make[3]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/m4'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/m4'
Making all in po
make[3]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/po'
test ! -f ./xine-ui.pot || \
	  test -z "cs.gmo de.gmo eo.gmo es.gmo eu.gmo fr.gmo it.gmo ja.gmo nb.gmo pl.gmo pt_BR.gmo ru.gmo sk.gmo uk.gmo" || /usr/bin/make cs.gmo de.gmo eo.gmo es.gmo eu.gmo fr.gmo it.gmo ja.gmo nb.gmo pl.gmo pt_BR.gmo ru.gmo sk.gmo uk.gmo
make[4]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/po'
rm -f cs.gmo && /usr/bin/msgfmt -c --statistics -o cs.gmo cs.po
613 translated messages.
rm -f de.gmo && /usr/bin/msgfmt -c --statistics -o de.gmo de.po
607 translated messages, 3 fuzzy translations, 3 untranslated messages.
rm -f eo.gmo && /usr/bin/msgfmt -c --statistics -o eo.gmo eo.po
607 translated messages, 3 fuzzy translations, 3 untranslated messages.
rm -f es.gmo && /usr/bin/msgfmt -c --statistics -o es.gmo es.po
613 translated messages.
rm -f eu.gmo && /usr/bin/msgfmt -c --statistics -o eu.gmo eu.po
588 translated messages, 13 fuzzy translations, 12 untranslated messages.
rm -f fr.gmo && /usr/bin/msgfmt -c --statistics -o fr.gmo fr.po
607 translated messages, 3 fuzzy translations, 3 untranslated messages.
rm -f it.gmo && /usr/bin/msgfmt -c --statistics -o it.gmo it.po
608 translated messages, 3 fuzzy translations, 2 untranslated messages.
rm -f ja.gmo && /usr/bin/msgfmt -c --statistics -o ja.gmo ja.po
582 translated messages, 15 fuzzy translations, 16 untranslated messages.
rm -f nb.gmo && /usr/bin/msgfmt -c --statistics -o nb.gmo nb.po
591 translated messages, 14 fuzzy translations, 8 untranslated messages.
rm -f pl.gmo && /usr/bin/msgfmt -c --statistics -o pl.gmo pl.po
585 translated messages, 12 fuzzy translations, 16 untranslated messages.
rm -f pt_BR.gmo && /usr/bin/msgfmt -c --statistics -o pt_BR.gmo pt_BR.po
421 translated messages, 61 fuzzy translations, 131 untranslated messages.
rm -f ru.gmo && /usr/bin/msgfmt -c --statistics -o ru.gmo ru.po
595 translated messages, 10 fuzzy translations, 8 untranslated messages.
rm -f sk.gmo && /usr/bin/msgfmt -c --statistics -o sk.gmo sk.po
550 translated messages, 30 fuzzy translations, 33 untranslated messages.
rm -f uk.gmo && /usr/bin/msgfmt -c --statistics -o uk.gmo uk.po
103 translated messages, 92 fuzzy translations, 418 untranslated messages.
make[4]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/po'
touch stamp-po
make[3]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/po'
Making all in misc
make[3]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/misc'
Making all in desktops
make[4]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/misc/desktops'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/misc/desktops'
Making all in visuals
make[4]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/misc/visuals'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/misc/visuals'
make[4]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/misc'
test `cd .; pwd` = `pwd` || cp ./xine-check.sh.in .
perl ./build-xine-check.pl ./xine-check.en
chmod a+x xine-check
test -f xine-bugreport || ln -s xine-check xine-bugreport
make[4]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/misc'
make[3]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/misc'
Making all in src
make[3]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src'
Making all in common
make[4]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/common'
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT utils.o -MD -MP -MF .deps/utils.Tpo -c -o utils.o utils.c
mv -f .deps/utils.Tpo .deps/utils.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT getline.o -MD -MP -MF .deps/getline.Tpo -c -o getline.o getline.c
mv -f .deps/getline.Tpo .deps/getline.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT strndup.o -MD -MP -MF .deps/strndup.Tpo -c -o strndup.o strndup.c
mv -f .deps/strndup.Tpo .deps/strndup.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT strsep.o -MD -MP -MF .deps/strsep.Tpo -c -o strsep.o strsep.c
mv -f .deps/strsep.Tpo .deps/strsep.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT strlcpy.o -MD -MP -MF .deps/strlcpy.Tpo -c -o strlcpy.o strlcpy.c
mv -f .deps/strlcpy.Tpo .deps/strlcpy.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT strlcat.o -MD -MP -MF .deps/strlcat.Tpo -c -o strlcat.o strlcat.c
mv -f .deps/strlcat.Tpo .deps/strlcat.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT config_wrapper.o -MD -MP -MF .deps/config_wrapper.Tpo -c -o config_wrapper.o config_wrapper.c
mv -f .deps/config_wrapper.Tpo .deps/config_wrapper.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT dump.o -MD -MP -MF .deps/dump.Tpo -c -o dump.o dump.c
mv -f .deps/dump.Tpo .deps/dump.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT globals.o -MD -MP -MF .deps/globals.Tpo -c -o globals.o globals.c
mv -f .deps/globals.Tpo .deps/globals.Po
rm -f libcommon.a
ar cru libcommon.a  utils.o getline.o strndup.o strsep.o strlcpy.o strlcat.o config_wrapper.o dump.o globals.o 
ranlib libcommon.a
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include     -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT x11utils.o -MD -MP -MF .deps/x11utils.Tpo -c -o x11utils.o x11utils.c
mv -f .deps/x11utils.Tpo .deps/x11utils.Po
rm -f libcommonx.a
ar cru libcommonx.a x11utils.o 
ranlib libcommonx.a
make[4]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/common'
Making all in xitk
make[4]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk'
Making all in Imlib-light
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/Imlib-light'
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-cache.o -MD -MP -MF .deps/libImlib_light_a-cache.Tpo -c -o libImlib_light_a-cache.o `test -f 'cache.c' || echo './'`cache.c
mv -f .deps/libImlib_light_a-cache.Tpo .deps/libImlib_light_a-cache.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-colors.o -MD -MP -MF .deps/libImlib_light_a-colors.Tpo -c -o libImlib_light_a-colors.o `test -f 'colors.c' || echo './'`colors.c
mv -f .deps/libImlib_light_a-colors.Tpo .deps/libImlib_light_a-colors.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-load.o -MD -MP -MF .deps/libImlib_light_a-load.Tpo -c -o libImlib_light_a-load.o `test -f 'load.c' || echo './'`load.c
load.c: In function 'Imlib_load_image':
load.c:210:23: warning: variable 'e' set but not used [-Wunused-but-set-variable]
load.c:209:23: warning: variable 'iden' set but not used [-Wunused-but-set-variable]
mv -f .deps/libImlib_light_a-load.Tpo .deps/libImlib_light_a-load.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-misc.o -MD -MP -MF .deps/libImlib_light_a-misc.Tpo -c -o libImlib_light_a-misc.o `test -f 'misc.c' || echo './'`misc.c
misc.c: In function 'Imlib_init':
misc.c:90:23: warning: variable 'newcm' set but not used [-Wunused-but-set-variable]
misc.c: In function 'Imlib_init_with_params':
misc.c:1156:30: warning: variable 'bit' set but not used [-Wunused-but-set-variable]
mv -f .deps/libImlib_light_a-misc.Tpo .deps/libImlib_light_a-misc.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-rend.o -MD -MP -MF .deps/libImlib_light_a-rend.Tpo -c -o libImlib_light_a-rend.o `test -f 'rend.c' || echo './'`rend.c
rend.c: In function 'Imlib_render':
rend.c:6247:52: warning: variable 'ok' set but not used [-Wunused-but-set-variable]
rend.c:6247:38: warning: variable 'shared_image' set but not used [-Wunused-but-set-variable]
rend.c:6247:23: warning: variable 'shared_pixmap' set but not used [-Wunused-but-set-variable]
mv -f .deps/libImlib_light_a-rend.Tpo .deps/libImlib_light_a-rend.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include     -I/usr/include/libpng12   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libImlib_light_a-utils.o -MD -MP -MF .deps/libImlib_light_a-utils.Tpo -c -o libImlib_light_a-utils.o `test -f 'utils.c' || echo './'`utils.c
mv -f .deps/libImlib_light_a-utils.Tpo .deps/libImlib_light_a-utils.Po
rm -f libImlib-light.a
ar cru libImlib-light.a libImlib_light_a-cache.o libImlib_light_a-colors.o libImlib_light_a-load.o libImlib_light_a-misc.o libImlib_light_a-rend.o libImlib_light_a-utils.o 
ranlib libImlib-light.a
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/Imlib-light'
Making all in xine-toolkit
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/xine-toolkit'
Making all in po
make[6]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/xine-toolkit/po'
test ! -f ./xitk.pot || \
	  test -z "cs.gmo de.gmo es.gmo eu.gmo fr.gmo it.gmo ja.gmo nb.gmo pl.gmo pt_BR.gmo ru.gmo sk.gmo uk.gmo" || /usr/bin/make cs.gmo de.gmo es.gmo eu.gmo fr.gmo it.gmo ja.gmo nb.gmo pl.gmo pt_BR.gmo ru.gmo sk.gmo uk.gmo
make[7]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/xine-toolkit/po'
rm -f cs.gmo && /usr/bin/msgfmt -c --statistics -o cs.gmo cs.po
23 translated messages.
rm -f de.gmo && /usr/bin/msgfmt -c --statistics -o de.gmo de.po
23 translated messages.
rm -f es.gmo && /usr/bin/msgfmt -c --statistics -o es.gmo es.po
23 translated messages.
rm -f eu.gmo && /usr/bin/msgfmt -c --statistics -o eu.gmo eu.po
23 translated messages.
rm -f fr.gmo && /usr/bin/msgfmt -c --statistics -o fr.gmo fr.po
23 translated messages.
rm -f it.gmo && /usr/bin/msgfmt -c --statistics -o it.gmo it.po
23 translated messages.
rm -f ja.gmo && /usr/bin/msgfmt -c --statistics -o ja.gmo ja.po
18 translated messages, 5 untranslated messages.
rm -f nb.gmo && /usr/bin/msgfmt -c --statistics -o nb.gmo nb.po
23 translated messages.
rm -f pl.gmo && /usr/bin/msgfmt -c --statistics -o pl.gmo pl.po
23 translated messages.
rm -f pt_BR.gmo && /usr/bin/msgfmt -c --statistics -o pt_BR.gmo pt_BR.po
23 translated messages.
rm -f ru.gmo && /usr/bin/msgfmt -c --statistics -o ru.gmo ru.po
23 translated messages.
rm -f sk.gmo && /usr/bin/msgfmt -c --statistics -o sk.gmo sk.po
23 translated messages.
rm -f uk.gmo && /usr/bin/msgfmt -c --statistics -o uk.gmo uk.po
18 translated messages, 5 untranslated messages.
make[7]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/xine-toolkit/po'
touch stamp-po
make[6]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/xine-toolkit/po'
make[6]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/xine-toolkit'
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-browser.o -MD -MP -MF .deps/libxitk_a-browser.Tpo -c -o libxitk_a-browser.o `test -f 'browser.c' || echo './'`browser.c
browser.c: In function 'paint':
browser.c:69:2: warning: #warning NEED [-Wcpp]
browser.c:82:2: warning: #warning NEED [-Wcpp]
browser.c: In function 'xitk_browser_rebuild_browser':
browser.c:328:19: warning: variable 'max_shortcut' set but not used [-Wunused-but-set-variable]
browser.c: In function 'xitk_browser_page_up':
browser.c:638:14: warning: variable 'max' set but not used [-Wunused-but-set-variable]
browser.c: In function 'xitk_browser_page_down':
browser.c:662:9: warning: variable 'min' set but not used [-Wunused-but-set-variable]
mv -f .deps/libxitk_a-browser.Tpo .deps/libxitk_a-browser.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-button.o -MD -MP -MF .deps/libxitk_a-button.Tpo -c -o libxitk_a-button.o `test -f 'button.c' || echo './'`button.c
mv -f .deps/libxitk_a-button.Tpo .deps/libxitk_a-button.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-checkbox.o -MD -MP -MF .deps/libxitk_a-checkbox.Tpo -c -o libxitk_a-checkbox.o `test -f 'checkbox.c' || echo './'`checkbox.c
mv -f .deps/libxitk_a-checkbox.Tpo .deps/libxitk_a-checkbox.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-combo.o -MD -MP -MF .deps/libxitk_a-combo.Tpo -c -o libxitk_a-combo.o `test -f 'combo.c' || echo './'`combo.c
mv -f .deps/libxitk_a-combo.Tpo .deps/libxitk_a-combo.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-config.o -MD -MP -MF .deps/libxitk_a-config.Tpo -c -o libxitk_a-config.o `test -f 'config.c' || echo './'`config.c
mv -f .deps/libxitk_a-config.Tpo .deps/libxitk_a-config.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-cursors.o -MD -MP -MF .deps/libxitk_a-cursors.Tpo -c -o libxitk_a-cursors.o `test -f 'cursors.c' || echo './'`cursors.c
cursors.c: In function '_cursors_create_cursor':
cursors.c:693:7: warning: pointer targets in passing argument 3 of 'XCreateBitmapFromData' differ in signedness [-Wpointer-sign]
/usr/include/X11/Xlib.h:1612:15: note: expected 'const char *' but argument is of type 'const unsigned char *'
mv -f .deps/libxitk_a-cursors.Tpo .deps/libxitk_a-cursors.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-dnd.o -MD -MP -MF .deps/libxitk_a-dnd.Tpo -c -o libxitk_a-dnd.o `test -f 'dnd.c' || echo './'`dnd.c
dnd.c: In function '_dnd_get_selection':
dnd.c:148:19: warning: variable 'nread' set but not used [-Wunused-but-set-variable]
dnd.c: In function 'xitk_init_dnd':
dnd.c:327:3: warning: passing argument 2 of 'XInternAtoms' from incompatible pointer type [enabled by default]
/usr/include/X11/Xlib.h:1549:15: note: expected 'char **' but argument is of type 'const char * const*'
dnd.c:328:3: warning: passing argument 2 of 'XInternAtoms' from incompatible pointer type [enabled by default]
/usr/include/X11/Xlib.h:1549:15: note: expected 'char **' but argument is of type 'const char * const*'
dnd.c: In function 'xitk_process_client_dnd_message':
dnd.c:547:30: warning: variable 'toplevel' set but not used [-Wunused-but-set-variable]
dnd.c:48:39: warning: array subscript is above array bounds [-Warray-bounds]
mv -f .deps/libxitk_a-dnd.Tpo .deps/libxitk_a-dnd.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-doublebox.o -MD -MP -MF .deps/libxitk_a-doublebox.Tpo -c -o libxitk_a-doublebox.o `test -f 'doublebox.c' || echo './'`doublebox.c
mv -f .deps/libxitk_a-doublebox.Tpo .deps/libxitk_a-doublebox.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-font.o -MD -MP -MF .deps/libxitk_a-font.Tpo -c -o libxitk_a-font.o `test -f 'font.c' || echo './'`font.c
mv -f .deps/libxitk_a-font.Tpo .deps/libxitk_a-font.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-getdeskroot.o -MD -MP -MF .deps/libxitk_a-getdeskroot.Tpo -c -o libxitk_a-getdeskroot.o `test -f 'getdeskroot.c' || echo './'`getdeskroot.c
mv -f .deps/libxitk_a-getdeskroot.Tpo .deps/libxitk_a-getdeskroot.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-image.o -MD -MP -MF .deps/libxitk_a-image.Tpo -c -o libxitk_a-image.o `test -f 'image.c' || echo './'`image.c
image.c: In function '_draw_frame':
image.c:1360:51: warning: variable 'fheight' set but not used [-Wunused-but-set-variable]
mv -f .deps/libxitk_a-image.Tpo .deps/libxitk_a-image.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-inputtext.o -MD -MP -MF .deps/libxitk_a-inputtext.Tpo -c -o libxitk_a-inputtext.o `test -f 'inputtext.c' || echo './'`inputtext.c
mv -f .deps/libxitk_a-inputtext.Tpo .deps/libxitk_a-inputtext.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-intbox.o -MD -MP -MF .deps/libxitk_a-intbox.Tpo -c -o libxitk_a-intbox.o `test -f 'intbox.c' || echo './'`intbox.c
mv -f .deps/libxitk_a-intbox.Tpo .deps/libxitk_a-intbox.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-label.o -MD -MP -MF .deps/libxitk_a-label.Tpo -c -o libxitk_a-label.o `test -f 'label.c' || echo './'`label.c
mv -f .deps/libxitk_a-label.Tpo .deps/libxitk_a-label.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-labelbutton.o -MD -MP -MF .deps/libxitk_a-labelbutton.Tpo -c -o libxitk_a-labelbutton.o `test -f 'labelbutton.c' || echo './'`labelbutton.c
mv -f .deps/libxitk_a-labelbutton.Tpo .deps/libxitk_a-labelbutton.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-list.o -MD -MP -MF .deps/libxitk_a-list.Tpo -c -o libxitk_a-list.o `test -f 'list.c' || echo './'`list.c
mv -f .deps/libxitk_a-list.Tpo .deps/libxitk_a-list.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-menu.o -MD -MP -MF .deps/libxitk_a-menu.Tpo -c -o libxitk_a-menu.o `test -f 'menu.c' || echo './'`menu.c
mv -f .deps/libxitk_a-menu.Tpo .deps/libxitk_a-menu.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-mrlbrowser.o -MD -MP -MF .deps/libxitk_a-mrlbrowser.Tpo -c -o libxitk_a-mrlbrowser.o `test -f 'mrlbrowser.c' || echo './'`mrlbrowser.c
mrlbrowser.c: In function 'xitk_mrlbrowser_create':
mrlbrowser.c:978:31: warning: variable 'screen' set but not used [-Wunused-but-set-variable]
mv -f .deps/libxitk_a-mrlbrowser.Tpo .deps/libxitk_a-mrlbrowser.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-skin.o -MD -MP -MF .deps/libxitk_a-skin.Tpo -c -o libxitk_a-skin.o `test -f 'skin.c' || echo './'`skin.c
skin.c:109:2: warning: #warning FIXME [-Wcpp]
mv -f .deps/libxitk_a-skin.Tpo .deps/libxitk_a-skin.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-slider.o -MD -MP -MF .deps/libxitk_a-slider.Tpo -c -o libxitk_a-slider.o `test -f 'slider.c' || echo './'`slider.c
mv -f .deps/libxitk_a-slider.Tpo .deps/libxitk_a-slider.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-tabs.o -MD -MP -MF .deps/libxitk_a-tabs.Tpo -c -o libxitk_a-tabs.o `test -f 'tabs.c' || echo './'`tabs.c
tabs.c: In function 'paint':
tabs.c:171:24: warning: variable 'private_data' set but not used [-Wunused-but-set-variable]
mv -f .deps/libxitk_a-tabs.Tpo .deps/libxitk_a-tabs.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-tips.o -MD -MP -MF .deps/libxitk_a-tips.Tpo -c -o libxitk_a-tips.o `test -f 'tips.c' || echo './'`tips.c
mv -f .deps/libxitk_a-tips.Tpo .deps/libxitk_a-tips.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-widget.o -MD -MP -MF .deps/libxitk_a-widget.Tpo -c -o libxitk_a-widget.o `test -f 'widget.c' || echo './'`widget.c
mv -f .deps/libxitk_a-widget.Tpo .deps/libxitk_a-widget.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-window.o -MD -MP -MF .deps/libxitk_a-window.Tpo -c -o libxitk_a-window.o `test -f 'window.c' || echo './'`window.c
window.c: In function '_window_handle_event':
window.c:671:16: warning: variable 'len' set but not used [-Wunused-but-set-variable]
window.c: In function 'xitk_window_dialog_button_free_with_width':
window.c:888:8: warning: 'height' may be used uninitialized in this function [-Wuninitialized]
window.c:888:8: warning: 'width' may be used uninitialized in this function [-Wuninitialized]
window.c: In function 'xitk_window_dialog_one_button_with_width':
window.c:1024:8: warning: 'height' may be used uninitialized in this function [-Wuninitialized]
window.c:1024:8: warning: 'width' may be used uninitialized in this function [-Wuninitialized]
window.c: In function 'xitk_window_dialog_checkbox_two_buttons_with_width':
window.c:1264:8: warning: 'height' may be used uninitialized in this function [-Wuninitialized]
window.c:1264:8: warning: 'width' may be used uninitialized in this function [-Wuninitialized]
window.c: In function 'xitk_window_dialog_three_buttons_with_width':
window.c:1492:8: warning: 'height' may be used uninitialized in this function [-Wuninitialized]
window.c:1492:8: warning: 'width' may be used uninitialized in this function [-Wuninitialized]
mv -f .deps/libxitk_a-window.Tpo .deps/libxitk_a-window.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-xitk.o -MD -MP -MF .deps/libxitk_a-xitk.Tpo -c -o libxitk_a-xitk.o `test -f 'xitk.c' || echo './'`xitk.c
xitk.c: In function 'xitk_xevent_notify':
xitk.c:1332:19: warning: variable 'len' set but not used [-Wunused-but-set-variable]
xitk.c:1556:22: warning: variable 'err' set but not used [-Wunused-but-set-variable]
xitk.c:1774:2: warning: #warning FIXME [-Wcpp]
mv -f .deps/libxitk_a-xitk.Tpo .deps/libxitk_a-xitk.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/freetype2   -fno-strict-aliasing -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT libxitk_a-recode.o -MD -MP -MF .deps/libxitk_a-recode.Tpo -c -o libxitk_a-recode.o `test -f 'recode.c' || echo './'`recode.c
mv -f .deps/libxitk_a-recode.Tpo .deps/libxitk_a-recode.Po
rm -f libxitk.a
ar cru libxitk.a libxitk_a-browser.o libxitk_a-button.o libxitk_a-checkbox.o libxitk_a-combo.o libxitk_a-config.o libxitk_a-cursors.o libxitk_a-dnd.o libxitk_a-doublebox.o libxitk_a-font.o libxitk_a-getdeskroot.o libxitk_a-image.o libxitk_a-inputtext.o libxitk_a-intbox.o libxitk_a-label.o libxitk_a-labelbutton.o libxitk_a-list.o libxitk_a-menu.o libxitk_a-mrlbrowser.o libxitk_a-skin.o libxitk_a-slider.o libxitk_a-tabs.o libxitk_a-tips.o libxitk_a-widget.o libxitk_a-window.o libxitk_a-xitk.o libxitk_a-recode.o 
ranlib libxitk.a
make[6]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/xine-toolkit'
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/xine-toolkit'
Making all in skins
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/skins'
Making all in xinetic
make[6]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/skins/xinetic'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/skins/xinetic'
make[6]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/skins'
make[6]: Nothing to be done for `all-am'.
make[6]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/skins'
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/skins'
Making all in oxine
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/oxine'
Making all in data
make[6]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/oxine/data'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/oxine/data'
make[6]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/oxine'
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT list.o -MD -MP -MF .deps/list.Tpo -c -o list.o list.c
mv -f .deps/list.Tpo .deps/list.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT mediamarks.o -MD -MP -MF .deps/mediamarks.Tpo -c -o mediamarks.o mediamarks.c
mediamarks.c: In function 'read_mediamarks':
mediamarks.c:499:3: warning: 'xml_parser_init' is deprecated (declared at /usr/include/xine/xmlparser.h:64) [-Wdeprecated-declarations]
mediamarks.c:501:3: warning: 'xml_parser_build_tree' is deprecated (declared at /usr/include/xine/xmlparser.h:68) [-Wdeprecated-declarations]
mv -f .deps/mediamarks.Tpo .deps/mediamarks.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT odk.o -MD -MP -MF .deps/odk.Tpo -c -o odk.o odk.c
mv -f .deps/odk.Tpo .deps/odk.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT otk.o -MD -MP -MF .deps/otk.Tpo -c -o otk.o otk.c
otk.c:1863:13: warning: 'otk_update_job' defined but not used [-Wunused-function]
mv -f .deps/otk.Tpo .deps/otk.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT oxine.o -MD -MP -MF .deps/oxine.Tpo -c -o oxine.o oxine.c
oxine.c: In function 'read_main_menu':
oxine.c:476:3: warning: 'xml_parser_init' is deprecated (declared at /usr/include/xine/xmlparser.h:64) [-Wdeprecated-declarations]
oxine.c:478:3: warning: 'xml_parser_build_tree' is deprecated (declared at /usr/include/xine/xmlparser.h:68) [-Wdeprecated-declarations]
mv -f .deps/oxine.Tpo .deps/oxine.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT playlist.o -MD -MP -MF .deps/playlist.Tpo -c -o playlist.o playlist.c
mv -f .deps/playlist.Tpo .deps/playlist.Po
gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../.. -I../../../src -I../../../src -I../../../src/common -I../../../src/common -I../../../src/xitk/xine-toolkit -I../../../src/xitk/xine-toolkit -I/usr/include  -I../../../src/xitk   -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT utils.o -MD -MP -MF .deps/utils.Tpo -c -o utils.o utils.c
mv -f .deps/utils.Tpo .deps/utils.Po
rm -f liboxine.a
ar cru liboxine.a list.o mediamarks.o odk.o otk.o oxine.o playlist.o utils.o 
ranlib liboxine.a
make[6]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/oxine'
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk/oxine'
Making all in .
make[5]: Entering directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk'
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/readline -I../../src/xitk/xine-toolkit -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT actions.o -MD -MP -MF .deps/actions.Tpo -c -o actions.o actions.c
mv -f .deps/actions.Tpo .deps/actions.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/readline -I../../src/xitk/xine-toolkit -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT control.o -MD -MP -MF .deps/control.Tpo -c -o control.o control.c
mv -f .deps/control.Tpo .deps/control.Po
gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -I../../src -I../../src -I../../src/common -I../../src/common -I../../src/xitk/xine-toolkit -I../../src/xitk/xine-toolkit -I/usr/include    -I/usr/include/readline -I../../src/xitk/xine-toolkit -Wall -D_FILE_OFFSET_BITS=64 -Wpointer-arith -Wnested-externs -Wcast-align -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -g -O2     -DNDEBUG -Wformat=2 -Wno-format-zero-length -Wmissing-format-attribute -Wstrict-aliasing=2 -MT download.o -MD -MP -MF .deps/download.Tpo -c -o download.o download.c
download.c:31:24: fatal error: curl/types.h: No such file or directory
compilation terminated.
make[5]: *** [download.o] Error 1
make[5]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src/xitk'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/build/xine-ui-5NYhrA/xine-ui-0.99.6'
make: *** [build-stamp] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2
────────────────────────────────────────────────────────────────────────────────
Build finished at 20110823-0120

Finished
────────

E: Build failure (dpkg-buildpackage died)

┌──────────────────────────────────────────────────────────────────────────────┐
│ Cleanup                                                                      │
└──────────────────────────────────────────────────────────────────────────────┘

Purging /var/lib/schroot/mount/lsid64-6b6673d2-4e39-4ad0-a464-1205529f8966/build/xine-ui-5NYhrA
Not cleaning session: cloned chroot in use

┌──────────────────────────────────────────────────────────────────────────────┐
│ Summary                                                                      │
└──────────────────────────────────────────────────────────────────────────────┘

Architecture: amd64
Build-Space: 19036
Build-Time: 28
Distribution: lsid64
Fail-Stage: build
Install-Time: 12
Job: xine-ui_0.99.6-1
Package: xine-ui
Package-Time: 65
Source-Version: 0.99.6-1
Space: 19036
Status: attempted
Version: 0.99.6-1
────────────────────────────────────────────────────────────────────────────────
Finished at 20110823-0120
Build needed 00:01:05, 19036k disc space
DC-Build-Status: Failed 724.936702s
### Content of /var/log/daemon.log ###
Aug 22 23:14:14 talc-77 approx: Concurrent download of debian/dists/sid/Release.gpg is taking too long
Aug 22 23:14:54 talc-77 approx: Concurrent download of debian/dists/sid/main/i18n/Index is taking too long
Aug 22 23:15:11 talc-77 approx: Concurrent download of debian/dists/sid/contrib/i18n/Translation-en.xz is taking too long
Aug 22 23:15:21 talc-77 approx: Concurrent download of debian/dists/sid/main/i18n/Index is taking too long
Aug 22 23:15:31 talc-77 approx: Concurrent download of debian/dists/sid/main/i18n/Translation-en.bz2 is taking too long
Aug 22 23:15:54 talc-77 approx: Concurrent download of debian/dists/sid/main/source/Sources.xz is taking too long
Aug 22 23:16:34 talc-77 approx: Concurrent download of debian/dists/sid/contrib/source/Sources.xz is taking too long
Aug 23 01:08:12 talc-77 approx: Concurrent download of debian/dists/sid/non-free/i18n/Translation-en.xz is taking too long
### End of content of /var/log/daemon.log ###
DC-Time-Estimation: 724.936702 versus expected 73 (r/m: 8.93063975342466 ; m: 73.0)
DC-Build-Network: USED. See /tmp/rulesafter.gY8tZL !
************************************************************
# Generated by iptables-save v1.4.8 on Tue Aug 23 01:20:16 2011
*filter
:INPUT ACCEPT [2858596:14344419960]
:FORWARD ACCEPT [0:0]
:OUTPUT DROP [0:0]
:LD - [0:0]
[1001142:11992915938] -A OUTPUT -o lo -j ACCEPT 
[0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
[0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
[0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
[0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT 
[0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT 
[0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT 
[0:0] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT 
[0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT 
[0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
[0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
[0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
[822546:95158572] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
[4296:409708] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
[8:480] -A OUTPUT -j LD 
[8:480] -A LD -j LOG 
[8:480] -A LD -j REJECT --reject-with icmp-port-unreachable 
COMMIT
# Completed on Tue Aug 23 01:20:16 2011
************************************************************
--- /tmp/rulesbefore.z1ZUkV	2011-08-23 01:08:11.343192119 +0200
+++ /tmp/rulesafter.gY8tZL	2011-08-23 01:20:16.290442338 +0200
@@ -1,10 +1,10 @@
-# Generated by iptables-save v1.4.8 on Tue Aug 23 01:08:11 2011
+# Generated by iptables-save v1.4.8 on Tue Aug 23 01:20:16 2011
 *filter
-:INPUT ACCEPT [2393772:10796512717]
+:INPUT ACCEPT [2858596:14344419960]
 :FORWARD ACCEPT [0:0]
 :OUTPUT DROP [0:0]
 :LD - [0:0]
-[733150:8673965940] -A OUTPUT -o lo -j ACCEPT 
+[1001142:11992915938] -A OUTPUT -o lo -j ACCEPT 
 [0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
 [0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
 [0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
@@ -16,10 +16,10 @@
 [0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
 [0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
 [0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
-[723885:78366932] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
-[3825:365344] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
-[2:120] -A OUTPUT -j LD 
-[2:120] -A LD -j LOG 
-[2:120] -A LD -j REJECT --reject-with icmp-port-unreachable 
+[822546:95158572] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+[4296:409708] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+[8:480] -A OUTPUT -j LD 
+[8:480] -A LD -j LOG 
+[8:480] -A LD -j REJECT --reject-with icmp-port-unreachable 
 COMMIT
-# Completed on Tue Aug 23 01:08:11 2011
+# Completed on Tue Aug 23 01:20:16 2011
************************************************************
[   12.108656] 
[   12.108665] ioatdma 0000:00:0f.0: setting latency timer to 64
[   12.117632]   alloc irq_desc for 56 on node -1
[   12.117635]   alloc kstat_irqs on node -1
[   12.117643] ioatdma 0000:00:0f.0: irq 56 for MSI/MSI-X
[   12.117645]   alloc irq_desc for 57 on node -1
[   12.117647]   alloc kstat_irqs on node -1
[   12.117650] ioatdma 0000:00:0f.0: irq 57 for MSI/MSI-X
[   12.117652]   alloc irq_desc for 58 on node -1
[   12.117653]   alloc kstat_irqs on node -1
[   12.117656] ioatdma 0000:00:0f.0: irq 58 for MSI/MSI-X
[   12.117657]   alloc irq_desc for 59 on node -1
[   12.117659]   alloc kstat_irqs on node -1
[   12.117662] ioatdma 0000:00:0f.0: irq 59 for MSI/MSI-X
[   12.118116] processor LNXCPU:07: registered as cooling_device7
[   12.203293] EDAC MC0: Giving out device to 'i5400_edac.c' 'I5400': DEV 0000:00:10.0
[   12.249339] EDAC PCI0: Giving out device to module 'i5400_edac' controller 'EDAC PCI controller': DEV '0000:00:10.0' (POLLED)
[   12.385574] Error: Driver 'pcspkr' is already registered, aborting...
[   12.602758] EXT3 FS on sda3, internal journal
[   12.820890] kjournald starting.  Commit interval 5 seconds
[   12.821057] EXT3 FS on sda5, internal journal
[   12.821062] EXT3-fs: mounted filesystem with ordered data mode.
[   13.249997] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
[   13.304049] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
[   13.306178] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   15.907939] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   15.957628] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   26.696006] eth0: no IPv6 routers present
[  118.035276] RPC: Registered udp transport module.
[  118.063508] RPC: Registered tcp transport module.
[  118.091720] RPC: Registered tcp NFSv4.1 backchannel transport module.
[  118.162227] Slow work thread pool: Starting up
[  118.188978] Slow work thread pool: Ready
[  118.212555] FS-Cache: Loaded
[  118.251137] FS-Cache: Netfs 'nfs' registered for caching
[  118.875054] svc: failed to register lockdv1 RPC service (errno 97).
[  149.368627] Adding 296929352k swap on /dev/sda5.  Priority:-1 extents:1 across:296929352k 
[  168.749511] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 2993.402505] argument2[24361]: segfault at 1f ip 00002ba013bcd038 sp 00007fffb0668140 error 4 in libc-2.13.so[2ba013b89000+17a000]
[ 2993.474449] argument2[24404]: segfault at 2000 ip 00002b2d632de038 sp 00007fff832d0080 error 4 in libc-2.13.so[2b2d6329a000+17a000]
[ 3986.267403] argument2[16012]: segfault at 1f ip 00002b134f047038 sp 00007fffefe31000 error 4 in libc-2.13.so[2b134f003000+17a000]
[ 3986.339384] argument2[16015]: segfault at 2000 ip 00002b80fbf56038 sp 00007fffd53f1330 error 4 in libc-2.13.so[2b80fbf12000+17a000]
[ 7097.026292] IN= OUT=eth0 SRC=172.16.66.77 DST=192.9.162.55 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=40868 DF PROTO=TCP SPT=45030 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0 
[ 7100.113268] IN= OUT=eth0 SRC=172.16.66.77 DST=192.9.162.55 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=40869 DF PROTO=TCP SPT=45030 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0 
[ 7807.272069] IN= OUT=eth0 SRC=172.16.66.77 DST=82.94.164.162 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=32364 DF PROTO=TCP SPT=38228 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0 
[ 7810.361275] IN= OUT=eth0 SRC=172.16.66.77 DST=82.94.164.162 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=32365 DF PROTO=TCP SPT=38228 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0 
[ 7810.453054] IN= OUT=eth0 SRC=172.16.66.77 DST=208.78.100.165 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=27338 DF PROTO=TCP SPT=38478 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0 
[ 7813.540778] IN= OUT=eth0 SRC=172.16.66.77 DST=208.78.100.165 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=27339 DF PROTO=TCP SPT=38478 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0 
[ 7813.798583] IN= OUT=eth0 SRC=172.16.66.77 DST=46.4.29.185 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=21875 DF PROTO=TCP SPT=57278 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0 
[ 7816.885018] IN= OUT=eth0 SRC=172.16.66.77 DST=46.4.29.185 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=21876 DF PROTO=TCP SPT=57278 DPT=80 WINDOW=5840 RES=0x00 SYN URGP=0 
************************************************************