Revision 343639613138 () - Diff

Link to this snippet: https://friendpaste.com/2i7Y029MsEt6tnR0IoYeBE
Embed:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
Started by upstream project "memcached" build number 1
Building remotely on farshid-ubuntu-1204-1 in workspace /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1
[farshid-ubuntu-1204-1] $ repo init -u git://github.com/membase/manifest.git -m branch-2.0.xml --reference=10.1.1.210
Get https://code.google.com/p/git-repo/
From https://code.google.com/p/git-repo
* [new branch] maint -> origin/maint
* [new branch] master -> origin/master
* [new branch] stable -> origin/stable
* [new tag] v1.0 -> v1.0
* [new tag] v1.0.1 -> v1.0.1
* [new tag] v1.0.2 -> v1.0.2
* [new tag] v1.0.3 -> v1.0.3
* [new tag] v1.0.4 -> v1.0.4
* [new tag] v1.0.5 -> v1.0.5
* [new tag] v1.0.6 -> v1.0.6
* [new tag] v1.0.7 -> v1.0.7
* [new tag] v1.0.8 -> v1.0.8
* [new tag] v1.0.9 -> v1.0.9
* [new tag] v1.1 -> v1.1
* [new tag] v1.2 -> v1.2
* [new tag] v1.3 -> v1.3
* [new tag] v1.3.1 -> v1.3.1
* [new tag] v1.3.2 -> v1.3.2
* [new tag] v1.4 -> v1.4
* [new tag] v1.4.1 -> v1.4.1
* [new tag] v1.4.2 -> v1.4.2
* [new tag] v1.4.3 -> v1.4.3
* [new tag] v1.4.4 -> v1.4.4
* [new tag] v1.5 -> v1.5
* [new tag] v1.5.1 -> v1.5.1
* [new tag] v1.6 -> v1.6
* [new tag] v1.6.1 -> v1.6.1
* [new tag] v1.6.10 -> v1.6.10
* [new tag] v1.6.10.1 -> v1.6.10.1
* [new tag] v1.6.10.2 -> v1.6.10.2
* [new tag] v1.6.2 -> v1.6.2
* [new tag] v1.6.3 -> v1.6.3
* [new tag] v1.6.4 -> v1.6.4
* [new tag] v1.6.5 -> v1.6.5
* [new tag] v1.6.6 -> v1.6.6
* [new tag] v1.6.7 -> v1.6.7
* [new tag] v1.6.7.1 -> v1.6.7.1
* [new tag] v1.6.7.2 -> v1.6.7.2
* [new tag] v1.6.7.3 -> v1.6.7.3
* [new tag] v1.6.7.4 -> v1.6.7.4
* [new tag] v1.6.7.5 -> v1.6.7.5
* [new tag] v1.6.8 -> v1.6.8
* [new tag] v1.6.8.1 -> v1.6.8.1
* [new tag] v1.6.8.10 -> v1.6.8.10
* [new tag] v1.6.8.11 -> v1.6.8.11
* [new tag] v1.6.8.2 -> v1.6.8.2
* [new tag] v1.6.8.3 -> v1.6.8.3
* [new tag] v1.6.8.4 -> v1.6.8.4
* [new tag] v1.6.8.5 -> v1.6.8.5
* [new tag] v1.6.8.6 -> v1.6.8.6
* [new tag] v1.6.8.7 -> v1.6.8.7
* [new tag] v1.6.8.8 -> v1.6.8.8
* [new tag] v1.6.8.9 -> v1.6.8.9
* [new tag] v1.6.9 -> v1.6.9
* [new tag] v1.6.9.1 -> v1.6.9.1
* [new tag] v1.6.9.2 -> v1.6.9.2
* [new tag] v1.6.9.3 -> v1.6.9.3
* [new tag] v1.6.9.4 -> v1.6.9.4
* [new tag] v1.6.9.5 -> v1.6.9.5
* [new tag] v1.6.9.6 -> v1.6.9.6
* [new tag] v1.6.9.7 -> v1.6.9.7
* [new tag] v1.6.9.8 -> v1.6.9.8
* [new tag] v1.7 -> v1.7
* [new tag] v1.7.1 -> v1.7.1
* [new tag] v1.7.2 -> v1.7.2
* [new tag] v1.7.3 -> v1.7.3
* [new tag] v1.7.3.1 -> v1.7.3.1
* [new tag] v1.7.4 -> v1.7.4
* [new tag] v1.7.4.1 -> v1.7.4.1
* [new tag] v1.7.4.2 -> v1.7.4.2
* [new tag] v1.7.4.3 -> v1.7.4.3
* [new tag] v1.7.5 -> v1.7.5
* [new tag] v1.7.6 -> v1.7.6
* [new tag] v1.7.6.1 -> v1.7.6.1
* [new tag] v1.7.7 -> v1.7.7
* [new tag] v1.7.7.1 -> v1.7.7.1
* [new tag] v1.7.7.2 -> v1.7.7.2
* [new tag] v1.7.7.3 -> v1.7.7.3
* [new tag] v1.7.7.4 -> v1.7.7.4
* [new tag] v1.7.7.5 -> v1.7.7.5
* [new tag] v1.7.7.6 -> v1.7.7.6
* [new tag] v1.7.8 -> v1.7.8
* [new tag] v1.7.8.1 -> v1.7.8.1
* [new tag] v1.7.8.2 -> v1.7.8.2
* [new tag] v1.8.0 -> v1.8.0
* [new tag] v1.8.1 -> v1.8.1
* [new tag] v1.8.2 -> v1.8.2

... A new repo command ( 1.15) is available.
... You should upgrade soon:

cp /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/.repo/repo/repo /usr/bin/repo

Get git://github.com/membase/manifest.git
From git://github.com/membase/manifest
* [new branch] branch-171 -> origin/branch-171
* [new branch] for-master -> origin/for-master
* [new branch] master -> origin/master
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.0r -> 1.7.0r
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1

repo initialized in /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1
[farshid-ubuntu-1204-1] $ repo sync -d --jobs=16

... A new repo command ( 1.15) is available.
... You should upgrade soon:

cp /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/.repo/repo/repo /usr/bin/repo

From git://github.com/couchbase/couchbase-python-client
* [new branch] master -> couchbase/master
* [new tag] 0.5 -> 0.5
* [new tag] 0.6 -> 0.6
* [new tag] 1.8.0 -> 1.8.0
From git://github.com/couchbase/couchbase-examples
* [new branch] master -> couchbase/master
* [new branch] recipes -> couchbase/recipes
From git://github.com/couchbase/libcbio
* [new branch] gtest -> couchbase/gtest
* [new branch] master -> couchbase/master
* [new tag] 0.0.1 -> 0.0.1
From git://github.com/couchbase/mccouch
* [new branch] master -> couchbase/master
* [new tag] 0.0.0 -> 0.0.0
From git://github.com/membase/membase-cli
* [new branch] branch-18 -> membase/branch-18
* [new branch] branch-20 -> membase/branch-20
* [new branch] dev -> membase/dev
* [new branch] master -> membase/master
* [new branch] mbsamp -> membase/mbsamp
* [new tag] 0.0.0 -> 0.0.0
* [new tag] 1.6.0 -> 1.6.0
* [new tag] 1.6.0.2 -> 1.6.0.2
* [new tag] 1.6.0a -> 1.6.0a
* [new tag] 1.6.0a1 -> 1.6.0a1
* [new tag] 1.6.0a2 -> 1.6.0a2
* [new tag] 1.6.0beta1 -> 1.6.0beta1
* [new tag] 1.6.0beta1.1 -> 1.6.0beta1.1
* [new tag] 1.6.0beta1rc1 -> 1.6.0beta1rc1
* [new tag] 1.6.0beta1rc2 -> 1.6.0beta1rc2
* [new tag] 1.6.0beta1rc3 -> 1.6.0beta1rc3
* [new tag] 1.6.0beta1rc4 -> 1.6.0beta1rc4
* [new tag] 1.6.0beta2 -> 1.6.0beta2
* [new tag] 1.6.0beta2rc1 -> 1.6.0beta2rc1
* [new tag] 1.6.0beta2rc2 -> 1.6.0beta2rc2
* [new tag] 1.6.0beta2rc3 -> 1.6.0beta2rc3
* [new tag] 1.6.0beta3 -> 1.6.0beta3
* [new tag] 1.6.0beta3.1 -> 1.6.0beta3.1
* [new tag] 1.6.0beta3.2b -> 1.6.0beta3.2b
* [new tag] 1.6.0beta3a -> 1.6.0beta3a
* [new tag] 1.6.0beta3b -> 1.6.0beta3b
* [new tag] 1.6.0beta3c -> 1.6.0beta3c
* [new tag] 1.6.0beta4 -> 1.6.0beta4
* [new tag] 1.6.0beta4rc1 -> 1.6.0beta4rc1
* [new tag] 1.6.0rc1 -> 1.6.0rc1
* [new tag] 1.6.1pre -> 1.6.1pre
* [new tag] 1.6.1rc1 -> 1.6.1rc1
* [new tag] 1.6.1rc2 -> 1.6.1rc2
* [new tag] 1.6.2 -> 1.6.2
* [new tag] 1.6.3 -> 1.6.3
* [new tag] 1.6.3r -> 1.6.3r
* [new tag] 1.6.4 -> 1.6.4
* [new tag] 1.6.4.1 -> 1.6.4.1
* [new tag] 1.6.4r -> 1.6.4r
* [new tag] 1.6.5 -> 1.6.5
* [new tag] 1.6.5.1 -> 1.6.5.1
* [new tag] 1.6.5.4 -> 1.6.5.4
* [new tag] 1.6.5r -> 1.6.5r
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.0r -> 1.7.0r
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1
* [new tag] 1.7.2 -> 1.7.2
* [new tag] 1.8.0 -> 1.8.0
* [new tag] 1.8.0r -> 1.8.0r
* [new tag] 1.8.1r -> 1.8.1r
From git://github.com/membase/memcachetest
* [new branch] master -> membase/master
* [new branch] membase_1.7.0 -> membase/membase_1.7.0
* [new branch] membase_1.7.1 -> membase/membase_1.7.1
* [new tag] 0.5 -> 0.5
* [new tag] 0.6.0 -> 0.6.0
* [new tag] 0.6.5 -> 0.6.5
* [new tag] 0.6.6 -> 0.6.6
* [new tag] 0.7.0 -> 0.7.0
* [new tag] 0.8.0 -> 0.8.0
* [new tag] 0.8.1 -> 0.8.1
* [new tag] 0.8.2 -> 0.8.2
* [new tag] 0.8.3 -> 0.8.3
* [new tag] couchbase_1.8.0 -> couchbase_1.8.0
From git://github.com/couchbase/couchstore
* [new branch] master -> couchbase/master
From git://github.com/couchbase/bucket_engine
* [new branch] branch-18-MB-4738 -> couchbase/branch-18-MB-4738
* [new branch] branch-18-mb-4901 -> couchbase/branch-18-mb-4901
* [new branch] branch-181 -> couchbase/branch-181
* [new branch] branch-20 -> couchbase/branch-20
* [new branch] collectd -> couchbase/collectd
* [new branch] debian -> couchbase/debian
* [new branch] heroku_northscale_service -> couchbase/heroku_northscale_service
* [new branch] lua -> couchbase/lua
* [new branch] master -> couchbase/master
* [new branch] refresh -> couchbase/refresh
* [new branch] remove_refactor -> couchbase/remove_refactor
* [new branch] win32 -> couchbase/win32
* [new tag] 0.0.1 -> 0.0.1
* [new tag] 0.3.0 -> 0.3.0
* [new tag] 0.5.0 -> 0.5.0
* [new tag] 0.7.0 -> 0.7.0
* [new tag] 0.7.1 -> 0.7.1
* [new tag] 0.9.0 -> 0.9.0
* [new tag] 0.9.1 -> 0.9.1
* [new tag] 0.9.2 -> 0.9.2
* [new tag] 0.9.3 -> 0.9.3
* [new tag] 1.0.0 -> 1.0.0
* [new tag] 1.0.2 -> 1.0.2
* [new tag] 1.0.2rc1 -> 1.0.2rc1
* [new tag] 1.0.2rc2 -> 1.0.2rc2
* [new tag] 1.0.2rc3 -> 1.0.2rc3
* [new tag] 1.0.2rc4 -> 1.0.2rc4
* [new tag] 1.0.3 -> 1.0.3
* [new tag] 1.0.3rc1 -> 1.0.3rc1
* [new tag] 1.6.0 -> 1.6.0
* [new tag] 1.6.0.2 -> 1.6.0.2
* [new tag] 1.6.0a -> 1.6.0a
* [new tag] 1.6.0a1 -> 1.6.0a1
* [new tag] 1.6.0a2 -> 1.6.0a2
* [new tag] 1.6.0beta1 -> 1.6.0beta1
* [new tag] 1.6.0beta1.1 -> 1.6.0beta1.1
* [new tag] 1.6.0beta1rc1 -> 1.6.0beta1rc1
* [new tag] 1.6.0beta1rc2 -> 1.6.0beta1rc2
* [new tag] 1.6.0beta1rc3 -> 1.6.0beta1rc3
* [new tag] 1.6.0beta1rc4 -> 1.6.0beta1rc4
* [new tag] 1.6.0beta2 -> 1.6.0beta2
* [new tag] 1.6.0beta2rc1 -> 1.6.0beta2rc1
* [new tag] 1.6.0beta2rc2 -> 1.6.0beta2rc2
* [new tag] 1.6.0beta2rc3 -> 1.6.0beta2rc3
* [new tag] 1.6.0beta3 -> 1.6.0beta3
* [new tag] 1.6.0beta3.1 -> 1.6.0beta3.1
* [new tag] 1.6.0beta3.2b -> 1.6.0beta3.2b
* [new tag] 1.6.0beta3a -> 1.6.0beta3a
* [new tag] 1.6.0beta3b -> 1.6.0beta3b
* [new tag] 1.6.0beta3c -> 1.6.0beta3c
* [new tag] 1.6.0beta4 -> 1.6.0beta4
* [new tag] 1.6.0beta4rc1 -> 1.6.0beta4rc1
* [new tag] 1.6.0rc1 -> 1.6.0rc1
* [new tag] 1.6.1pre -> 1.6.1pre
* [new tag] 1.6.1rc1 -> 1.6.1rc1
* [new tag] 1.6.1rc2 -> 1.6.1rc2
* [new tag] 1.6.2 -> 1.6.2
* [new tag] 1.6.3 -> 1.6.3
* [new tag] 1.6.3r -> 1.6.3r
* [new tag] 1.6.4 -> 1.6.4
* [new tag] 1.6.4.1 -> 1.6.4.1
* [new tag] 1.6.4r -> 1.6.4r
* [new tag] 1.6.5 -> 1.6.5
* [new tag] 1.6.5.1 -> 1.6.5.1
* [new tag] 1.6.5.3 -> 1.6.5.3
* [new tag] 1.6.5.3r -> 1.6.5.3r
* [new tag] 1.6.5.4 -> 1.6.5.4
* [new tag] 1.6.5r -> 1.6.5r
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.0r -> 1.7.0r
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1
* [new tag] 1.7.2 -> 1.7.2
* [new tag] 1.8.0 -> 1.8.0
From git://github.com/couchbase/portsigar
* [new branch] master -> couchbase/master
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1
From git://github.com/couchbase/libconflate
* [new branch] gh-pages -> couchbase/gh-pages
* [new branch] master -> couchbase/master
* [new branch] rest_libconflate -> couchbase/rest_libconflate
* [new tag] 0.10.0 -> 0.10.0
* [new tag] 0.10.0-rc1 -> 0.10.0-rc1
* [new tag] 0.9 -> 0.9
* [new tag] 0.9.5 -> 0.9.5
* [new tag] 0.9.6 -> 0.9.6
* [new tag] 1.6.0 -> 1.6.0
* [new tag] 1.6.0.2 -> 1.6.0.2
* [new tag] 1.6.0a -> 1.6.0a
* [new tag] 1.6.0a1 -> 1.6.0a1
* [new tag] 1.6.0a2 -> 1.6.0a2
* [new tag] 1.6.0beta1 -> 1.6.0beta1
* [new tag] 1.6.0beta1.1 -> 1.6.0beta1.1
* [new tag] 1.6.0beta1rc1 -> 1.6.0beta1rc1
* [new tag] 1.6.0beta1rc2 -> 1.6.0beta1rc2
* [new tag] 1.6.0beta1rc3 -> 1.6.0beta1rc3
* [new tag] 1.6.0beta1rc4 -> 1.6.0beta1rc4
* [new tag] 1.6.0beta2 -> 1.6.0beta2
* [new tag] 1.6.0beta2rc1 -> 1.6.0beta2rc1
* [new tag] 1.6.0beta2rc2 -> 1.6.0beta2rc2
* [new tag] 1.6.0beta2rc3 -> 1.6.0beta2rc3
* [new tag] 1.6.0beta3 -> 1.6.0beta3
* [new tag] 1.6.0beta3.1 -> 1.6.0beta3.1
* [new tag] 1.6.0beta3.2b -> 1.6.0beta3.2b
* [new tag] 1.6.0beta3a -> 1.6.0beta3a
* [new tag] 1.6.0beta3b -> 1.6.0beta3b
* [new tag] 1.6.0beta3c -> 1.6.0beta3c
* [new tag] 1.6.0beta4 -> 1.6.0beta4
* [new tag] 1.6.0beta4rc1 -> 1.6.0beta4rc1
* [new tag] 1.6.0rc1 -> 1.6.0rc1
* [new tag] 1.6.1pre -> 1.6.1pre
* [new tag] 1.6.1rc1 -> 1.6.1rc1
* [new tag] 1.6.1rc2 -> 1.6.1rc2
* [new tag] 1.6.2 -> 1.6.2
* [new tag] 1.6.3r -> 1.6.3r
* [new tag] 1.6.4 -> 1.6.4
* [new tag] 1.6.4.1 -> 1.6.4.1
* [new tag] 1.6.4r -> 1.6.4r
* [new tag] 1.6.5 -> 1.6.5
* [new tag] 1.6.5.1 -> 1.6.5.1
* [new tag] 1.6.5.4 -> 1.6.5.4
* [new tag] 1.6.5r -> 1.6.5r
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.0r -> 1.7.0r
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1
* [new tag] 1.8.0 -> 1.8.0
* [new tag] 1.8.1r -> 1.8.1r
From git://github.com/couchbase/libcouchbase
* [new branch] master -> couchbase/master
* [new branch] release10 -> couchbase/release10
* [new tag] 0.2 -> 0.2
* [new tag] 0.2.0 -> 0.2.0
* [new tag] 0.3.0 -> 0.3.0
* [new tag] 1.0.0 -> 1.0.0
* [new tag] 1.0.1 -> 1.0.1
* [new tag] 1.0.2 -> 1.0.2
* [new tag] 1.0.3 -> 1.0.3
* [new tag] 1.1.0dp -> 1.1.0dp
* [new tag] 1.1.0dp2 -> 1.1.0dp2
From git://github.com/couchbase/tlm
* [new branch] branch-18 -> couchbase/branch-18
* [new branch] branch-20 -> couchbase/branch-20
* [new branch] branch-syncpoint -> couchbase/branch-syncpoint
* [new branch] master -> couchbase/master
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.0r -> 1.7.0r
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1
* [new tag] 1.8.0 -> 1.8.0
* [new tag] 1.8.1r -> 1.8.1r
From git://github.com/couchbase/workload-generator
* [new branch] master -> couchbase/master
* [new tag] 1.8.0 -> 1.8.0
* [new tag] 1.8.1r -> 1.8.1r
From git://github.com/couchbase/couchdbx-app
* [new branch] master -> couchbase/master
* [new branch] refresh -> couchbase/refresh
* [new branch] single -> couchbase/single
* [new tag] 1.2.0.a15 -> 1.2.0.a15
From git://github.com/couchbase/libvbucket
* [new branch] gh-pages -> couchbase/gh-pages
* [new branch] master -> couchbase/master
* [new tag] 0.0.1 -> 0.0.1
* [new tag] 0.0.2 -> 0.0.2
* [new tag] 1.6.0 -> 1.6.0
* [new tag] 1.6.0.2 -> 1.6.0.2
* [new tag] 1.6.0a -> 1.6.0a
* [new tag] 1.6.0a1 -> 1.6.0a1
* [new tag] 1.6.0a2 -> 1.6.0a2
* [new tag] 1.6.0beta1 -> 1.6.0beta1
* [new tag] 1.6.0beta1.1 -> 1.6.0beta1.1
* [new tag] 1.6.0beta1rc1 -> 1.6.0beta1rc1
* [new tag] 1.6.0beta1rc2 -> 1.6.0beta1rc2
* [new tag] 1.6.0beta1rc3 -> 1.6.0beta1rc3
* [new tag] 1.6.0beta1rc4 -> 1.6.0beta1rc4
* [new tag] 1.6.0beta2 -> 1.6.0beta2
* [new tag] 1.6.0beta2rc1 -> 1.6.0beta2rc1
* [new tag] 1.6.0beta2rc2 -> 1.6.0beta2rc2
* [new tag] 1.6.0beta2rc3 -> 1.6.0beta2rc3
* [new tag] 1.6.0beta3 -> 1.6.0beta3
* [new tag] 1.6.0beta3.1 -> 1.6.0beta3.1
* [new tag] 1.6.0beta3.2b -> 1.6.0beta3.2b
* [new tag] 1.6.0beta3a -> 1.6.0beta3a
* [new tag] 1.6.0beta3b -> 1.6.0beta3b
* [new tag] 1.6.0beta3c -> 1.6.0beta3c
* [new tag] 1.6.0beta4 -> 1.6.0beta4
* [new tag] 1.6.0beta4rc1 -> 1.6.0beta4rc1
* [new tag] 1.6.0rc1 -> 1.6.0rc1
* [new tag] 1.6.1pre -> 1.6.1pre
* [new tag] 1.6.1rc1 -> 1.6.1rc1
* [new tag] 1.6.1rc2 -> 1.6.1rc2
* [new tag] 1.6.2 -> 1.6.2
* [new tag] 1.6.3 -> 1.6.3
* [new tag] 1.6.3r -> 1.6.3r
* [new tag] 1.6.4 -> 1.6.4
* [new tag] 1.6.4.1 -> 1.6.4.1
* [new tag] 1.6.4r -> 1.6.4r
* [new tag] 1.6.5 -> 1.6.5
* [new tag] 1.6.5.1 -> 1.6.5.1
* [new tag] 1.6.5.4 -> 1.6.5.4
* [new tag] 1.6.5r -> 1.6.5r
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.0r -> 1.7.0r
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1
* [new tag] 1.7.2 -> 1.7.2
* [new tag] 1.8.0 -> 1.8.0
* [new tag] 1.8.0.1 -> 1.8.0.1
* [new tag] 1.8.0.2 -> 1.8.0.2
* [new tag] 1.8.0.3 -> 1.8.0.3
* [new tag] 1.8.1r -> 1.8.1r
From git://github.com/membase/memcached
* [new branch] 1.4.5-win32 -> membase/1.4.5-win32
* [new branch] branch-18-MB-4738 -> membase/branch-18-MB-4738
* [new branch] branch-20 -> membase/branch-20
* [new branch] bug_1091 -> membase/bug_1091
* [new branch] bug_mb2771 -> membase/bug_mb2771
* [new branch] checkpoint -> membase/checkpoint
* [new branch] couchbase-18-MB-4901 -> membase/couchbase-18-MB-4901
* [new branch] couchbase-181 -> membase/couchbase-181
* [new branch] debian -> membase/debian
* [new branch] dispatcher -> membase/dispatcher
* [new branch] engine -> membase/engine
* [new branch] engine-ascii-ewouldblock -> membase/engine-ascii-ewouldblock
* [new branch] engine-pending_close -> membase/engine-pending_close
* [new branch] engine-refactor -> membase/engine-refactor
* [new branch] engine-touch -> membase/engine-touch
* [new branch] engine-with-tap-ack -> membase/engine-with-tap-ack
* [new branch] engine_test -> membase/engine_test
* [new branch] for-refresh -> membase/for-refresh
* [new branch] master -> membase/master
* [new branch] membase_1.6.5.2 -> membase/membase_1.6.5.2
* [new branch] membase_1.6.5.3 -> membase/membase_1.6.5.3
* [new branch] membase_1.6.5.3.1 -> membase/membase_1.6.5.3.1
* [new branch] membase_1.6.5.4 -> membase/membase_1.6.5.4
* [new branch] membase_1.7.0 -> membase/membase_1.7.0
* [new branch] ns_1.0.3 -> membase/ns_1.0.3
* [new branch] old-engine -> membase/old-engine
* [new branch] refresh -> membase/refresh
* [new branch] reserve-with-error -> membase/reserve-with-error
* [new branch] scorpion -> membase/scorpion
* [new branch] stats_connections -> membase/stats_connections
* [new branch] tap-ack-prototype -> membase/tap-ack-prototype
* [new branch] win32 -> membase/win32
* [new branch] z -> membase/z
* [new branch] z_1.5.2 -> membase/z_1.5.2
* [new tag] 1.2.0 -> 1.2.0
* [new tag] 1.2.1 -> 1.2.1
* [new tag] 1.2.2 -> 1.2.2
* [new tag] 1.2.3 -> 1.2.3
* [new tag] 1.2.4 -> 1.2.4
* [new tag] 1.2.5 -> 1.2.5
* [new tag] 1.2.6 -> 1.2.6
* [new tag] 1.2.7 -> 1.2.7
* [new tag] 1.2.7-rc1 -> 1.2.7-rc1
* [new tag] 1.2.8 -> 1.2.8
* [new tag] 1.3.2 -> 1.3.2
* [new tag] 1.3.3 -> 1.3.3
* [new tag] 1.4-rc1 -> 1.4-rc1
* [new tag] 1.4.0 -> 1.4.0
* [new tag] 1.4.0-rc1 -> 1.4.0-rc1
* [new tag] 1.4.1 -> 1.4.1
* [new tag] 1.4.1-rc1 -> 1.4.1-rc1
* [new tag] 1.4.2 -> 1.4.2
* [new tag] 1.4.2-rc1 -> 1.4.2-rc1
* [new tag] 1.4.3 -> 1.4.3
* [new tag] 1.4.3-rc1 -> 1.4.3-rc1
* [new tag] 1.4.3-rc2 -> 1.4.3-rc2
* [new tag] 1.4.4 -> 1.4.4
From git://github.com/couchbase/geocouch
* [new branch] couchdb1.1.x -> couchbase/couchdb1.1.x
* [new branch] couchdb1.2.x -> couchbase/couchdb1.2.x
* [new branch] emonk -> couchbase/emonk
* [new branch] master -> couchbase/master
* [new tag] couchbase_1.1.2_geo -> couchbase_1.1.2_geo
* [new tag] couchbase_1.1.2a_geo -> couchbase_1.1.2a_geo
* [new tag] couchbase_1.1_geo -> couchbase_1.1_geo
* [new tag] couchbase_1.1b_geo -> couchbase_1.1b_geo
* [new tag] couchbase_1.2.0_geo -> couchbase_1.2.0_geo
* [new tag] help -> help
* [new tag] v0.1.2 -> v0.1.2
From git://github.com/couchbase/testrunner
* [new branch] 1.7.alpha2 -> couchbase/1.7.alpha2
* [new branch] branch-18 -> couchbase/branch-18
* [new branch] branch-taskmanager -> couchbase/branch-taskmanager
* [new branch] branchahol -> couchbase/branchahol
* [new branch] dev -> couchbase/dev
* [new branch] master -> couchbase/master
* [new branch] stable -> couchbase/stable
* [new tag] 1.6.5-compatible -> 1.6.5-compatible
* [new tag] mcsoda-0.0.0-stable -> mcsoda-0.0.0-stable
From git://github.com/couchbase/sigar
* [new branch] autotooled-for-membase-1-7 -> couchbase/autotooled-for-membase-1-7
* [new branch] configured-for-membase-1-7 -> couchbase/configured-for-membase-1-7
* [new branch] master -> couchbase/master
* [new branch] sigar-1.6 -> couchbase/sigar-1.6
* [new tag] sigar-1.6.0 -> sigar-1.6.0
* [new tag] sigar-1.6.1 -> sigar-1.6.1
* [new tag] sigar-1.6.2 -> sigar-1.6.2
* [new tag] sigar-1.6.3 -> sigar-1.6.3
* [new tag] sigar-1.6.4 -> sigar-1.6.4
From git://github.com/couchbase/ep-engine
* [new branch] branch-17 -> couchbase/branch-17
* [new branch] branch-18 -> couchbase/branch-18
* [new branch] branch-18-MB-4738 -> couchbase/branch-18-MB-4738
* [new branch] branch-18-MB-4901 -> couchbase/branch-18-MB-4901
* [new branch] branch-181 -> couchbase/branch-181
* [new branch] branch-20 -> couchbase/branch-20
* [new branch] master -> couchbase/master
* [new branch] refresh -> couchbase/refresh
* [new tag] 0.0.1 -> 0.0.1
* [new tag] 1.6.0 -> 1.6.0
* [new tag] 1.6.0.1 -> 1.6.0.1
* [new tag] 1.6.0.2 -> 1.6.0.2
* [new tag] 1.6.0.3 -> 1.6.0.3
* [new tag] 1.6.0.4 -> 1.6.0.4
* [new tag] 1.6.0a -> 1.6.0a
* [new tag] 1.6.0a1 -> 1.6.0a1
* [new tag] 1.6.0a2 -> 1.6.0a2
* [new tag] 1.6.0beta1 -> 1.6.0beta1
* [new tag] 1.6.0beta1.1 -> 1.6.0beta1.1
* [new tag] 1.6.0beta1rc1 -> 1.6.0beta1rc1
* [new tag] 1.6.0beta1rc2 -> 1.6.0beta1rc2
* [new tag] 1.6.0beta1rc3 -> 1.6.0beta1rc3
* [new tag] 1.6.0beta1rc4 -> 1.6.0beta1rc4
* [new tag] 1.6.0beta2 -> 1.6.0beta2
* [new tag] 1.6.0beta2rc1 -> 1.6.0beta2rc1
* [new tag] 1.6.0beta2rc2 -> 1.6.0beta2rc2
* [new tag] 1.6.0beta2rc3 -> 1.6.0beta2rc3
* [new tag] 1.6.0beta3 -> 1.6.0beta3
* [new tag] 1.6.0beta3.1 -> 1.6.0beta3.1
* [new tag] 1.6.0beta3.2b -> 1.6.0beta3.2b
* [new tag] 1.6.0beta3a -> 1.6.0beta3a
* [new tag] 1.6.0beta3b -> 1.6.0beta3b
* [new tag] 1.6.0beta3c -> 1.6.0beta3c
* [new tag] 1.6.0beta4 -> 1.6.0beta4
* [new tag] 1.6.0beta4rc1 -> 1.6.0beta4rc1
* [new tag] 1.6.0rc1 -> 1.6.0rc1
* [new tag] 1.6.1 -> 1.6.1
* [new tag] 1.6.1pre -> 1.6.1pre
* [new tag] 1.6.1rc1 -> 1.6.1rc1
* [new tag] 1.6.1rc2 -> 1.6.1rc2
* [new tag] 1.6.2 -> 1.6.2
* [new tag] 1.6.3 -> 1.6.3
* [new tag] 1.6.3r -> 1.6.3r
* [new tag] 1.6.4 -> 1.6.4
* [new tag] 1.6.4.1 -> 1.6.4.1
* [new tag] 1.6.4.1.1 -> 1.6.4.1.1
* [new tag] 1.6.4.1.1r -> 1.6.4.1.1r
* [new tag] 1.6.4r -> 1.6.4r
* [new tag] 1.6.5 -> 1.6.5
* [new tag] 1.6.5.1 -> 1.6.5.1
* [new tag] 1.6.5.1r -> 1.6.5.1r
* [new tag] 1.6.5.2 -> 1.6.5.2
* [new tag] 1.6.5.2.1 -> 1.6.5.2.1
* [new tag] 1.6.5.2.1r -> 1.6.5.2.1r
* [new tag] 1.6.5.2r -> 1.6.5.2r
* [new tag] 1.6.5.3 -> 1.6.5.3
* [new tag] 1.6.5.3.1 -> 1.6.5.3.1
* [new tag] 1.6.5.3r -> 1.6.5.3r
* [new tag] 1.6.5.4 -> 1.6.5.4
* [new tag] 1.6.5.5r -> 1.6.5.5r
* [new tag] 1.6.5.6 -> 1.6.5.6
* [new tag] 1.6.5r -> 1.6.5r
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.0r -> 1.7.0r
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1
* [new tag] 1.7.2 -> 1.7.2
* [new tag] 1.7.3r -> 1.7.3r
* [new tag] 1.8.0 -> 1.8.0
* [new tag] 1.8.0r -> 1.8.0r
* [new tag] 1.8.1r -> 1.8.1r
From git://github.com/couchbase/couchdb
* [new branch] 1.0.x -> couchbase/1.0.x
* [new branch] branch-20dp4 -> couchbase/branch-20dp4
* [new branch] couchbase-1.2.x -> couchbase/couchbase-1.2.x
* [new branch] emonk-preview-ios -> couchbase/emonk-preview-ios
* [new branch] master -> couchbase/master
* [new branch] old-master -> couchbase/old-master
* [new branch] refresh -> couchbase/refresh
* [new branch] syncpoint -> couchbase/syncpoint
* [new branch] trunk -> couchbase/trunk
From git://github.com/couchbase/gperftools
* [new branch] master -> couchbase/master
From git://github.com/couchbase/moxi
* [new branch] b2b -> couchbase/b2b
* [new branch] gh-pages -> couchbase/gh-pages
* [new branch] histogram -> couchbase/histogram
* [new branch] master -> couchbase/master
* [new branch] mcs_runtime -> couchbase/mcs_runtime
* [new branch] not_my_vbucket -> couchbase/not_my_vbucket
* [new branch] refresh -> couchbase/refresh
* [new branch] stats_merge -> couchbase/stats_merge
* [new branch] vbucket -> couchbase/vbucket
* [new branch] win32-for-review -> couchbase/win32-for-review
* [new tag] 0.1.0 -> 0.1.0
* [new tag] 0.10.0 -> 0.10.0
* [new tag] 0.10.0-rc1 -> 0.10.0-rc1
* [new tag] 0.9.5 -> 0.9.5
* [new tag] 0.9.6 -> 0.9.6
* [new tag] 1.6.0 -> 1.6.0
* [new tag] 1.6.0.2 -> 1.6.0.2
* [new tag] 1.6.0a -> 1.6.0a
* [new tag] 1.6.0a1 -> 1.6.0a1
* [new tag] 1.6.0a2 -> 1.6.0a2
* [new tag] 1.6.0beta1 -> 1.6.0beta1
* [new tag] 1.6.0beta1.1 -> 1.6.0beta1.1
* [new tag] 1.6.0beta1rc1 -> 1.6.0beta1rc1
* [new tag] 1.6.0beta1rc2 -> 1.6.0beta1rc2
* [new tag] 1.6.0beta1rc3 -> 1.6.0beta1rc3
* [new tag] 1.6.0beta1rc4 -> 1.6.0beta1rc4
* [new tag] 1.6.0beta2 -> 1.6.0beta2
* [new tag] 1.6.0beta2rc1 -> 1.6.0beta2rc1
* [new tag] 1.6.0beta2rc2 -> 1.6.0beta2rc2
* [new tag] 1.6.0beta2rc3 -> 1.6.0beta2rc3
* [new tag] 1.6.0beta3 -> 1.6.0beta3
* [new tag] 1.6.0beta3.1 -> 1.6.0beta3.1
* [new tag] 1.6.0beta3.2b -> 1.6.0beta3.2b
* [new tag] 1.6.0beta3a -> 1.6.0beta3a
* [new tag] 1.6.0beta3b -> 1.6.0beta3b
* [new tag] 1.6.0beta3c -> 1.6.0beta3c
* [new tag] 1.6.0beta4 -> 1.6.0beta4
* [new tag] 1.6.0beta4rc1 -> 1.6.0beta4rc1
* [new tag] 1.6.0rc1 -> 1.6.0rc1
* [new tag] 1.6.1pre -> 1.6.1pre
* [new tag] 1.6.1rc1 -> 1.6.1rc1
* [new tag] 1.6.1rc2 -> 1.6.1rc2
* [new tag] 1.6.2 -> 1.6.2
* [new tag] 1.6.3 -> 1.6.3
* [new tag] 1.6.3r -> 1.6.3r
* [new tag] 1.6.4 -> 1.6.4
* [new tag] 1.6.4.1 -> 1.6.4.1
* [new tag] 1.6.4r -> 1.6.4r
* [new tag] 1.6.5 -> 1.6.5
* [new tag] 1.6.5.1 -> 1.6.5.1
* [new tag] 1.6.5.2 -> 1.6.5.2
* [new tag] 1.6.5.4 -> 1.6.5.4
* [new tag] 1.6.5r -> 1.6.5r
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.0r -> 1.7.0r
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1
* [new tag] 1.7.2 -> 1.7.2
* [new tag] 1.8.0 -> 1.8.0
* [new tag] 1.8.1r -> 1.8.1r
From git://github.com/couchbase/ns_server
* [new branch] 1.6.5.3-hotfix-MB-3554 -> couchbase/1.6.5.3-hotfix-MB-3554
* [new branch] branch-1.7.1.1r -> couchbase/branch-1.7.1.1r
* [new branch] branch-17 -> couchbase/branch-17
* [new branch] branch-170-hotfix -> couchbase/branch-170-hotfix
* [new branch] branch-171 -> couchbase/branch-171
* [new branch] branch-172 -> couchbase/branch-172
* [new branch] branch-18 -> couchbase/branch-18
* [new branch] branch-181 -> couchbase/branch-181
* [new branch] branch-20dp4 -> couchbase/branch-20dp4
* [new branch] master -> couchbase/master
* [new branch] mastercd -> couchbase/mastercd
* [new branch] refresh -> couchbase/refresh
* [new branch] refresh1 -> couchbase/refresh1
* [new branch] voltron-support -> couchbase/voltron-support
* [new tag] 0.0.0 -> 0.0.0
* [new tag] 0.0.9 -> 0.0.9
* [new tag] 0.3.0 -> 0.3.0
* [new tag] 0.5.0 -> 0.5.0
* [new tag] 0.7.0 -> 0.7.0
* [new tag] 0.7.1 -> 0.7.1
* [new tag] 0.9.0 -> 0.9.0
* [new tag] 0.9.1 -> 0.9.1
* [new tag] 0.9.2 -> 0.9.2
* [new tag] 0.9.3 -> 0.9.3
* [new tag] 1.0.0 -> 1.0.0
* [new tag] 1.0.2 -> 1.0.2
* [new tag] 1.0.2rc1 -> 1.0.2rc1
* [new tag] 1.0.2rc2 -> 1.0.2rc2
* [new tag] 1.0.2rc3 -> 1.0.2rc3
* [new tag] 1.0.2rc4 -> 1.0.2rc4
* [new tag] 1.0.3 -> 1.0.3
* [new tag] 1.0.3maint1 -> 1.0.3maint1
* [new tag] 1.0.3rc1 -> 1.0.3rc1
* [new tag] 1.6.0 -> 1.6.0
* [new tag] 1.6.0.1 -> 1.6.0.1
* [new tag] 1.6.0.2 -> 1.6.0.2
* [new tag] 1.6.0.3 -> 1.6.0.3
* [new tag] 1.6.0a -> 1.6.0a
* [new tag] 1.6.0a1 -> 1.6.0a1
* [new tag] 1.6.0a2 -> 1.6.0a2
* [new tag] 1.6.0beta1 -> 1.6.0beta1
* [new tag] 1.6.0beta1.1 -> 1.6.0beta1.1
* [new tag] 1.6.0beta1rc1 -> 1.6.0beta1rc1
* [new tag] 1.6.0beta1rc2 -> 1.6.0beta1rc2
* [new tag] 1.6.0beta1rc3 -> 1.6.0beta1rc3
* [new tag] 1.6.0beta1rc4 -> 1.6.0beta1rc4
* [new tag] 1.6.0beta2 -> 1.6.0beta2
* [new tag] 1.6.0beta2rc1 -> 1.6.0beta2rc1
* [new tag] 1.6.0beta2rc2 -> 1.6.0beta2rc2
* [new tag] 1.6.0beta2rc3 -> 1.6.0beta2rc3
* [new tag] 1.6.0beta3 -> 1.6.0beta3
* [new tag] 1.6.0beta3.1 -> 1.6.0beta3.1
* [new tag] 1.6.0beta3.2b -> 1.6.0beta3.2b
* [new tag] 1.6.0beta3a -> 1.6.0beta3a
* [new tag] 1.6.0beta3b -> 1.6.0beta3b
* [new tag] 1.6.0beta3c -> 1.6.0beta3c
* [new tag] 1.6.0beta4 -> 1.6.0beta4
* [new tag] 1.6.0beta4rc1 -> 1.6.0beta4rc1
* [new tag] 1.6.0rc1 -> 1.6.0rc1
* [new tag] 1.6.1pre -> 1.6.1pre
* [new tag] 1.6.1rc1 -> 1.6.1rc1
* [new tag] 1.6.1rc2 -> 1.6.1rc2
* [new tag] 1.6.2 -> 1.6.2
* [new tag] 1.6.3 -> 1.6.3
* [new tag] 1.6.3r -> 1.6.3r
* [new tag] 1.6.4 -> 1.6.4
* [new tag] 1.6.4.1 -> 1.6.4.1
* [new tag] 1.6.4.1r -> 1.6.4.1r
* [new tag] 1.6.4r -> 1.6.4r
* [new tag] 1.6.5 -> 1.6.5
* [new tag] 1.6.5.1 -> 1.6.5.1
* [new tag] 1.6.5.1r -> 1.6.5.1r
* [new tag] 1.6.5.2 -> 1.6.5.2
* [new tag] 1.6.5.2r -> 1.6.5.2r
* [new tag] 1.6.5.3 -> 1.6.5.3
* [new tag] 1.6.5.3r -> 1.6.5.3r
* [new tag] 1.6.5.4 -> 1.6.5.4
* [new tag] 1.6.5.4r -> 1.6.5.4r
* [new tag] 1.6.5r -> 1.6.5r
* [new tag] 1.7.0 -> 1.7.0
* [new tag] 1.7.0r -> 1.7.0r
* [new tag] 1.7.1 -> 1.7.1
* [new tag] 1.7.1.1 -> 1.7.1.1
* [new tag] 1.7.1.1r -> 1.7.1.1r
* [new tag] 1.7.2 -> 1.7.2
* [new tag] 1.7.3r -> 1.7.3r
* [new tag] 1.8.0 -> 1.8.0
* [new tag] 1.8.0r -> 1.8.0r
* [new tag] 1.8.1r -> 1.8.1r
From git://github.com/membase/libmemcached
* [new branch] master -> membase/master
* [new branch] stable -> membase/stable

[farshid-ubuntu-1204-1] $ repo manifest -o - -r

... A new repo command ( 1.15) is available.
... You should upgrade soon:

cp /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/.repo/repo/repo /usr/bin/repo

Added a project: bucket_engine at revision: 67baa91ee58fc5a302544be9a9f83132d8de664d
Added a project: couchbase-examples at revision: ed5b6b23e645e50c9ddcbdfd163ad5343b6fad92
Added a project: couchbase-python-client at revision: 1bdb6e3fb3e054de87340318410e92ae21013452
Added a project: couchdb at revision: 1470995d6813f04911bc565a43fefd06055d9f45
Added a project: couchdbx-app at revision: c2524b19c03dfdc70cddc848fbabd9a4901801a1
Added a project: couchstore at revision: be6a889b8a456734db6f2b10d7f22c33dc8a0a13
Added a project: ep-engine at revision: fd483b8db1bc1be5a991feb1792cdea9bb9d32f1
Added a project: geocouch at revision: fd9e5fa76f58fcfa89fab39a3c4c749ec443ed52
Added a project: gperftools at revision: 8f60ba949fb8576c530ef4be148bff97106ddc59
Added a project: libcbio at revision: 7402afcbb3fd960cb06c37fb53be54cc3ad13d09
Added a project: libconflate at revision: 9daa04d22482f5c5e95b27bb48bea6cb6e514df2
Added a project: libcouchbase at revision: 9cfda9d40a270fc3dd05018eb16a2089c83bf24a
Added a project: libmemcached at revision: ca739a890349ac36dc79447e37da7caa9ae819f5
Added a project: libvbucket at revision: 42dc254a38179ddcdcb48439ab301b37805027f8
Added a project: mccouch at revision: 88701cc326bc3dde4ed072bb8441be83adcfb2a5
Added a project: membase-cli at revision: 87258668373f43043d432c130239e7b2b1d0917e
Added a project: memcached at revision: 19901a1d2aaadf4229d9ac9d68462b1961e9137b
Added a project: memcachetest at revision: 35fd1b9c4bf1ed46b5716b88493e9f156e65a900
Added a project: moxi at revision: cb602b1fa6112f78bf8a35347921ebbc2cc9b870
Added a project: ns_server at revision: 53af67a286c6b30920b9d7fb7e552828a196068a
Added a project: portsigar at revision: f12fbe8e3271db8e170556c73b9c63b52031b951
Added a project: sigar at revision: ba9f5a113a1449c1d9df7a25c9aec8b01e9ffc54
Added a project: testrunner at revision: a48836136f7c9365ba8db3ad216c6333d180b25b
Added a project: tlm at revision: cd0898b516eb0f7f980a15cd5f57f56bc211c14b
Added a project: workload-generator at revision: 9a47cfc6a1b72c40bce30efdb4ea1a58ed6e1a6d
[farshid-ubuntu-1204-1] $ /bin/sh -xe /tmp/hudson2872823996400106339.sh
+ make clean-xfd-hard
(cd bucket_engine && git clean -xfd)
(cd couchstore && git clean -xfd)
(cd ep-engine && git clean -xfd)
(cd libcbio && git clean -xfd)
(cd libconflate && git clean -xfd)
(cd libmemcached && git clean -xfd)
(cd libvbucket && git clean -xfd)
(cd membase-cli && git clean -xfd)
(cd memcached && git clean -xfd)
(cd memcachetest && git clean -xfd)
(cd moxi && git clean -xfd)
(cd couchdb && git clean -xfd)
(cd couchbase-examples && git clean -xfd)
(cd ns_server && git clean -xfd)
(cd workload-generator && git clean -xfd)
(cd sigar && git clean -xfd)
(cd portsigar && git clean -xfd)
(cd geocouch && git clean -xfd)
rm -rf install tmp
rm -f moxi*log
rm -f memcached*log
(cd icu4c && git clean -xfd) || true
/bin/sh: 1: cd: can't cd to icu4c
+ make -j16
cd bucket_engine/ && ./config/autorun.sh
cd memcached/ && ./config/autorun.sh
cd couchstore/ && ./config/autorun.sh
cd ep-engine/ && ./config/autorun.sh
cd libcbio/ && ./config/autorun.sh
cd libconflate/ && ./config/autorun.sh
cd libmemcached/ && ./config/autorun.sh
cd libvbucket/ && ./config/autorun.sh
cd membase-cli/ && ./config/autorun.sh
cd memcachetest/ && ./config/autorun.sh
cd moxi/ && ./config/autorun.sh
cd couchdb/ && ./bootstrap
cd couchbase-examples/ && ./config/autorun.sh
cd workload-generator/ && ./config/autorun.sh
cd sigar/ && ./autogen.sh
cd portsigar/ && ./bootstrap
fatal: No names found, cannot describe anything.
fatal: No names found, cannot describe anything.
./autogen.sh: running `/usr/bin/libtoolize --copy --force'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
./config/autorun.sh: running `/usr/bin/libtoolize --automake --copy --force'
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: copying file `m4/ltversion.m4'
libtoolize: copying file `m4/lt~obsolete.m4'
./autogen.sh: running `/usr/bin/aclocal-1.11'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/aclocal-1.11 -I m4'
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: /usr/bin/aclocal-1.11 --force -I m4
configure.ac:9: installing `config/install-sh'
configure.ac:9: installing `config/missing'
configure.ac:9: installing `config/install-sh'
./config/autorun.sh: running `/usr/bin/autoconf'
configure.ac:9: installing `config/missing'
./config/autorun.sh: running `/usr/bin/autoconf'
configure.ac:9: installing `config/install-sh'
configure.ac:9: installing `config/missing'
./config/autorun.sh: running `/usr/bin/autoconf'
---
Configured with the following tools:
---
Configured with the following tools:
* aclocal (GNU automake) 1.11.3
---
Configured with the following tools:
* aclocal (GNU automake) 1.11.3
* aclocal (GNU automake) 1.11.3
* automake (GNU automake) 1.11.3
* automake (GNU automake) 1.11.3
* autoconf (GNU Autoconf) 2.68
---
make -C geocouch COUCH_SRC=../couchdb/src/couchdb
* automake (GNU automake) 1.11.3
* autoconf (GNU Autoconf) 2.68
---
cd membase-cli && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
* autoconf (GNU Autoconf) 2.68
---
cd workload-generator && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
./config/autorun.sh: running `/usr/bin/autoheader --warnings=error'
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/geocouch'
ERL_COMPILER_OPTIONS='[{i,"../couchdb/src/couchdb"}]' ./rebar compile
./autogen.sh: running `/usr/bin/automake-1.11 --add-missing --copy'
./config/autorun.sh: running `/usr/bin/autoheader --warnings=error'
==> geocouch (compile)
./config/autorun.sh: running `/usr/bin/autoheader --warnings=error'
configure: creating cache config.cache
checking for a BSD-compatible install... configure: creating cache config.cache
checking for a BSD-compatible install... /usr/bin/install -c
/usr/bin/install -c
checking whether build environment is sane... checking whether build environment is sane... ./config/autorun.sh: running `/usr/bin/autoheader --warnings=error'
./config/autorun.sh: running `/usr/bin/autoheader'
autoreconf: configure.ac: tracing
yes
yes
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
checking for a thread-safe mkdir -p... Compiled src/vtree/run_vtreestats.erl
checking for a thread-safe mkdir -p... Compiled src/vtree/vtree_insbench.erl
Compiled src/vtree/vtreeviz.erl
/bin/mkdir -p
checking for gawk... Compiled src/vtree/run_vtreeviz.erl
no
checking for mawk... mawk
checking whether make sets $(MAKE)... Compiled src/vtree/vtreestats.erl
/bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... Compiled src/geocouch/couch_httpd_spatial_merger.erl
./config/autorun.sh: running `/usr/bin/autoheader --warnings=error'
yes
yes
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
configure: updating cache config.cache
configure: updating cache config.cache
configure: creating ./config.status
configure: creating ./config.status
Compiled src/geocouch/couch_spatial_merger.erl
Compiled src/vtree/vtree.erl
Compiled src/geocouch/geocouch_duplicates.erl
Compiled src/vtree/vtree_bulk.erl
Compiled src/geocouch/couch_httpd_spatial_list.erl
Compiled src/geocouch/couch_httpd_spatial.erl
Compiled src/geocouch/couch_spatial_group.erl
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
Compiled src/geocouch/couch_spatial_compactor.erl
Compiled test/gc_test_util.erl
Compiled src/geocouch/couch_spatial.erl
Compiled src/geocouch/couch_spatial_updater.erl
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/geocouch'
mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/plugins/geocouch/ebin
cp -r geocouch/ebin/* /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/plugins/geocouch/ebin
mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/default.d
config.status: creating Makefile
cp -r geocouch/etc/couchdb/default.d/* /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/default.d
config.status: creating Makefile
mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script/test
cp -r geocouch/share/www/script/test/* /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script/test
config.status: creating wrapper/wrapper
cd couchbase-examples && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
config.status: creating wrapper/wrapper
cd ns_server && ./configure "--prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install"

ns_server is configured and is ready to be built!
PREFIX: /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
couchdb-src: ../couchdb

make -C ns_server install "PREFIX=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install"
(rm -rf tmp/membase-cli; mkdir -p tmp/membase-cli)
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server'
test -d ./tmp || mkdir ./tmp
git describe | sed s/-/_/g > ./tmp/version_num.tmp
make -C membase-cli install
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/membase-cli'
cp wrapper/wrapper wrapper/couchbase-cli
(cd deps/gen_smtp && make compile)
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/membase-cli'
./config/autorun.sh: running `/usr/bin/autoheader --warnings=error'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server/deps/gen_smtp'
/usr/bin/install -c wrapper/couchbase-cli '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python"
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python/simplejson'
/usr/bin/install -c -m 644 simplejson/LICENSE.txt simplejson/__init__.py simplejson/decoder.py simplejson/encoder.py simplejson/scanner.py '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python/simplejson'
/usr/bin/install -c -m 644 buckets.py info.py listservers.py node.py restclient.py usage.py util_cli.py '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python/.'
configure.ac:7: installing `./config.guess'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python"
configure.ac:7: installing `./config.sub'
configure.ac:6: installing `./install-sh'
configure.ac:6: installing `./missing'
/usr/bin/install -c couchbase-cli '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python'
./config/autorun.sh: running `/usr/bin/autoheader --warnings=error'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/membase-cli'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/membase-cli'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
(cd deps/erlwsh; make)
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server/deps/erlwsh'
test -d ebin || mkdir ebin
(cd src;make)
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server/deps/erlwsh/src'
erlc -W -I ../include +debug_info -o ../ebin erlwsh_app.erl
./config/autorun.sh: running `/usr/bin/autoheader --warnings=error'
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
autoreconf: running: /usr/bin/libtoolize --install --copy --force
configure: creating cache config.cache
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... ==> gen_smtp (compile)
bindings/lua/Makefile.am: installing `./depcomp'
configure.ac:25: installing `config/compile'
configure.ac:27: installing `config/config.guess'
configure.ac:27: installing `config/config.sub'
configure.ac:23: installing `config/install-sh'
configure.ac:23: installing `config/missing'
erlc -W -I ../include +debug_info -o ../ebin erlwsh_deps.erl
Makefile.am: installing `config/depcomp'
configure.ac:25: installing `config/compile'
configure.ac:28: installing `config/config.guess'
configure.ac:28: installing `config/config.sub'
configure.ac:22: installing `config/install-sh'
configure.ac:22: installing `config/missing'
Makefile.am: installing `config/depcomp'
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force'
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
./config/autorun.sh: running `/usr/bin/autoconf'
./config/autorun.sh: running `/usr/bin/autoconf'
yes
checking for a thread-safe mkdir -p... libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./config.guess'
/bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
erlc -W -I ../include +debug_info -o ../ebin erlwsh.erl
libtoolize: copying file `./config.sub'
configure: updating cache config.cache
configure: creating ./config.status
libtoolize: copying file `./install-sh'
libtoolize: copying file `./ltmain.sh'
erlc -W -I ../include +debug_info -o ../ebin erlwsh_sup.erl
configure.ac:25: installing `config/compile'
configure.ac:26: installing `config/config.guess'
configure.ac:26: installing `config/config.sub'
Compiled src/gen_smtp_server_session.erl
configure.ac:23: installing `config/install-sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
configure.ac:23: installing `config/missing'
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
Compiled src/smtp_util.erl
Makefile.am: installing `config/depcomp'
configure.ac:25: installing `config/compile'
Compiled src/smtp_server_example.erl
Compiled src/binstr.erl
configure.ac:28: installing `config/config.guess'
configure.ac:28: installing `config/config.sub'
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
configure.ac:23: installing `config/install-sh'
configure.ac:23: installing `config/missing'
./config/autorun.sh: running `/usr/bin/autoconf'
config.status: creating Makefile
Compiled src/gen_smtp_server.erl
Compiled src/socket.erl
---
Configured with the following tools:
libtoolize: copying file `m4/ltoptions.m4'
config.status: creating wrapper/wrapper
Makefile.am: installing `config/depcomp'
Compiled src/gen_smtp_client.erl
* libtoolize (GNU libtool) 2.4.2
./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign --warning=portability'
---
Configured with the following tools:
(rm -rf tmp/couchbase-examples; mkdir -p tmp/couchbase-examples)
* aclocal (GNU automake) 1.11.3
make -C couchbase-examples install
libtoolize: copying file `m4/ltsugar.m4'
Compiled src/mimemail.erl
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchbase-examples'
cp wrapper/wrapper wrapper/docloader
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server/deps/gen_smtp'
(cd deps/ale; make)
erlc -W -I ../include +debug_info -o ../ebin erlwsh_web.erl
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server/deps/ale'
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchbase-examples'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
/usr/bin/install -c wrapper/docloader '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python"
./autogen.sh: running `/usr/bin/autoconf'
./config/autorun.sh: running `/usr/bin/autoconf'
* libtoolize (GNU libtool) 2.4.2
/usr/bin/install -c docloader '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python'
make install-data-hook
libtoolize: copying file `m4/ltversion.m4'
* autoheader (GNU Autoconf) 2.68
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchbase-examples'
if test ! "/bin/mkdir -p" = ""; then \
/bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/samples"; \
else \
echo "WARNING: You may have to create these directories by hand."; \
mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/samples"; \
fi
cp -rf ../couchbase-python-client/couchbase /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python && \
cp gamesim-sample.zip /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/samples
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchbase-examples'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchbase-examples'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchbase-examples'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
(rm -rf tmp/workload-generator; mkdir -p tmp/workload-generator)
make -C workload-generator install
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/workload-generator'
cp wrapper/wrapper wrapper/cbworkloadgen
configure.ac:10: installing `config/compile'
configure.ac:10: installing `config/config.guess'
configure.ac:10: installing `config/config.sub'
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/workload-generator'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
configure.ac:71: installing `config/compile'
configure.ac:10: installing `config/install-sh'
configure.ac:7: installing `config/config.guess'
configure.ac:7: installing `config/config.sub'
configure.ac:10: installing `config/missing'
configure.ac:9: installing `config/install-sh'
/usr/bin/install -c wrapper/cbworkloadgen '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
* aclocal (GNU automake) 1.11.3
configure.ac:9: installing `config/missing'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python"
libtoolize: copying file `m4/lt~obsolete.m4'
/usr/bin/install -c cbworkloadgen '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python'
make install-data-hook
Makefile.am: installing `./INSTALL'
Makefile.am: installing `config/depcomp'
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/workload-generator'
==> ale (compile)
cp -rf ../couchbase-python-client/couchbase /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/workload-generator'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/workload-generator'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/workload-generator'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
erlc -W -I ../include +debug_info -o ../ebin eshell.erl
* automake (GNU automake) 1.11.3
* autoheader (GNU Autoconf) 2.68
Makefile.am: installing `config/depcomp'
./config/autorun.sh: running `/usr/bin/autoconf'
cp erlwsh.app ../ebin/erlwsh.app
scripts/build-all-images.sh >priv/public/js/all-images.js || (rm priv/public/js/all-images.js && false)
* autoconf (GNU Autoconf) 2.68
---
cd libvbucket && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --disable-static --enable-shared --without-docs
(sed s/0.0.0/'1.8.1r_1242_g53af67a'/g src/ns_server.app.src.in > src/ns_server.app.src) || (rm src/ns_server.app.src && false)
---
Configured with the following tools:
* automake (GNU automake) 1.11.3
* libtoolize (GNU libtool) 2.4.2
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server/deps/erlwsh/src'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server/deps/erlwsh'
Compiled src/ale_codegen.erl
./config/autorun.sh: running `/usr/bin/autoheader'
* autoconf (GNU Autoconf) 2.68
---
./config/autorun.sh: running `/usr/bin/autoconf'
Compiled src/ale_transform.erl
* aclocal (GNU automake) 1.11.3
Compiled src/ale_default_formatter.erl
Compiled src/ale_error_logger_handler.erl
Compiled src/ale_app.erl
Compiled src/ale_disk_sink.erl
Compiled src/ale_dynamic_sup.erl
Compiled src/ale_stderr_sink.erl
Compiled src/ale_sup.erl
Compiled src/ale_utils.erl
Compiled src/dynamic_compile.erl
* autoheader (GNU Autoconf) 2.68
Compiled src/ale.erl
configure.ac:11: installing `config/compile'
configure.ac:11: installing `config/config.guess'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server/deps/ale'
./rebar compile
configure.ac:11: installing `config/config.sub'
configure.ac:11: installing `config/install-sh'
configure.ac:11: installing `config/missing'
tests/Makefile.am: installing `config/depcomp'
---
Configured with the following tools:
configure.ac:14: installing `config/compile'
configure.ac:14: installing `config/config.guess'
configure.ac:14: installing `config/config.sub'
configure.ac:14: installing `config/install-sh'
configure.ac:14: installing `config/missing'
Now type './configure --enable-maintainer-mode ...' and 'make' to compile.
cd sigar && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --disable-static --enable-shared
./config/autorun.sh: running `/usr/bin/autoconf'
* automake (GNU automake) 1.11.3
* libtoolize (GNU libtool) 2.4.2
==> ns_server (compile)
configure: creating cache config.cache
checking for gcc... gcc
configure.ac:16: installing `config/compile'
configure.ac:16: installing `config/config.guess'
configure.ac:16: installing `config/config.sub'
configure.ac:16: installing `config/install-sh'
configure.ac:16: installing `config/missing'
* aclocal (GNU automake) 1.11.3
* autoconf (GNU Autoconf) 2.68
---
checking whether the C compiler works... Makefile.am: installing `config/depcomp'
* autoheader (GNU Autoconf) 2.68
yes
checking for C compiler default output file name... a.out
checking for suffix of executables... ---
Configured with the following tools:
Makefile.am: installing `config/depcomp'

checking whether we are cross compiling... * libtoolize (GNU libtool) 2.4.2
---
Configured with the following tools:
* automake (GNU automake) 1.11.3
* libtoolize (GNU libtool) 2.4.2
no
checking for suffix of object files... * autoconf (GNU Autoconf) 2.68
---
cd couchstore && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --disable-static --enable-shared
o
checking whether we are using the GNU C compiler... * aclocal (GNU automake) 1.11.3
* aclocal (GNU automake) 1.11.3
yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... configure: creating cache config.cache
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... * autoheader (GNU Autoconf) 2.68
none needed
checking how to run the C preprocessor... * autoheader (GNU Autoconf) 2.68
* automake (GNU automake) 1.11.3
gcc -E
* autoconf (GNU Autoconf) 2.68
---
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... configure: creating cache config.cache
checking for gcc... gcc
checking whether the C compiler works... ./config/autorun.sh: running `/usr/bin/automake-1.11 --add-missing --copy --force --foreign'
* automake (GNU automake) 1.11.3
yes
checking for C compiler default output file name... a.out
checking for suffix of executables... yes
checking for sys/types.h... * autoconf (GNU Autoconf) 2.68
---
cd memcached && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --enable-isasl
./config/autorun.sh: running `/usr/bin/autoconf'
./config/autorun.sh: running `/usr/bin/autoconf'
yes

checking whether we are cross compiling... checking for sys/stat.h... no
checking for suffix of object files... ---
Configured with the following tools:
yes
o
checking whether we are using the GNU C compiler... checking for stdlib.h... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... * libtoolize (GNU libtool) 2.4.2
yes
checking whether gcc accepts -g... yes
yes
checking for gcc option to accept ISO C89... yes
none needed
checking how to run the C preprocessor... checking for string.h... * aclocal (GNU automake) 1.11.3
checking build system type... Compiled src/ns_log_categorizing.erl
Compiled src/cb_generic_replication_srv.erl
Compiled test/t.erl
yes
checking for memory.h... gcc -E
* autoheader (GNU Autoconf) 2.68
x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... Compiled src/menelaus_event.erl
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
printf
checking for style of include used by make... GNU
checking for gcc... gcc
Compiled test/misc_tests.erl
checking for strings.h... Compiled src/ns_mail.erl
configure: creating cache config.cache
Compiled src/ns_log_sink.erl
yes
autoreconf: running: /usr/bin/autoconf --force
* automake (GNU automake) 1.11.3
checking whether the C compiler works... Compiled src/master_activity_events_keeper.erl
Compiled src/gen_sup.erl
checking build system type... Compiled test/ns_config_tests.erl
checking for inttypes.h... ---
Configured with the following tools:
Compiled src/ns_node_disco_sup.erl
Compiled src/ns_vbucket_mover.erl
* autoconf (GNU Autoconf) 2.68
---
cd libconflate && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --disable-static --enable-shared --without-check
yes
Compiled src/ebucketmigrator.erl
* libtoolize (GNU libtool) 2.4.2
yes
checking for C compiler default output file name... a.out
Compiled src/cb_init_loggers.erl
x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... checking for suffix of executables... checking for sys/types.h... yes
/usr/bin/install -c
checking whether build environment is sane... checking for stdint.h... Compiled src/mock.erl

checking whether we are cross compiling... yes
yes
Compiled src/ns_orchestrator.erl
* aclocal (GNU automake) 1.11.3
checking for sys/stat.h... ---
Configured with the following tools:
checking for unistd.h... no
checking for suffix of object files... Compiled src/mb_master_sup.erl
yes
yes
checking minix/config.h usability... o
checking whether we are using the GNU C compiler... Compiled src/vclock.erl
* autoheader (GNU Autoconf) 2.68
Compiled src/ns_tick.erl
checking for stdlib.h... * libtoolize (GNU libtool) 2.4.2
Compiled src/ns_rebalancer.erl
yes
checking whether gcc accepts -g... configure.ac:14: installing `config/compile'
configure.ac:14: installing `config/config.guess'
configure.ac:14: installing `config/config.sub'
configure.ac:14: installing `config/install-sh'
configure.ac:14: installing `config/missing'
yes
yes
checking for gcc option to accept ISO C89... checking for string.h... Compiled src/ns_storage_conf.erl
Compiled src/ns_node_disco.erl
* aclocal (GNU automake) 1.11.3
no
checking minix/config.h presence... none needed
checking dependency style of gcc... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
* automake (GNU automake) 1.11.3
checking for memory.h... * autoheader (GNU Autoconf) 2.68
Compiled src/ns_cluster.erl
configure: creating cache config.cache
gcc3
checking for a sed that does not truncate output... yes
checking for a BSD-compatible install... yes
* autoconf (GNU Autoconf) 2.68
---
/bin/sed
/usr/bin/install -c
checking whether build environment is sane... checking for grep that handles long lines and -e... Compiled src/capi_http_proxy.erl
/bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... checking build system type... /bin/grep -F
checking for strings.h... checking for ld used by gcc... Compiled src/xdc_rep_manager.erl
Compiled src/menelaus_web_buckets.erl
Compiled src/ns_vbm_sup.erl
/usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... Makefile.am: installing `config/depcomp'
yes
Compiled src/addr_util.erl
Compiled src/ns_bucket_sup.erl
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
yes
x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... checking for inttypes.h... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... checking for gcc... gcc
yes
3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
* automake (GNU automake) 1.11.3
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
Compiled src/mc_binary.erl
checking for ar... ar
checking for archiver @FILE support... /usr/bin/install -c
checking whether build environment is sane... checking for stdint.h... checking whether the C compiler works... Compiled src/ns_config_rep.erl
yes
Compiled src/cucumberl.erl
@
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... checking for unistd.h... * autoconf (GNU Autoconf) 2.68
---
yes
checking for C compiler default output file name... a.out
checking for suffix of executables... Compiled src/ns_janitor_map_recoverer.erl
autoreconf: configure.ac: not using Autoheader
autoreconf: running: /usr/bin/automake-1.11 --add-missing --copy --force-missing
yes
checking minix/config.h usability...
checking whether we are cross compiling... Compiled src/menelaus_alert.erl
Compiled src/ns_bucket.erl
Compiled src/ns_single_vbucket_mover.erl
no
checking for suffix of object files... Compiled src/capi_tasks.erl
Compiled src/menelaus_web_remote_clusters.erl
Compiled src/ns_node_disco_rep_events.erl
ok
checking for sysroot... no
o
checking whether we are using the GNU C compiler... checking for mt... mt
checking if mt is a manifest tool... Compiled src/cb_gen_vbm_sup.erl
Compiled src/ns_pubsub.erl
no
checking how to run the C preprocessor... Compiled src/menelaus_rest.erl
yes
Compiled src/ns_config_sup.erl
yes
checking whether gcc accepts -g... checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... Compiled src/mock_gen_server.erl
mawk
checking whether make sets $(MAKE)... Compiled src/capi_ddoc_replication_srv.erl
no
checking minix/config.h presence... gcc -E
yes
yes
checking for gcc option to accept ISO C89... checking for style of include used by make... GNU
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... checking dependency style of gcc... Compiled src/capi_spatial.erl
none needed
Compiled src/ns_bootstrap.erl
checking for style of include used by make... checking for ANSI C header files... yes
checking for a BSD-compatible install... GNU
checking dependency style of gcc... yes
/usr/bin/install -c
checking whether build environment is sane... You have bootstrapped Apache CouchDB, time to relax.

Run `./configure' to configure the source before you install.
cd couchdb && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
./config/autorun.sh: running `/usr/bin/autoconf'
gcc3
checking for gcc... (cached) gcc
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... Compiled src/capi_set_view_manager.erl
yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether we are using the GNU C compiler... (cached) yes
Compiled src/ns_memcached_sup.erl
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc and cc understand -c and -o together... gcc3
checking how to print strings... printf
checking for a sed that does not truncate output... Compiled src/mc_client_binary.erl
yes
/bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... checking for sys/types.h... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... Compiled src/couch_log.erl
yes
checking for BSD- or MS-compatible name lister (nm)... yes
/usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... Compiled src/mc_connection.erl
checking for sys/stat.h... checking whether the C compiler works... yes
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... yes
checking for stdlib.h... Compiled src/capi_utils.erl
3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... Compiled src/menelaus_util.erl
Compiled src/ns_server_cluster_sup.erl
yes
Compiled src/ns_config.erl
yes
checking for C compiler default output file name... a.out
checking for suffix of executables... Compiled src/ringdict.erl
checking build system type... Compiled src/ns_node_disco_log.erl
configure: creating cache config.cache
yes
checking for a BSD-compatible install... checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... checking for string.h... /usr/bin/install -c
checking whether build environment is sane... Compiled src/capi_view.erl
yes

Compiled src/capi_crud.erl
x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... checking whether we are cross compiling... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... checking for memory.h... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... Compiled src/system_stats_collector.erl
/bin/grep -F
checking for ld used by gcc... Compiled src/cb_couch_sup.erl
/usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... no
checking for suffix of object files... yes
checking for BSD- or MS-compatible name lister (nm)... Compiled src/mc_tcp_listener.erl
/usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... yes
o
checking whether we are using the GNU C compiler... checking for strings.h... Compiled src/stats_reader.erl
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... yes
checking whether gcc accepts -g... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
configure.ac:2: installing `./missing'
Makefile.am:12: `%'-style pattern rules are a GNU make extension
ok
Makefile.am: installing `./INSTALL'
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
yes
checking for /usr/bin/ld option to reload object files... checking for gcc option to accept ISO C89... -r
checking for objdump... objdump
checking for sysroot... checking how to recognize dependent libraries... no
yes
pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... Makefile.am: installing `./depcomp'
printf %s\n
checking for ar... ar
checking for archiver @FILE support... Compiled src/menelaus_web_alerts_srv.erl
checking for inttypes.h... checking for mt... mt
checking if mt is a manifest tool... Compiled src/cb_config_couch_sync.erl
none needed
checking dependency style of gcc... autoreconf: Leaving directory `.'
no
checking how to run the C preprocessor... yes
yes
@
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... checking for a thread-safe mkdir -p... checking for stdint.h... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... gcc -E
Compiled src/supervisor_cushion.erl
yes
Compiled src/path_config.erl
checking for style of include used by make... yes
GNU
checking for ANSI C header files... checking for unistd.h... checking dependency style of gcc... Compiled src/ns_node_disco_conf_events.erl
Compiled src/mc_conn_sup.erl
yes
---
Configured with the following tools:
checking for dlfcn.h... gcc3
checking for isainfo... no
checking for g++... g++
checking whether we are using the GNU C++ compiler... ok
checking for sysroot... no
* libtoolize (GNU libtool) 2.4.2
yes
checking whether g++ accepts -g... gcc3
checking for gcc... (cached) gcc
yes
Compiled src/stats_archiver.erl
checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... checking for objdir... .libs
yes
checking dependency style of g++... 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 whether gcc and cc understand -c and -o together... * aclocal (GNU automake) 1.11.3
Compiled src/ns_log.erl
yes
yes
checking for objdir... checking for sys/types.h... .libs
Compiled src/ns_janitor_vis.erl
* autoheader (GNU Autoconf) 2.68
Compiled src/mb_grid.erl
Compiled src/capi_frontend.erl
yes
yes
checking if gcc supports -fno-rtti -fno-exceptions... Compiled src/dist_manager.erl
gcc3
checking how to run the C preprocessor... Compiled src/ns_mail_sup.erl
checking for a thread-safe mkdir -p... checking for sys/stat.h... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... src/capi_replication.erl:141: Warning: function update_replicated_doc/3 is unused
Compiled src/capi_replication.erl
* automake (GNU automake) 1.11.3
yes
yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... checking for g++... g++
gcc -E
yes
yes
checking if gcc static flag -static works... Compiled src/master_activity_events.erl
Compiled src/menelaus_web.erl
checking for style of include used by make... GNU
checking for gcc... gcc
checking for stdlib.h... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... * autoconf (GNU Autoconf) 2.68
---
Compiled src/ns_server_sup.erl
checking for grep that handles long lines and -e... Compiled src/mb_mnesia.erl
Compiled src/ns_log_browser.erl
yes
checking whether the C compiler works... checking whether we are using the GNU C++ compiler... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... checking for string.h... yes
checking whether g++ accepts -g... yes
checking if gcc static flag -static works... Compiled src/cb_util.erl
yes
checking if gcc supports -c -o file.o... Compiled src/ns_heart.erl
yes
checking for C compiler default output file name... a.out
yes
checking dependency style of g++... checking for suffix of executables... Compiled src/ns_vbm_new_sup.erl

yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... checking whether we are cross compiling... yes
yes
checking whether -lc should be explicitly linked in... yes
checking if gcc supports -c -o file.o... checking for memory.h... Compiled src/menelaus_web_create_replication.erl
yes
checking for sys/types.h... no
checking dynamic linker characteristics... no
checking for suffix of object files... gcc3
Compiled src/ebucketmigrator_srv.erl
yes
yes
Compiled src/mb_map.erl
o
checking whether we are using the GNU C compiler... Compiled src/ns_port_sup.erl
checking for sys/stat.h... checking for strings.h... Compiled src/ns_info.erl
Compiled src/ns_error_messages.erl
checking build system type... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... Compiled src/ns_replicas_builder.erl
Compiled src/xdc_rep_utils.erl
Compiled src/timeout_diag_logger.erl
yes
checking whether gcc accepts -g... yes
checking whether -lc should be explicitly linked in... Compiled src/menelaus_deps.erl
Compiled src/hot_keys_keeper.erl
yes
yes
Compiled src/ns_cookie_manager.erl
yes
checking for gcc option to accept ISO C89... checking for stdlib.h... Compiled src/single_bucket_sup.erl
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... Compiled src/work_queue.erl
Compiled src/ns_config_isasl_sync.erl
yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for gcc... (cached) gcc
x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... checking for inttypes.h... no
checking dynamic linker characteristics... printf
checking for a sed that does not truncate output... Compiled src/ns_process_registry.erl
Compiled src/menelaus_sup.erl
/bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... Compiled src/ns_config_replica.erl
yes
none needed
checking dependency style of gcc... yes
/usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for string.h... checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... Compiled src/auto_failover_logic.erl
checking for stdint.h... 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 for g++... g++
yes
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... yes
checking for memory.h... 3458764513820540925
checking whether the shell understands some XSI constructs... Compiled src/ns_port_server.erl
yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... checking for unistd.h... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking whether __SUNPRO_C is declared... checking whether we are using the GNU C++ compiler... Compiled src/failover_safeness_level.erl
gcc3
checking how to run the C preprocessor... Compiled src/ns_config_log.erl
@
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... yes
no
yes
checking whether g++ accepts -g... Compiled src/ns_server.erl
checking for strings.h... gcc -E
checking whether __GNUC__ is declared... Compiled src/ns_port_init.erl
yes
yes
checking dependency style of g++... Compiled src/mb_mnesia_sup.erl
checking for dlfcn.h... Compiled src/auto_failover.erl
yes
Compiled src/ns_watchdog.erl
Compiled src/ringbuffer.erl
yes
checking checking if -fvisibility is supported... checking for grep that handles long lines and -e... checking for inttypes.h... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for library containing floor... Compiled src/ns_test_util.erl
yes
checking for objdir... Compiled src/ns_cluster_membership.erl
.libs
Compiled src/misc.erl
yes
gcc3
ok
checking how to run the C++ preprocessor... checking for sysroot... no
checking for stdint.h... Compiled src/cb_replication.erl
g++ -E
checking for mt... mt
checking if mt is a manifest tool... Compiled src/couchbase_compaction_daemon.erl
no
checking for dlfcn.h... yes
Compiled src/log_os_info.erl
checking if gcc supports -fno-rtti -fno-exceptions... Compiled src/diag_handler.erl
checking for unistd.h... -lm
checking for library containing pow... yes
checking for objdir... Compiled src/ns_mail_log.erl
.libs
yes
Compiled src/couch_stats_reader.erl
checking for sys/types.h... Compiled src/ns_doctor.erl
no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... Compiled src/ns_moxi_sup.erl
Compiled src/menelaus_auth.erl
Compiled src/xdc_rdoc_replication_srv.erl
none required
checking for library containing fabs... checking for ld used by g++... Compiled src/mc_sup.erl
yes
/usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
yes
yes
checking if gcc static flag -static works... checking minix/config.h usability... checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking if gcc supports -fno-rtti -fno-exceptions... checking for sys/stat.h... none required
checking for pod2man... /usr/bin/pod2man
checking for stdint.h... (cached) yes
no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
yes
checking if gcc supports -c -o file.o... Compiled src/ns_config_default.erl
checking for stdlib.h... yes
checking if gcc static flag -static works... configure: updating cache config.cache
yes
no
checking minix/config.h presence... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... configure: creating ./config.status
Compiled src/ns_memcached.erl
checking for string.h... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether -lc should be explicitly linked in... yes
checking if gcc supports -c -o file.o... yes
checking whether gcc and cc understand -c and -o together... no
checking dynamic linker characteristics... yes
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... checking for memory.h... yes
checking whether -lc should be explicitly linked in... checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... Compiled src/mb_master.erl
yes
Compiled src/stats_collector.erl
no
checking dynamic linker characteristics... checking for strings.h... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for icc in use... yes
checking if g++ static flag -static works... no
checking for gcc option to accept ISO C99... Compiled src/menelaus_stats.erl
yes
Compiled src/ns_janitor.erl
checking how to print strings... printf
checking for a sed that does not truncate output... yes
/bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... erl -noshell -noinput -pa ebin -s misc build_ebucketmigrator -s init stop
checking for inttypes.h... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
yes
checking how to run the C++ preprocessor... checking for stdint.h... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
yes
checking if g++ supports -c -o file.o... checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... yes
g++ -E
-std=gnu99
checking whether gcc -std=gnu99 and cc understand -c and -o together... checking for unistd.h... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... yes
yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether ln -s works... yes
checking whether make sets $(MAKE)... checking minix/config.h usability... (cached) yes
checking for os type (linux-gnu)... linux
checking libproc.h usability... yes
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... checking whether byte ordering is bigendian... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... ok
yes
checking for sysroot... no
no
checking minix/config.h presence... checking for mt... mt
checking if mt is a manifest tool... no
no
checking libproc.h presence... checking for dlfcn.h... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... no
checking for libproc.h... no
checking valgrind/valgrind.h usability... no
checking for link.h... yes
checking for gcc... (cached) gcc
yes
checking for objdir... .libs
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
yes
checking build system type... checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... checking for dlfcn.h... (cached) yes
checking for inttypes.h... (cached) yes
yes
checking if g++ static flag -static works... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... checking for umem.h... checking if gcc supports -fno-rtti -fno-exceptions... no
checking valgrind/valgrind.h presence... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... no
checking for valgrind/valgrind.h... no
checking libdlpi.h usability... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... yes
checking if gcc static flag -static works... yes
checking if g++ supports -c -o file.o... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... no
yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) checking for priv.h... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether the C++ compiler works... yes
checking if gcc supports -c -o file.o... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... no
checking libdlpi.h presence... yes
no
checking for libdlpi.h... no
checking for library containing dlpi_open... yes
checking if gcc supports -c -o file.o... checking whether __SUNPRO_C is declared... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
ok
checking for sysroot... no
no
checking dynamic linker characteristics... no
checking whether __GNUC__ is declared... checking for sasl/sasl.h... checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... yes
checking checking if -fvisibility is supported... no
checking if with lua... no
yes
yes
yes
checking for objdir... checking for sysexits.h... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for ld used by GCC... checking how to run the C++ preprocessor... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking for shared library run path origin... .libs
configure: updating cache config.cache
configure: creating ./config.status
yes
g++ -E
done
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for sys/wait.h... checking for liblua... checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for sys/socket.h... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... make do-install "NS_SERVER_VER=1.8.1r_1242_g53af67a" "PREFIX=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install"
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server'
echo /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
rm -rf /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/ns_server*
no
checking for lua... mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/ns_server-1.8.1r_1242_g53af67a
cp -r ebin /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/ns_server-1.8.1r_1242_g53af67a/
no
yes
mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/ns_server-1.8.1r_1242_g53af67a/priv
cp -r priv/public /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/ns_server-1.8.1r_1242_g53af67a/priv/
checking for htonll... mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/erlwsh
cp -r deps/erlwsh/ebin /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/erlwsh/
yes
checking if gcc static flag -static works... cp -r deps/erlwsh/priv /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/erlwsh/
checking for netinet/in.h... mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/gen_smtp
cp -r deps/gen_smtp/ebin /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/gen_smtp/
mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/ale
cp -r deps/ale/ebin /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/ns_server/erlang/lib/ale/
mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchbase
checking for ld used by g++... sed -e 's|@DATA_PREFIX@|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install|g' -e 's|@BIN_PREFIX@|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install|g' \
<etc/static_config.in >/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchbase/static_config
touch /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchbase/config
/usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/
sed -e 's|@PREFIX@|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install|g' <couchbase-server.sh.in >/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/couchbase-server
sed -e 's|@PREFIX@|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install|g' <cbbrowse_logs.in >/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/cbbrowse_logs
cp cbcollect_info /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/cbcollect_info
chmod +x /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/couchbase-server /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/cbbrowse_logs /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/cbcollect_info
mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/lib/couchbase/mnesia
mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/lib/couchbase/logs
yes
cp priv/init.sql /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchbase/
config.status: creating Makefile
cp ebucketmigrator /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/ebucketmigrator
chmod +x /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/ebucketmigrator
cp scripts/cbdumpconfig.escript /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/
mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/default.d
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... sed -e 's|@COUCHBASE_DB_DIR@|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/lib/couchbase/data/|g' <etc/capi.ini.in >/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/default.d/capi.ini
yes
cp etc/geocouch.ini.in /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/default.d/geocouch.ini
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ns_server'
config.status: creating libvbucket.pc
yes
no
checking for library containing floor... checking for netdb.h... config.status: creating config.h
yes
checking if gcc supports -c -o file.o... config.status: executing depfiles commands
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... config.status: executing libtool commands
yes
checking if g++ static flag -static works... yes
checking for unistd.h... (cached) yes
checking for sys/un.h... no
checking dynamic linker characteristics... -lm
checking for library containing pow... yes
checking for sys/stat.h... (cached) yes
yes
checking if g++ supports -c -o file.o... checking for sys/resource.h... none required
checking for library containing fabs... *****
*
* WARNING: You are not generating any documentation.
* Please don't ship libvbucket to an end user
* without documentation...
*
*****
yes
yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
GNU/Linux ld.so
checking whether stripping libraries is possible... checking how to hardcode library paths into programs... immediate
yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking whether ln -s works... yes
checking for g++... g++
checking for sys/uio.h... none required
checking for pod2man... /usr/bin/pod2man
checking for snappy-c.h... (rm -rf tmp/libvbucket; mkdir -p tmp/libvbucket)
checking for stdlib.h... (cached) yes
checking whether we are using the GNU C++ compiler... make -C libvbucket install
checking for GNU libc compatible malloc... (cached) yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... (cached) yes
checking whether make supports nested variables... yes
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libvbucket'
checking if GCC is recent enough... yes
depbase=`echo src/cJSON.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -MT src/cJSON.lo -MD -MP -MF $depbase.Tpo -c -o src/cJSON.lo src/cJSON.c &&\
mv -f $depbase.Tpo $depbase.Plo
depbase=`echo src/vbucket.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -MT src/vbucket.lo -MD -MP -MF $depbase.Tpo -c -o src/vbucket.lo src/vbucket.c &&\
mv -f $depbase.Tpo $depbase.Plo
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -Wno-error -g -O2 -MT src/libketama_la-ketama.lo -MD -MP -MF src/.deps/libketama_la-ketama.Tpo -c -o src/libketama_la-ketama.lo `test -f 'src/ketama.c' || echo './'`src/ketama.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -Wno-error -g -O2 -MT src/libcrc32_la-crc32.lo -MD -MP -MF src/.deps/libcrc32_la-crc32.Tpo -c -o src/libcrc32_la-crc32.lo `test -f 'src/crc32.c' || echo './'`src/crc32.c
depbase=`echo src/vbuckettool.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -MT src/vbuckettool.o -MD -MP -MF $depbase.Tpo -c -o src/vbuckettool.o src/vbuckettool.c &&\
mv -f $depbase.Tpo $depbase.Po
depbase=`echo src/vbucketkeygen.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -MT src/vbucketkeygen.o -MD -MP -MF $depbase.Tpo -c -o src/vbucketkeygen.o src/vbucketkeygen.c &&\
mv -f $depbase.Tpo $depbase.Po
yes
checking whether g++ accepts -g... checking for netinet/tcp.h... yes
yes
libtool: compile: gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -Wno-error -g -O2 -MT src/libcrc32_la-crc32.lo -MD -MP -MF src/.deps/libcrc32_la-crc32.Tpo -c src/crc32.c -fPIC -DPIC -o src/.libs/libcrc32_la-crc32.o
yes
checking dependency style of g++... checking for netinet/in.h... checking whether __SUNPRO_C is declared... libtool: compile: gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -Wno-error -g -O2 -MT src/libketama_la-ketama.lo -MD -MP -MF src/.deps/libketama_la-ketama.Tpo -c src/ketama.c -fPIC -DPIC -o src/.libs/libketama_la-ketama.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -MT src/cJSON.lo -MD -MP -MF src/.deps/cJSON.Tpo -c src/cJSON.c -fPIC -DPIC -o src/.libs/cJSON.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -D_THREAD_SAFE -D_GNU_SOURCE -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -MT src/vbucket.lo -MD -MP -MF src/.deps/vbucket.Tpo -c src/vbucket.c -fPIC -DPIC -o src/.libs/vbucket.o
yes
mv -f src/.deps/libcrc32_la-crc32.Tpo src/.deps/libcrc32_la-crc32.Plo
/bin/bash ./libtool --tag=CC --mode=link gcc -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -Wno-error -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -o libcrc32.la src/libcrc32_la-crc32.lo -lm
no
checking for pwd.h... yes
checking whether __ICC is declared... checking for inttypes.h... (cached) yes
yes
gcc3
checking for libsnappy... checking for sys/mman.h... no
checking for ISO C++ 98 include files... checking how to run the C++ preprocessor... libtool: link: ar cru .libs/libcrc32.a src/.libs/libcrc32_la-crc32.o
libtool: link: ranlib .libs/libcrc32.a
mv -f src/.deps/libketama_la-ketama.Tpo src/.deps/libketama_la-ketama.Plo
/bin/bash ./libtool --tag=CC --mode=link gcc -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -Wno-error -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -o libketama.la src/libketama_la-ketama.lo -lm
yes
yes
libtool: link: ( cd ".libs" && rm -f "libcrc32.la" && ln -s "../libcrc32.la" "libcrc32.la" )
g++ -E
checking for syslog.h... configure: updating cache config.cache
configure: creating ./config.status
libtool: link: ar cru .libs/libketama.a src/.libs/libketama_la-ketama.o
yes
libtool: link: ranlib .libs/libketama.a
checking for windows.h... libtool: link: ( cd ".libs" && rm -f "libketama.la" && ln -s "../libketama.la" "libketama.la" )
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
/bin/bash ./libtool --tag=CC --mode=link gcc -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -version-info 2:0:1 -no-undefined -o libvbucket.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib src/cJSON.lo src/vbucket.lo libketama.la libcrc32.la -lm
no
checking for library containing clock_gettime... libtool: link: gcc -shared -fPIC -DPIC src/.libs/cJSON.o src/.libs/vbucket.o -Wl,--whole-archive ./.libs/libketama.a ./.libs/libcrc32.a -Wl,--no-whole-archive -lm -O2 -Wl,-soname -Wl,libvbucket.so.1 -o .libs/libvbucket.so.1.1.0
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... -lrt
checking for bundled libevent... no
checking for libevent directory... libtool: link: (cd ".libs" && rm -f "libvbucket.so.1" && ln -s "libvbucket.so.1.1.0" "libvbucket.so.1")
libtool: link: (cd ".libs" && rm -f "libvbucket.so" && ln -s "libvbucket.so.1.1.0" "libvbucket.so")
yes
checking if g++ static flag -static works... libtool: link: ( cd ".libs" && rm -f "libvbucket.la" && ln -s "../libvbucket.la" "libvbucket.la" )
/bin/bash ./libtool --tag=CC --mode=link gcc -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -o vbucketkeygen src/vbucketkeygen.o libvbucket.la -lm
/bin/bash ./libtool --tag=CC --mode=link gcc -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -o vbuckettool src/vbuckettool.o libvbucket.la -lm
(system)
checking for library containing socket... yes
checking if g++ supports -c -o file.o... yes
checking memory usability... libtool: link: gcc -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -o .libs/vbuckettool src/vbuckettool.o ./.libs/libvbucket.so -lm -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
libtool: link: gcc -D_THREAD_SAFE -D_GNU_SOURCE -std=c89 -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -o .libs/vbucketkeygen src/vbucketkeygen.o ./.libs/libvbucket.so -lm -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) none required
checking for library containing gethostbyname... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether byte ordering is bigendian... yes
checking memory presence... yes
checking for memory... yes
none required
checking for library containing umem_cache_create... checking tr1/memory usability... make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libvbucket'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man3" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man3"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man4" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man4"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libvbucket" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libvbucket"
/usr/bin/install -c -m 644 libvbucket.pc '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig'
/usr/bin/install -c -m 644 include/libvbucket/vbucket.h include/libvbucket/visibility.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libvbucket'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib"
no
/bin/bash ./libtool --mode=install /usr/bin/install -c libvbucket.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib'
checking for stdint.h... (cached) yes
libtool: install: /usr/bin/install -c .libs/libvbucket.so.1.1.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libvbucket.so.1.1.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libvbucket.so.1.1.0 libvbucket.so.1 || { rm -f libvbucket.so.1 && ln -s libvbucket.so.1.1.0 libvbucket.so.1; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libvbucket.so.1.1.0 libvbucket.so || { rm -f libvbucket.so && ln -s libvbucket.so.1.1.0 libvbucket.so; }; })
libtool: install: /usr/bin/install -c .libs/libvbucket.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libvbucket.la
checking stddef.h usability... yes
checking tr1/memory presence... no
checking for library containing gethugepagesizes... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
config.status: creating Makefile
yes
checking stddef.h presence... /bin/bash ./libtool --mode=install /usr/bin/install -c vbuckettool vbucketkeygen '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
yes
checking for stddef.h... yes
yes
checking for tr1/memory... yes
checking boost/shared_ptr.hpp usability... config.status: creating include/Makefile
checking sys/mman.h usability... libtool: install: /usr/bin/install -c .libs/vbuckettool /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/vbuckettool
config.status: creating src/Makefile
no
checking for library containing dlopen... config.status: creating src/os/Makefile
libtool: install: /usr/bin/install -c .libs/vbucketkeygen /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/vbucketkeygen
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libvbucket'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libvbucket'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
config.status: creating src/os/aix/Makefile
yes
checking sys/mman.h presence... no
checking boost/shared_ptr.hpp presence... yes
checking for sys/mman.h... yes
config.status: creating src/os/darwin/Makefile
checking sys/resource.h usability... no
checking for boost/shared_ptr.hpp... no
checking the location of shared_ptr header file... config.status: creating src/os/freebsd/Makefile
config.status: creating src/os/hpux/Makefile
-ldl
checking for library containing log... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for mmap... config.status: creating src/os/linux/Makefile
config.status: creating src/os/solaris/Makefile
yes
checking if the compiler supports __builtin_expect... config.status: creating src/os/win32/Makefile
-lm
checking for stdbool.h that conforms to C99... yes
checking if the compiler supports __builtin_ctzll... config.status: creating examples/Makefile
yes
checking for _Bool... yes
checking for pthread_create in -lpthread... config.status: creating src/sigar_version_autoconf.c
no
checking for erl... /usr/local/bin/erl
config.status: creating tests/Makefile
yes
checking for print macros for integers (C99 section 7.8.1)... config.status: creating bindings/Makefile
yes
checking for an ANSI C-conforming const... config.status: creating bindings/lua/Makefile
yes
checking for socklen_t... config.status: executing depfiles commands
yes
checking for htonll...
checking whether byte ordering is bigendian... config.status: creating Makefile
no
checking for library containing pthread_create... config.status: creating libcouchstore.pc
none required
checking for mlockall... config.status: creating config.h
checking v8.h usability... config.status: executing depfiles commands
no
checking for an ANSI C-conforming const... yes
checking for getpagesizes... yes
checking for inline... inline
checking for working volatile... config.status: executing libtool commands
no
checking for memcntl... yes
checking for C/C++ restrict keyword... yes
checking v8.h presence... yes
checking for v8.h... yes
checking for icu-config... /usr/local/bin/icu-config
__restrict
checking whether time.h and sys/time.h may both be included... checking for ICU >= 3.4.1... no
checking for sigignore... yes
checking ICU_CFLAGS... -g -O2 -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long
checking ICU_CXXFLAGS... -g -O2 -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long
checking ICU_LIBS... yes
checking for size_t... -lpthread -ldl -lm -L/usr/local/lib -licui18n -licuuc -licudata -lpthread -ldl -lm
checking for curl-config... /usr/bin/curl-config
checking for curl >= 7.18.0... yes
yes
checking CURL_CFLAGS...
checking CURL_LIBS... checking for alignment... -L/usr/lib/x86_64-linux-gnu -lcurl -Wl,-Bsymbolic-functions -Wl,-z,relro
yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking "C Compiler version--yes"... need
checking for setppriv... "gcc (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
checking "C++ Compiler version"... "g++ (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
checking whether the -Werror option is usable... yes
checking for simple visibility declarations... (rm -rf tmp/couchstore; mkdir -p tmp/couchstore)
make -C couchstore install
no
checking for dot... config.status: executing libtool commands
no
checking for doxygen... make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchstore'
doxygen
checking for perl... /usr/bin/perl
checking for python... /usr/bin/python
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-arena.lo -MD -MP -MF src/.deps/libcouchstore_la-arena.Tpo -c -o src/libcouchstore_la-arena.lo `test -f 'src/arena.c' || echo './'`src/arena.c
yes
checking whether to enable assertions... yes
checking assert.h usability... /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-btree_modify.lo -MD -MP -MF src/.deps/libcouchstore_la-btree_modify.Tpo -c -o src/libcouchstore_la-btree_modify.lo `test -f 'src/btree_modify.c' || echo './'`src/btree_modify.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-btree_read.lo -MD -MP -MF src/.deps/libcouchstore_la-btree_read.Tpo -c -o src/libcouchstore_la-btree_read.lo `test -f 'src/btree_read.c' || echo './'`src/btree_read.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-couch_db.lo -MD -MP -MF src/.deps/libcouchstore_la-couch_db.Tpo -c -o src/libcouchstore_la-couch_db.lo `test -f 'src/couch_db.c' || echo './'`src/couch_db.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-couch_save.lo -MD -MP -MF src/.deps/libcouchstore_la-couch_save.Tpo -c -o src/libcouchstore_la-couch_save.lo `test -f 'src/couch_save.c' || echo './'`src/couch_save.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-crc32.lo -MD -MP -MF src/.deps/libcouchstore_la-crc32.Tpo -c -o src/libcouchstore_la-crc32.lo `test -f 'src/crc32.c' || echo './'`src/crc32.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-couch_file_read.lo -MD -MP -MF src/.deps/libcouchstore_la-couch_file_read.Tpo -c -o src/libcouchstore_la-couch_file_read.lo `test -f 'src/couch_file_read.c' || echo './'`src/couch_file_read.c
configure: updating cache config.cache
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-couch_file_write.lo -MD -MP -MF src/.deps/libcouchstore_la-couch_file_write.Tpo -c -o src/libcouchstore_la-couch_file_write.lo `test -f 'src/couch_file_write.c' || echo './'`src/couch_file_write.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-iobuffer.lo -MD -MP -MF src/.deps/libcouchstore_la-iobuffer.Tpo -c -o src/libcouchstore_la-iobuffer.lo `test -f 'src/iobuffer.c' || echo './'`src/iobuffer.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-reduces.lo -MD -MP -MF src/.deps/libcouchstore_la-reduces.Tpo -c -o src/libcouchstore_la-reduces.lo `test -f 'src/reduces.c' || echo './'`src/reduces.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-strerror.lo -MD -MP -MF src/.deps/libcouchstore_la-strerror.Tpo -c -o src/libcouchstore_la-strerror.lo `test -f 'src/strerror.c' || echo './'`src/strerror.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-os.lo -MD -MP -MF src/.deps/libcouchstore_la-os.Tpo -c -o src/libcouchstore_la-os.lo `test -f 'src/os.c' || echo './'`src/os.c
configure: creating ./config.status
yes
checking assert.h presence... libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-btree_read.lo -MD -MP -MF src/.deps/libcouchstore_la-btree_read.Tpo -c src/btree_read.c -fPIC -DPIC -o src/.libs/libcouchstore_la-btree_read.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-btree_modify.lo -MD -MP -MF src/.deps/libcouchstore_la-btree_modify.Tpo -c src/btree_modify.c -fPIC -DPIC -o src/.libs/libcouchstore_la-btree_modify.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-couch_db.lo -MD -MP -MF src/.deps/libcouchstore_la-couch_db.Tpo -c src/couch_db.c -fPIC -DPIC -o src/.libs/libcouchstore_la-couch_db.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-arena.lo -MD -MP -MF src/.deps/libcouchstore_la-arena.Tpo -c src/arena.c -fPIC -DPIC -o src/.libs/libcouchstore_la-arena.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-couch_save.lo -MD -MP -MF src/.deps/libcouchstore_la-couch_save.Tpo -c src/couch_save.c -fPIC -DPIC -o src/.libs/libcouchstore_la-couch_save.o
yes
checking for assert.h... yes
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-crc32.lo -MD -MP -MF src/.deps/libcouchstore_la-crc32.Tpo -c src/crc32.c -fPIC -DPIC -o src/.libs/libcouchstore_la-crc32.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-iobuffer.lo -MD -MP -MF src/.deps/libcouchstore_la-iobuffer.Tpo -c src/iobuffer.c -fPIC -DPIC -o src/.libs/libcouchstore_la-iobuffer.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-reduces.lo -MD -MP -MF src/.deps/libcouchstore_la-reduces.Tpo -c src/reduces.c -fPIC -DPIC -o src/.libs/libcouchstore_la-reduces.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-couch_file_read.lo -MD -MP -MF src/.deps/libcouchstore_la-couch_file_read.Tpo -c src/couch_file_read.c -fPIC -DPIC -o src/.libs/libcouchstore_la-couch_file_read.o
checking whether it is safe to use -fdiagnostics-show-option... libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-couch_file_write.lo -MD -MP -MF src/.deps/libcouchstore_la-couch_file_write.Tpo -c src/couch_file_write.c -fPIC -DPIC -o src/.libs/libcouchstore_la-couch_file_write.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-strerror.lo -MD -MP -MF src/.deps/libcouchstore_la-strerror.Tpo -c src/strerror.c -fPIC -DPIC -o src/.libs/libcouchstore_la-strerror.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-os.lo -MD -MP -MF src/.deps/libcouchstore_la-os.Tpo -c src/os.c -fPIC -DPIC -o src/.libs/libcouchstore_la-os.o
mv -f src/.deps/libcouchstore_la-crc32.Tpo src/.deps/libcouchstore_la-crc32.Plo
yes
checking whether it is safe to use -Wconversion... /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-util.lo -MD -MP -MF src/.deps/libcouchstore_la-util.Tpo -c -o src/libcouchstore_la-util.lo `test -f 'src/util.c' || echo './'`src/util.c
mv -f src/.deps/libcouchstore_la-strerror.Tpo src/.deps/libcouchstore_la-strerror.Plo
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -Wno-error -g -O2 -MT src/rfc1321/librfc1321_la-md5c.lo -MD -MP -MF src/rfc1321/.deps/librfc1321_la-md5c.Tpo -c -o src/rfc1321/librfc1321_la-md5c.lo `test -f 'src/rfc1321/md5c.c' || echo './'`src/rfc1321/md5c.c
yes
checking whether it is safe to use -Wconversion with htons... libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -MT src/libcouchstore_la-util.lo -MD -MP -MF src/.deps/libcouchstore_la-util.Tpo -c src/util.c -fPIC -DPIC -o src/.libs/libcouchstore_la-util.o
mv -f src/.deps/libcouchstore_la-arena.Tpo src/.deps/libcouchstore_la-arena.Plo
depbase=`echo src/byteswap.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -g -O2 -MT src/byteswap.lo -MD -MP -MF $depbase.Tpo -c -o src/byteswap.lo src/byteswap.c &&\
mv -f $depbase.Tpo $depbase.Plo
mv -f src/.deps/libcouchstore_la-reduces.Tpo src/.deps/libcouchstore_la-reduces.Plo
gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -D__STDC_FORMAT_MACROS -g -O2 -MT src/couch_dbdump-dbdump.o -MD -MP -MF src/.deps/couch_dbdump-dbdump.Tpo -c -o src/couch_dbdump-dbdump.o `test -f 'src/dbdump.c' || echo './'`src/dbdump.c
mv -f src/.deps/libcouchstore_la-btree_read.Tpo src/.deps/libcouchstore_la-btree_read.Plo
gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -D__STDC_FORMAT_MACROS -g -O2 -MT src/couch_dbinfo-dbinfo.o -MD -MP -MF src/.deps/couch_dbinfo-dbinfo.Tpo -c -o src/couch_dbinfo-dbinfo.o `test -f 'src/dbinfo.c' || echo './'`src/dbinfo.c
yes
checking whether it is safe to use -Wextra... mv -f src/.deps/libcouchstore_la-couch_file_read.Tpo src/.deps/libcouchstore_la-couch_file_read.Plo
gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -D__STDC_FORMAT_MACROS -g -O2 -MT src/couch_dbinfo-util.o -MD -MP -MF src/.deps/couch_dbinfo-util.Tpo -c -o src/couch_dbinfo-util.o `test -f 'src/util.c' || echo './'`src/util.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -Wno-error -g -O2 -MT src/rfc1321/librfc1321_la-md5c.lo -MD -MP -MF src/rfc1321/.deps/librfc1321_la-md5c.Tpo -c src/rfc1321/md5c.c -fPIC -DPIC -o src/rfc1321/.libs/librfc1321_la-md5c.o
mv -f src/.deps/libcouchstore_la-couch_file_write.Tpo src/.deps/libcouchstore_la-couch_file_write.Plo
mv -f src/.deps/libcouchstore_la-os.Tpo src/.deps/libcouchstore_la-os.Plo
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -std=c99 -g -O2 -MT src/byteswap.lo -MD -MP -MF src/.deps/byteswap.Tpo -c src/byteswap.c -fPIC -DPIC -o src/.libs/byteswap.o
yes
checking whether it is safe to use -Wmissing-declarations from C++... mv -f src/.deps/libcouchstore_la-couch_save.Tpo src/.deps/libcouchstore_la-couch_save.Plo
mv -f src/.deps/libcouchstore_la-iobuffer.Tpo src/.deps/libcouchstore_la-iobuffer.Plo
mv -f src/.deps/libcouchstore_la-util.Tpo src/.deps/libcouchstore_la-util.Plo
yes
checking whether it is safe to use -Wlogical-op... mv -f src/.deps/couch_dbdump-dbdump.Tpo src/.deps/couch_dbdump-dbdump.Po
(rm -rf tmp/sigar; mkdir -p tmp/sigar)
/bin/bash ./libtool --tag=CC --mode=link gcc -std=c99 -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -o libbyteswap.la src/byteswap.lo -lm
make -C sigar install
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar'
yes
checking whether it is safe to use -Wredundant-decls from C++... Making install in include
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/include'
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/include'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include"
mv -f src/.deps/couch_dbinfo-dbinfo.Tpo src/.deps/couch_dbinfo-dbinfo.Po
mv -f src/.deps/couch_dbinfo-util.Tpo src/.deps/couch_dbinfo-util.Po
/usr/bin/install -c -m 644 sigar.h sigar_fileinfo.h sigar_format.h sigar_getline.h sigar_log.h sigar_private.h sigar_ptql.h sigar_util.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/include'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/include'
Making install in src
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src'
Making install in os
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os'
mv -f src/.deps/libcouchstore_la-couch_db.Tpo src/.deps/libcouchstore_la-couch_db.Plo
mv -f src/.deps/libcouchstore_la-btree_modify.Tpo src/.deps/libcouchstore_la-btree_modify.Plo
libtool: link: ar cru .libs/libbyteswap.a src/.libs/byteswap.o
Making install in aix
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/aix'
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/aix'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/aix'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/aix'
Making install in darwin
libtool: link: ranlib .libs/libbyteswap.a
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/darwin'
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/darwin'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/darwin'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/darwin'
Making install in freebsd
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/freebsd'
yes
checking whether it is safe to use -Wattributes from C++... make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/freebsd'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/freebsd'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/freebsd'
Making install in hpux
libtool: link: ( cd ".libs" && rm -f "libbyteswap.la" && ln -s "../libbyteswap.la" "libbyteswap.la" )
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/hpux'
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/hpux'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/hpux'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/hpux'
Making install in linux
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/linux'
/bin/bash ../../../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../../../include -I../../../src/os/linux -g -O2 -MT linux_sigar.lo -MD -MP -MF .deps/linux_sigar.Tpo -c -o linux_sigar.lo linux_sigar.c
mv -f src/rfc1321/.deps/librfc1321_la-md5c.Tpo src/rfc1321/.deps/librfc1321_la-md5c.Plo
/bin/bash ./libtool --tag=CC --mode=link gcc -std=c99 -Wno-error -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -o librfc1321.la src/rfc1321/librfc1321_la-md5c.lo -lm
no
checking whether it is safe to use -Wno-attributes... no
checking for doxygen... no
checking for perl... perl
checking for working -pipe... libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../../../include -I../../../src/os/linux -g -O2 -MT linux_sigar.lo -MD -MP -MF .deps/linux_sigar.Tpo -c linux_sigar.c -fPIC -DPIC -o .libs/linux_sigar.o
yes
checking for the pthreads library -lpthreads... libtool: link: ar cru .libs/librfc1321.a src/rfc1321/.libs/librfc1321_la-md5c.o
libtool: link: ranlib .libs/librfc1321.a
libtool: link: ( cd ".libs" && rm -f "librfc1321.la" && ln -s "../librfc1321.la" "librfc1321.la" )
/bin/bash ./libtool --tag=CC --mode=link gcc -std=c99 -DLIBCOUCHSTORE_INTERNAL=1 -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -version-info 1:0:0 -no-undefined -lsnappy -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -o libcouchstore.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib src/libcouchstore_la-arena.lo src/libcouchstore_la-btree_modify.lo src/libcouchstore_la-btree_read.lo src/libcouchstore_la-couch_db.lo src/libcouchstore_la-couch_save.lo src/libcouchstore_la-crc32.lo src/libcouchstore_la-couch_file_read.lo src/libcouchstore_la-couch_file_write.lo src/libcouchstore_la-iobuffer.lo src/libcouchstore_la-reduces.lo src/libcouchstore_la-strerror.lo src/libcouchstore_la-os.lo src/libcouchstore_la-util.lo librfc1321.la libbyteswap.la -lm
no
checking whether pthreads work without any flags... linux_sigar.c: In function 'sigar_arp_list_get':
linux_sigar.c:2395:5: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
linux_sigar.c: In function 'proc_net_read':
linux_sigar.c:1914:10: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
linux_sigar.c: In function 'sigar_net_interface_stat_get':
linux_sigar.c:1749:10: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
linux_sigar.c:1750:10: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
linux_sigar.c: In function 'sigar_net_route_list_get':
linux_sigar.c:1706:5: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
linux_sigar.c: In function 'get_iostat_procp':
linux_sigar.c:1334:5: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
linux_sigar.c: In function 'sigar_cpu_list_get':
linux_sigar.c:453:5: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... libtool: link: gcc -shared -fPIC -DPIC src/.libs/libcouchstore_la-arena.o src/.libs/libcouchstore_la-btree_modify.o src/.libs/libcouchstore_la-btree_read.o src/.libs/libcouchstore_la-couch_db.o src/.libs/libcouchstore_la-couch_save.o src/.libs/libcouchstore_la-crc32.o src/.libs/libcouchstore_la-couch_file_read.o src/.libs/libcouchstore_la-couch_file_write.o src/.libs/libcouchstore_la-iobuffer.o src/.libs/libcouchstore_la-reduces.o src/.libs/libcouchstore_la-strerror.o src/.libs/libcouchstore_la-os.o src/.libs/libcouchstore_la-util.o -Wl,--whole-archive ./.libs/librfc1321.a ./.libs/libbyteswap.a -Wl,--no-whole-archive -lsnappy -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -lm -O2 -Wl,-soname -Wl,libcouchstore.so.1 -o .libs/libcouchstore.so.1.0.0
no
checking for the pthreads library -llthread... libtool: link: (cd ".libs" && rm -f "libcouchstore.so.1" && ln -s "libcouchstore.so.1.0.0" "libcouchstore.so.1")
libtool: link: (cd ".libs" && rm -f "libcouchstore.so" && ln -s "libcouchstore.so.1.0.0" "libcouchstore.so")
no
checking whether pthreads work with -pthread... libtool: link: ( cd ".libs" && rm -f "libcouchstore.la" && ln -s "../libcouchstore.la" "libcouchstore.la" )
/bin/bash ./libtool --tag=CC --mode=link gcc -std=c99 -D__STDC_FORMAT_MACROS -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -o couch_dbdump src/couch_dbdump-dbdump.o libcouchstore.la libbyteswap.la -lsnappy -lm
/bin/bash ./libtool --tag=CC --mode=link gcc -std=c99 -D__STDC_FORMAT_MACROS -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -o couch_dbinfo src/couch_dbinfo-dbinfo.o src/couch_dbinfo-util.o libcouchstore.la libbyteswap.la -lm
yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for pthread_yield_np... libtool: link: gcc -std=c99 -D__STDC_FORMAT_MACROS -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -o .libs/couch_dbdump src/couch_dbdump-dbdump.o -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib ./.libs/libcouchstore.so ./.libs/libbyteswap.a -lsnappy -lm -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
libtool: link: gcc -std=c99 -D__STDC_FORMAT_MACROS -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -o .libs/couch_dbinfo src/couch_dbinfo-dbinfo.o src/couch_dbinfo-util.o -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib ./.libs/libcouchstore.so ./.libs/libbyteswap.a -lm -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
no
checking if pthread_yield takes zero arguments... make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchstore'
yes
checking if pthread_yield takes one argument... test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libcouchstore" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libcouchstore"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib"
config.status: creating t/binary-sasl.t
/usr/bin/install -c -m 644 include/libcouchstore/couch_db.h include/libcouchstore/couch_common.h include/libcouchstore/error.h include/libcouchstore/file_ops.h include/libcouchstore/visibility.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libcouchstore'
/usr/bin/install -c -m 644 libcouchstore.pc '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig'
/bin/bash ./libtool --mode=install /usr/bin/install -c libcouchstore.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib'
config.status: creating Makefile
no
checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking for shared library run path origin... libtool: install: /usr/bin/install -c .libs/libcouchstore.so.1.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libcouchstore.so.1.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libcouchstore.so.1.0.0 libcouchstore.so.1 || { rm -f libcouchstore.so.1 && ln -s libcouchstore.so.1.0.0 libcouchstore.so.1; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libcouchstore.so.1.0.0 libcouchstore.so || { rm -f libcouchstore.so && ln -s libcouchstore.so.1.0.0 libcouchstore.so; }; })
libtool: install: /usr/bin/install -c .libs/libcouchstore.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libcouchstore.la
config.status: creating config/Doxyfile
done
config.status: creating config/Doxyfile-api
checking for libcurl... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
----------------------------------------------------------------------
Libraries have been installed in:
config.status: creating config.h
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
config.status: executing depfiles commands
/bin/bash ./libtool --mode=install /usr/bin/install -c couch_dbdump couch_dbinfo '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
checking for erlc... /usr/local/bin/erlc
checking erl_driver.h usability... libtool: install: /usr/bin/install -c .libs/couch_dbdump /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/couch_dbdump
libtool: install: /usr/bin/install -c .libs/couch_dbinfo /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/couch_dbinfo
yes
checking erl_driver.h presence... make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchstore'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchstore'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
cd libcbio && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --disable-static --enable-shared 'LDFLAGS=-L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib ' 'CPPFLAGS=-I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include '
yes
checking for erl_driver.h... yes
checking for help2man... no
configure: WARNING: You will be unable to regenerate any man pages.
checking location of init directory... ${sysconfdir}/init.d
checking location of launchd directory... not found
yes
checking how to link with libcurl... -lcurl
checking if libcurl has CURLOPT_USERNAME... config.status: executing libtool commands
no
checking for libsqlite3... configure: updating cache config.cache
configure: creating ./config.status
no
checking for libstrophe... configure: creating cache config.cache
checking for gcc... gcc
no
checking for stdbool.h that conforms to C99... checking whether the C compiler works... yes
checking for _Bool... yes
checking for C compiler default output file name... a.out
(rm -rf tmp/memcached; mkdir -p tmp/memcached)
checking for suffix of executables... make -C memcached install
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached'
make install-am
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached'
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./utilities -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT libmemcached_utilities_la-config_parser.lo -MD -MP -MF .deps/libmemcached_utilities_la-config_parser.Tpo -c -o libmemcached_utilities_la-config_parser.lo `test -f 'utilities/config_parser.c' || echo './'`utilities/config_parser.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./utilities -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT libmemcached_utilities_la-engine_loader.lo -MD -MP -MF .deps/libmemcached_utilities_la-engine_loader.Tpo -c -o libmemcached_utilities_la-engine_loader.lo `test -f 'utilities/engine_loader.c' || echo './'`utilities/engine_loader.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./utilities -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT libmemcached_utilities_la-extension_loggers.lo -MD -MP -MF .deps/libmemcached_utilities_la-extension_loggers.Tpo -c -o libmemcached_utilities_la-extension_loggers.lo `test -f 'utilities/extension_loggers.c' || echo './'`utilities/extension_loggers.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./utilities -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT libmemcached_utilities_la-util.lo -MD -MP -MF .deps/libmemcached_utilities_la-util.Tpo -c -o libmemcached_utilities_la-util.lo `test -f 'utilities/util.c' || echo './'`utilities/util.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT ascii_scrub_la-ascii_scrub.lo -MD -MP -MF .deps/ascii_scrub_la-ascii_scrub.Tpo -c -o ascii_scrub_la-ascii_scrub.lo `test -f 'extensions/protocol/ascii_scrub.c' || echo './'`extensions/protocol/ascii_scrub.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT basic_engine_testsuite.lo -MD -MP -MF .deps/basic_engine_testsuite.Tpo -c -o basic_engine_testsuite.lo `test -f 'testsuite/basic_engine_testsuite.c' || echo './'`testsuite/basic_engine_testsuite.c

/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./engines/default_engine -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT default_engine_la-assoc.lo -MD -MP -MF .deps/default_engine_la-assoc.Tpo -c -o default_engine_la-assoc.lo `test -f 'engines/default_engine/assoc.c' || echo './'`engines/default_engine/assoc.c
yes
checking whether we are cross compiling... configure: skipping check unit-test dependency
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./engines/default_engine -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT default_engine_la-default_engine.lo -MD -MP -MF .deps/default_engine_la-default_engine.Tpo -c -o default_engine_la-default_engine.lo `test -f 'engines/default_engine/default_engine.c' || echo './'`engines/default_engine/default_engine.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./engines/default_engine -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT default_engine_la-items.lo -MD -MP -MF .deps/default_engine_la-items.Tpo -c -o default_engine_la-items.lo `test -f 'engines/default_engine/items.c' || echo './'`engines/default_engine/items.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./engines/default_engine -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT default_engine_la-slabs.lo -MD -MP -MF .deps/default_engine_la-slabs.Tpo -c -o default_engine_la-slabs.lo `test -f 'engines/default_engine/slabs.c' || echo './'`engines/default_engine/slabs.c
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./utilities -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT libmemcached_utilities_la-config_parser.lo -MD -MP -MF .deps/libmemcached_utilities_la-config_parser.Tpo -c utilities/config_parser.c -fPIC -DPIC -o .libs/libmemcached_utilities_la-config_parser.o
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT example_protocol_la-example_protocol.lo -MD -MP -MF .deps/example_protocol_la-example_protocol.Tpo -c -o example_protocol_la-example_protocol.lo `test -f 'extensions/protocol/example_protocol.c' || echo './'`extensions/protocol/example_protocol.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT fragment_rw_ops_la-fragment_rw.lo -MD -MP -MF .deps/fragment_rw_ops_la-fragment_rw.Tpo -c -o fragment_rw_ops_la-fragment_rw.lo `test -f 'extensions/protocol/fragment_rw.c' || echo './'`extensions/protocol/fragment_rw.c
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./utilities -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT libmemcached_utilities_la-extension_loggers.lo -MD -MP -MF .deps/libmemcached_utilities_la-extension_loggers.Tpo -c utilities/extension_loggers.c -fPIC -DPIC -o .libs/libmemcached_utilities_la-extension_loggers.o
checking for syslog.h... libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./utilities -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT libmemcached_utilities_la-engine_loader.lo -MD -MP -MF .deps/libmemcached_utilities_la-engine_loader.Tpo -c utilities/engine_loader.c -fPIC -DPIC -o .libs/libmemcached_utilities_la-engine_loader.o
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./engines/default_engine -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT default_engine_la-assoc.lo -MD -MP -MF .deps/default_engine_la-assoc.Tpo -c engines/default_engine/assoc.c -fPIC -DPIC -o .libs/default_engine_la-assoc.o
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT ascii_scrub_la-ascii_scrub.lo -MD -MP -MF .deps/ascii_scrub_la-ascii_scrub.Tpo -c extensions/protocol/ascii_scrub.c -fPIC -DPIC -o .libs/ascii_scrub_la-ascii_scrub.o
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT basic_engine_testsuite.lo -MD -MP -MF .deps/basic_engine_testsuite.Tpo -c testsuite/basic_engine_testsuite.c -fPIC -DPIC -o .libs/basic_engine_testsuite.o
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./utilities -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT libmemcached_utilities_la-util.lo -MD -MP -MF .deps/libmemcached_utilities_la-util.Tpo -c utilities/util.c -fPIC -DPIC -o .libs/libmemcached_utilities_la-util.o
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT example_protocol_la-example_protocol.lo -MD -MP -MF .deps/example_protocol_la-example_protocol.Tpo -c extensions/protocol/example_protocol.c -fPIC -DPIC -o .libs/example_protocol_la-example_protocol.o
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./engines/default_engine -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT default_engine_la-items.lo -MD -MP -MF .deps/default_engine_la-items.Tpo -c engines/default_engine/items.c -fPIC -DPIC -o .libs/default_engine_la-items.o
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./engines/default_engine -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT default_engine_la-default_engine.lo -MD -MP -MF .deps/default_engine_la-default_engine.Tpo -c engines/default_engine/default_engine.c -fPIC -DPIC -o .libs/default_engine_la-default_engine.o
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./engines/default_engine -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT default_engine_la-slabs.lo -MD -MP -MF .deps/default_engine_la-slabs.Tpo -c engines/default_engine/slabs.c -fPIC -DPIC -o .libs/default_engine_la-slabs.o
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT fragment_rw_ops_la-fragment_rw.lo -MD -MP -MF .deps/fragment_rw_ops_la-fragment_rw.Tpo -c extensions/protocol/fragment_rw.c -fPIC -DPIC -o .libs/fragment_rw_ops_la-fragment_rw.o
no
checking for suffix of object files... yes
checking for strsep... mv -f .deps/libmemcached_utilities_la-extension_loggers.Tpo .deps/libmemcached_utilities_la-extension_loggers.Plo
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT blackhole_logger_la-blackhole_logger.lo -MD -MP -MF .deps/blackhole_logger_la-blackhole_logger.Tpo -c -o blackhole_logger_la-blackhole_logger.lo `test -f 'extensions/loggers/blackhole_logger.c' || echo './'`extensions/loggers/blackhole_logger.c
o
checking whether we are using the GNU C compiler... mv -f .deps/ascii_scrub_la-ascii_scrub.Tpo .deps/ascii_scrub_la-ascii_scrub.Plo
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT stdin_term_handler_la-stdin_check.lo -MD -MP -MF .deps/stdin_term_handler_la-stdin_check.Tpo -c -o stdin_term_handler_la-stdin_check.lo `test -f 'extensions/daemon/stdin_check.c' || echo './'`extensions/daemon/stdin_check.c
mv -f .deps/example_protocol_la-example_protocol.Tpo .deps/example_protocol_la-example_protocol.Plo
/bin/bash ./libtool --tag=CC --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT syslog_logger_la-syslog_logger.lo -MD -MP -MF .deps/syslog_logger_la-syslog_logger.Tpo -c -o syslog_logger_la-syslog_logger.lo `test -f 'extensions/loggers/syslog_logger.c' || echo './'`extensions/loggers/syslog_logger.c
mv -f .deps/fragment_rw_ops_la-fragment_rw.Tpo .deps/fragment_rw_ops_la-fragment_rw.Plo
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT blackhole_logger_la-blackhole_logger.lo -MD -MP -MF .deps/blackhole_logger_la-blackhole_logger.Tpo -c extensions/loggers/blackhole_logger.c -fPIC -DPIC -o .libs/blackhole_logger_la-blackhole_logger.o
yes
checking whether gcc accepts -g... gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./programs -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT engine_testapp-engine_testapp.o -MD -MP -MF .deps/engine_testapp-engine_testapp.Tpo -c -o engine_testapp-engine_testapp.o `test -f 'programs/engine_testapp.c' || echo './'`programs/engine_testapp.c
mv -f .deps/libmemcached_utilities_la-config_parser.Tpo .deps/libmemcached_utilities_la-config_parser.Plo
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./programs -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT engine_testapp-mock_server.o -MD -MP -MF .deps/engine_testapp-mock_server.Tpo -c -o engine_testapp-mock_server.o `test -f 'programs/mock_server.c' || echo './'`programs/mock_server.c
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT stdin_term_handler_la-stdin_check.lo -MD -MP -MF .deps/stdin_term_handler_la-stdin_check.Tpo -c extensions/daemon/stdin_check.c -fPIC -DPIC -o .libs/stdin_term_handler_la-stdin_check.o
yes
mv -f .deps/libmemcached_utilities_la-engine_loader.Tpo .deps/libmemcached_utilities_la-engine_loader.Plo
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT memcached-daemon.o -MD -MP -MF .deps/memcached-daemon.Tpo -c -o memcached-daemon.o `test -f 'daemon/daemon.c' || echo './'`daemon/daemon.c
mv -f .deps/libmemcached_utilities_la-util.Tpo .deps/libmemcached_utilities_la-util.Plo
libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./extensions -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT syslog_logger_la-syslog_logger.lo -MD -MP -MF .deps/syslog_logger_la-syslog_logger.Tpo -c extensions/loggers/syslog_logger.c -fPIC -DPIC -o .libs/syslog_logger_la-syslog_logger.o
yes
checking for gcc option to accept ISO C89... mv -f .deps/linux_sigar.Tpo .deps/linux_sigar.Plo
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT memcached-hash.o -MD -MP -MF .deps/memcached-hash.Tpo -c -o memcached-hash.o `test -f 'daemon/hash.c' || echo './'`daemon/hash.c
mv -f .deps/default_engine_la-assoc.Tpo .deps/default_engine_la-assoc.Plo
/bin/bash ../../../libtool --tag=CC --mode=link gcc -g -O2 -o libsigar_os.la linux_sigar.lo
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT memcached-memcached.o -MD -MP -MF .deps/memcached-memcached.Tpo -c -o memcached-memcached.o `test -f 'daemon/memcached.c' || echo './'`daemon/memcached.c
mv -f .deps/blackhole_logger_la-blackhole_logger.Tpo .deps/blackhole_logger_la-blackhole_logger.Plo
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT memcached-stats.o -MD -MP -MF .deps/memcached-stats.Tpo -c -o memcached-stats.o `test -f 'daemon/stats.c' || echo './'`daemon/stats.c
mv -f .deps/stdin_term_handler_la-stdin_check.Tpo .deps/stdin_term_handler_la-stdin_check.Plo
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT memcached-thread.o -MD -MP -MF .deps/memcached-thread.Tpo -c -o memcached-thread.o `test -f 'daemon/thread.c' || echo './'`daemon/thread.c
configure: updating cache config.cache
mv -f .deps/default_engine_la-slabs.Tpo .deps/default_engine_la-slabs.Plo
none needed
checking how to run the C preprocessor... configure: creating ./config.status
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT memcached-alloc_hooks.o -MD -MP -MF .deps/memcached-alloc_hooks.Tpo -c -o memcached-alloc_hooks.o `test -f 'daemon/alloc_hooks.c' || echo './'`daemon/alloc_hooks.c
mv -f .deps/memcached-daemon.Tpo .deps/memcached-daemon.Po
mv -f .deps/syslog_logger_la-syslog_logger.Tpo .deps/syslog_logger_la-syslog_logger.Plo
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT memcached-cache.o -MD -MP -MF .deps/memcached-cache.Tpo -c -o memcached-cache.o `test -f 'daemon/cache.c' || echo './'`daemon/cache.c
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT memcached-sasl_defs.o -MD -MP -MF .deps/memcached-sasl_defs.Tpo -c -o memcached-sasl_defs.o `test -f 'daemon/sasl_defs.c' || echo './'`daemon/sasl_defs.c
gcc -E
libtool: link: ar cru .libs/libsigar_os.a .libs/linux_sigar.o
libtool: link: ranlib .libs/libsigar_os.a
mv -f .deps/engine_testapp-mock_server.Tpo .deps/engine_testapp-mock_server.Po
libtool: link: ( cd ".libs" && rm -f "libsigar_os.la" && ln -s "../libsigar_os.la" "libsigar_os.la" )
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT memcached-isasl.o -MD -MP -MF .deps/memcached-isasl.Tpo -c -o memcached-isasl.o `test -f 'daemon/isasl.c' || echo './'`daemon/isasl.c
checking for grep that handles long lines and -e... make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/linux'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/linux'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/linux'
/bin/grep
checking for egrep... Making install in solaris
/bin/grep -E
checking for ANSI C header files... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/solaris'
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/solaris'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/solaris'
mv -f .deps/memcached-cache.Tpo .deps/memcached-cache.Po
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/solaris'
Making install in win32
mv -f .deps/memcached-hash.Tpo .deps/memcached-hash.Po
mv -f .deps/memcached-stats.Tpo .deps/memcached-stats.Po
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/win32'
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/win32'
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT mcstat.o -MD -MP -MF .deps/mcstat.Tpo -c -o mcstat.o `test -f 'programs/mcstat.c' || echo './'`programs/mcstat.c
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/win32'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os/win32'
mv -f .deps/memcached-sasl_defs.Tpo .deps/memcached-sasl_defs.Po
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os'
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src/os'
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT sizes-sizes.o -MD -MP -MF .deps/sizes-sizes.Tpo -c -o sizes-sizes.o `test -f 'programs/sizes.c' || echo './'`programs/sizes.c
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src'
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT testapp-testapp.o -MD -MP -MF .deps/testapp-testapp.Tpo -c -o testapp-testapp.o `test -f 'programs/testapp.c' || echo './'`programs/testapp.c
/bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar.lo -MD -MP -MF .deps/libsigar_la-sigar.Tpo -c -o libsigar_la-sigar.lo `test -f 'sigar.c' || echo './'`sigar.c
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -I./daemon -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT testapp-cache.o -MD -MP -MF .deps/testapp-cache.Tpo -c -o testapp-cache.o `test -f 'daemon/cache.c' || echo './'`daemon/cache.c
mv -f .deps/memcached-alloc_hooks.Tpo .deps/memcached-alloc_hooks.Po
mv -f .deps/default_engine_la-default_engine.Tpo .deps/default_engine_la-default_engine.Plo
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I./include -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -MT timedrun.o -MD -MP -MF .deps/timedrun.Tpo -c -o timedrun.o `test -f 'programs/timedrun.c' || echo './'`programs/timedrun.c
/bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_cache.lo -MD -MP -MF .deps/libsigar_la-sigar_cache.Tpo -c -o libsigar_la-sigar_cache.lo `test -f 'sigar_cache.c' || echo './'`sigar_cache.c
mv -f .deps/timedrun.Tpo .deps/timedrun.Po
mv -f .deps/sizes-sizes.Tpo .deps/sizes-sizes.Po
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -R '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached' -R '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib' -pthread -o libmemcached_utilities.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached libmemcached_utilities_la-config_parser.lo libmemcached_utilities_la-engine_loader.lo libmemcached_utilities_la-extension_loggers.lo libmemcached_utilities_la-util.lo -lrt
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o ascii_scrub.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached ascii_scrub_la-ascii_scrub.lo -lrt
mv -f .deps/mcstat.Tpo .deps/mcstat.Po
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o example_protocol.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached example_protocol_la-example_protocol.lo -lrt
mv -f .deps/testapp-cache.Tpo .deps/testapp-cache.Po
yes
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o blackhole_logger.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached blackhole_logger_la-blackhole_logger.lo -lrt
libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar.lo -MD -MP -MF .deps/libsigar_la-sigar.Tpo -c sigar.c -fPIC -DPIC -o .libs/libsigar_la-sigar.o
checking for sys/types.h... libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_cache.lo -MD -MP -MF .deps/libsigar_la-sigar_cache.Tpo -c sigar_cache.c -fPIC -DPIC -o .libs/libsigar_la-sigar_cache.o
mv -f .deps/engine_testapp-engine_testapp.Tpo .deps/engine_testapp-engine_testapp.Po
mv -f .deps/basic_engine_testsuite.Tpo .deps/basic_engine_testsuite.Plo
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o stdin_term_handler.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached stdin_term_handler_la-stdin_check.lo -lrt
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o syslog_logger.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached syslog_logger_la-syslog_logger.lo -lrt
yes
mv -f .deps/default_engine_la-items.Tpo .deps/default_engine_la-items.Plo
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o mcstat mcstat.o -ldl -lm -lrt
checking for sys/stat.h... libtool: link: gcc -shared -fPIC -DPIC .libs/libmemcached_utilities_la-config_parser.o .libs/libmemcached_utilities_la-engine_loader.o .libs/libmemcached_utilities_la-extension_loggers.o .libs/libmemcached_utilities_la-util.o -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,libmemcached_utilities.so.0 -o .libs/libmemcached_utilities.so.0.0.0
mv -f .deps/memcached-isasl.Tpo .deps/memcached-isasl.Po
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o sizes sizes-sizes.o -lrt
libtool: link: gcc -shared -fPIC -DPIC .libs/example_protocol_la-example_protocol.o -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,example_protocol.so -o .libs/example_protocol.so
yes
libtool: link: gcc -shared -fPIC -DPIC .libs/blackhole_logger_la-blackhole_logger.o -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,blackhole_logger.so -o .libs/blackhole_logger.so
libtool: link: gcc -shared -fPIC -DPIC .libs/ascii_scrub_la-ascii_scrub.o -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,ascii_scrub.so -o .libs/ascii_scrub.so
libtool: link: (cd ".libs" && rm -f "libmemcached_utilities.so.0" && ln -s "libmemcached_utilities.so.0.0.0" "libmemcached_utilities.so.0")
sigar.c: In function 'proc_net_interface_list_get':libtool: link: gcc -shared -fPIC -DPIC .libs/stdin_term_handler_la-stdin_check.o -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,stdin_term_handler.so -o .libs/stdin_term_handler.so

sigar.c:1861:10: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
sigar.c:1862:10: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
mv -f .deps/memcached-thread.Tpo .deps/memcached-thread.Po
checking for stdlib.h... libtool: link: gcc -shared -fPIC -DPIC .libs/syslog_logger_la-syslog_logger.o -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,syslog_logger.so -o .libs/syslog_logger.so
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o timedrun timedrun.o -lrt
libtool: link: (cd ".libs" && rm -f "libmemcached_utilities.so" && ln -s "libmemcached_utilities.so.0.0.0" "libmemcached_utilities.so")
libtool: link: gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o sizes sizes-sizes.o -lrt -pthread
libtool: link: gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o mcstat mcstat.o -ldl -lm -lrt -pthread
mv -f .deps/libsigar_la-sigar_cache.Tpo .deps/libsigar_la-sigar_cache.Plo
libtool: link: ( cd ".libs" && rm -f "blackhole_logger.la" && ln -s "../blackhole_logger.la" "blackhole_logger.la" )
libtool: link: ( cd ".libs" && rm -f "example_protocol.la" && ln -s "../example_protocol.la" "example_protocol.la" )
/bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_fileinfo.lo -MD -MP -MF .deps/libsigar_la-sigar_fileinfo.Tpo -c -o libsigar_la-sigar_fileinfo.lo `test -f 'sigar_fileinfo.c' || echo './'`sigar_fileinfo.c
libtool: link: ( cd ".libs" && rm -f "ascii_scrub.la" && ln -s "../ascii_scrub.la" "ascii_scrub.la" )
/bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_format.lo -MD -MP -MF .deps/libsigar_la-sigar_format.Tpo -c -o libsigar_la-sigar_format.lo `test -f 'sigar_format.c' || echo './'`sigar_format.c
/bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_getline.lo -MD -MP -MF .deps/libsigar_la-sigar_getline.Tpo -c -o libsigar_la-sigar_getline.lo `test -f 'sigar_getline.c' || echo './'`sigar_getline.c
/bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_ptql.lo -MD -MP -MF .deps/libsigar_la-sigar_ptql.Tpo -c -o libsigar_la-sigar_ptql.lo `test -f 'sigar_ptql.c' || echo './'`sigar_ptql.c
libtool: link: ( cd ".libs" && rm -f "libmemcached_utilities.la" && ln -s "../libmemcached_utilities.la" "libmemcached_utilities.la" )
/bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_signal.lo -MD -MP -MF .deps/libsigar_la-sigar_signal.Tpo -c -o libsigar_la-sigar_signal.lo `test -f 'sigar_signal.c' || echo './'`sigar_signal.c
yes
libtool: link: ( cd ".libs" && rm -f "stdin_term_handler.la" && ln -s "../stdin_term_handler.la" "stdin_term_handler.la" )
libtool: link: ( cd ".libs" && rm -f "syslog_logger.la" && ln -s "../syslog_logger.la" "syslog_logger.la" )
/bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_util.lo -MD -MP -MF .deps/libsigar_la-sigar_util.Tpo -c -o libsigar_la-sigar_util.lo `test -f 'sigar_util.c' || echo './'`sigar_util.c
/bin/bash ../libtool --tag=CC --mode=compile gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_version_autoconf.lo -MD -MP -MF .deps/libsigar_la-sigar_version_autoconf.Tpo -c -o libsigar_la-sigar_version_autoconf.lo `test -f 'sigar_version_autoconf.c' || echo './'`sigar_version_autoconf.c
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o basic_engine_testsuite.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached basic_engine_testsuite.lo libmemcached_utilities.la -lm -lrt
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o default_engine.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached default_engine_la-assoc.lo default_engine_la-default_engine.lo default_engine_la-items.lo default_engine_la-slabs.lo libmemcached_utilities.la -lm -lrt
checking for string.h... libtool: link: gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o timedrun timedrun.o -lrt -pthread
yes
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o fragment_rw_ops.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached fragment_rw_ops_la-fragment_rw.lo libmemcached_utilities.la -lm -lrt
checking for memory.h... libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_fileinfo.lo -MD -MP -MF .deps/libsigar_la-sigar_fileinfo.Tpo -c sigar_fileinfo.c -fPIC -DPIC -o .libs/libsigar_la-sigar_fileinfo.o
libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_signal.lo -MD -MP -MF .deps/libsigar_la-sigar_signal.Tpo -c sigar_signal.c -fPIC -DPIC -o .libs/libsigar_la-sigar_signal.o
libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_format.lo -MD -MP -MF .deps/libsigar_la-sigar_format.Tpo -c sigar_format.c -fPIC -DPIC -o .libs/libsigar_la-sigar_format.o
libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_util.lo -MD -MP -MF .deps/libsigar_la-sigar_util.Tpo -c sigar_util.c -fPIC -DPIC -o .libs/libsigar_la-sigar_util.o
libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_getline.lo -MD -MP -MF .deps/libsigar_la-sigar_getline.Tpo -c sigar_getline.c -fPIC -DPIC -o .libs/libsigar_la-sigar_getline.o
libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_ptql.lo -MD -MP -MF .deps/libsigar_la-sigar_ptql.Tpo -c sigar_ptql.c -fPIC -DPIC -o .libs/libsigar_la-sigar_ptql.o
libtool: compile: gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" "-DPACKAGE_STRING=\"libsigar 1.6.2\"" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -I../include -g -O2 -MT libsigar_la-sigar_version_autoconf.lo -MD -MP -MF .deps/libsigar_la-sigar_version_autoconf.Tpo -c sigar_version_autoconf.c -fPIC -DPIC -o .libs/libsigar_la-sigar_version_autoconf.o
yes
mv -f .deps/libsigar_la-sigar_version_autoconf.Tpo .deps/libsigar_la-sigar_version_autoconf.Plo
sigar_getline.c: In function 'sigar_getline_histadd':
sigar_getline.c:1426:25: warning: ignoring return value of 'tmpnam', declared with attribute warn_unused_result [-Wunused-result]
sigar_getline.c: In function 'gl_error':checking for strings.h... /bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o engine_testapp engine_testapp-engine_testapp.o engine_testapp-mock_server.o libmemcached_utilities.la -ldl -lm -lrt

sigar_getline.c:709:16: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
sigar_getline.c: In function 'gl_puts':
sigar_getline.c:691:16: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
sigar_getline.c: In function 'gl_putc':
sigar_getline.c:663:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
libtool: link: gcc -shared -fPIC -DPIC .libs/basic_engine_testsuite.o -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached/.libs -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached ./.libs/libmemcached_utilities.so -lm -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,basic_engine_testsuite.so -o .libs/basic_engine_testsuite.so
libtool: link: gcc -shared -fPIC -DPIC .libs/default_engine_la-assoc.o .libs/default_engine_la-default_engine.o .libs/default_engine_la-items.o .libs/default_engine_la-slabs.o -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached/.libs -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached ./.libs/libmemcached_utilities.so -lm -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,default_engine.so -o .libs/default_engine.so
sigar_ptql.c: In function 'sigar_sudo_file2str':
sigar_ptql.c:724:5: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
mv -f .deps/libsigar_la-sigar_fileinfo.Tpo .deps/libsigar_la-sigar_fileinfo.Plo
libtool: link: gcc -shared -fPIC -DPIC .libs/fragment_rw_ops_la-fragment_rw.o -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached/.libs -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached ./.libs/libmemcached_utilities.so -lm -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,fragment_rw_ops.so -o .libs/fragment_rw_ops.so
yes
libtool: link: ( cd ".libs" && rm -f "basic_engine_testsuite.la" && ln -s "../basic_engine_testsuite.la" "basic_engine_testsuite.la" )
checking for inttypes.h... libtool: link: ( cd ".libs" && rm -f "default_engine.la" && ln -s "../default_engine.la" "default_engine.la" )
mv -f .deps/libsigar_la-sigar_signal.Tpo .deps/libsigar_la-sigar_signal.Plo
libtool: link: ( cd ".libs" && rm -f "fragment_rw_ops.la" && ln -s "../fragment_rw_ops.la" "fragment_rw_ops.la" )
yes
checking for stdint.h... libtool: link: gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o .libs/engine_testapp engine_testapp-engine_testapp.o engine_testapp-mock_server.o ./.libs/libmemcached_utilities.so -ldl -lm -lrt -pthread -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached
yes
checking for unistd.h... mv -f .deps/libsigar_la-sigar_format.Tpo .deps/libsigar_la-sigar_format.Plo
yes
checking minix/config.h usability... mv -f .deps/libsigar_la-sigar.Tpo .deps/libsigar_la-sigar.Plo
mv -f .deps/libsigar_la-sigar_util.Tpo .deps/libsigar_la-sigar_util.Plo
no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for a BSD-compatible install... mv -f .deps/libsigar_la-sigar_getline.Tpo .deps/libsigar_la-sigar_getline.Plo
/usr/bin/install -c
checking whether build environment is sane... mv -f .deps/libsigar_la-sigar_ptql.Tpo .deps/libsigar_la-sigar_ptql.Plo
/bin/bash ../libtool --tag=CC --mode=link gcc -I../include -g -O2 -no-undefined -o libsigar.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib libsigar_la-sigar.lo libsigar_la-sigar_cache.lo libsigar_la-sigar_fileinfo.lo libsigar_la-sigar_format.lo libsigar_la-sigar_getline.lo libsigar_la-sigar_ptql.lo libsigar_la-sigar_signal.lo libsigar_la-sigar_util.lo libsigar_la-sigar_version_autoconf.lo ../src/os/linux/libsigar_os.la
mv -f .deps/testapp-testapp.Tpo .deps/testapp-testapp.Po
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o testapp testapp-testapp.o testapp-cache.o libmemcached_utilities.la -ldl -lm -lrt
config.status: creating Makefile
libtool: link: gcc -shared -fPIC -DPIC .libs/libsigar_la-sigar.o .libs/libsigar_la-sigar_cache.o .libs/libsigar_la-sigar_fileinfo.o .libs/libsigar_la-sigar_format.o .libs/libsigar_la-sigar_getline.o .libs/libsigar_la-sigar_ptql.o .libs/libsigar_la-sigar_signal.o .libs/libsigar_la-sigar_util.o .libs/libsigar_la-sigar_version_autoconf.o -Wl,--whole-archive ../src/os/linux/.libs/libsigar_os.a -Wl,--no-whole-archive -O2 -Wl,-soname -Wl,libsigar.so.0 -o .libs/libsigar.so.0.0.0
config.status: creating bin/couchjs.tpl
libtool: link: (cd ".libs" && rm -f "libsigar.so.0" && ln -s "libsigar.so.0.0.0" "libsigar.so.0")
config.status: creating bin/couchdb.tpl
libtool: link: gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o .libs/testapp testapp-testapp.o testapp-cache.o ./.libs/libmemcached_utilities.so -ldl -lm -lrt -pthread -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached
libtool: link: (cd ".libs" && rm -f "libsigar.so" && ln -s "libsigar.so.0.0.0" "libsigar.so")
config.status: creating bin/couchdb.bat.tpl
libtool: link: ( cd ".libs" && rm -f "libsigar.la" && ln -s "../libsigar.la" "libsigar.la" )
config.status: creating bin/Makefile
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src'
make[4]: Nothing to be done for `install-data-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib"
/bin/bash ../libtool --mode=install /usr/bin/install -c libsigar.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib'
config.status: creating etc/couchdb/Makefile
config.status: creating etc/couchdb/default.ini.tpl
libtool: install: /usr/bin/install -c .libs/libsigar.so.0.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libsigar.so.0.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libsigar.so.0.0.0 libsigar.so.0 || { rm -f libsigar.so.0 && ln -s libsigar.so.0.0.0 libsigar.so.0; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libsigar.so.0.0.0 libsigar.so || { rm -f libsigar.so && ln -s libsigar.so.0.0.0 libsigar.so; }; })
libtool: install: /usr/bin/install -c .libs/libsigar.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libsigar.la
config.status: creating etc/default/Makefile
config.status: creating etc/init/couchdb.tpl
config.status: creating etc/init/Makefile
libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/src'
Making install in bindings
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings'
Making install in lua
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings/lua'
config.status: creating etc/launchd/org.apache.couchdb.plist.tpl
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings/lua'
make[4]: Nothing to be done for `install-data-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib"
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings/lua'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings/lua'
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings'
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/bindings'
Making install in examples
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/examples'
gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -g -O2 -MT cpuinfo.o -MD -MP -MF .deps/cpuinfo.Tpo -c -o cpuinfo.o cpuinfo.c
gcc -DPACKAGE_NAME=\"libsigar\" -DPACKAGE_TARNAME=\"libsigar\" -DPACKAGE_VERSION=\"1.6.2\" -DPACKAGE_STRING=\"libsigar\ 1.6.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"libsigar\" -DVERSION=\"1.6.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSIGAR_TEST_OS_LINUX=1 -I. -I../include -I../src/os/linux -g -O2 -MT sigar_ps.o -MD -MP -MF .deps/sigar_ps.Tpo -c -o sigar_ps.o sigar_ps.c
config.status: creating etc/launchd/Makefile
config.status: creating Makefile
sigar_ps.c: In function ‘main’:
sigar_ps.c:59:9: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long int’ [-Wformat]
mv -f .deps/cpuinfo.Tpo .deps/cpuinfo.Po
config.status: creating tests/Makefile
mv -f .deps/sigar_ps.Tpo .deps/sigar_ps.Po
config.status: creating etc/logrotate.d/couchdb.tpl
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -o cpuinfo cpuinfo.o ../src/libsigar.la
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -o sigar_ps sigar_ps.o ../src/libsigar.la
config.status: creating etc/logrotate.d/Makefile
config.status: creating libconflate.pc
config.status: creating etc/windows/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: creating etc/Makefile
config.status: creating share/Makefile
libtool: link: gcc -g -O2 -o .libs/cpuinfo cpuinfo.o ../src/.libs/libsigar.so -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
libtool: link: gcc -g -O2 -o .libs/sigar_ps sigar_ps.o ../src/.libs/libsigar.so -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
config.status: creating src/Makefile
config.status: creating src/couchdb/couch.app.tpl
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/examples'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/examples'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/examples'
Making install in tests
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/tests'
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/tests'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/tests'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/tests'
config.status: creating src/couchdb/Makefile
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar'
config.status: executing libtool commands
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
cd portsigar && LDFLAGS="-L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib " ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
config.status: creating src/couchdb/priv/Makefile
config.status: creating src/erlang-oauth/Makefile
config.status: creating src/etap/Makefile
config.status: creating src/lhttpc/Makefile
config.status: creating src/mochiweb/Makefile
configure: creating cache config.cache
checking for a BSD-compatible install... config.status: creating src/snappy/Makefile
/usr/bin/install -c
checking whether build environment is sane... config.status: creating src/snappy/snappy-1.0.4/snappy-stubs-public.h
config.status: creating src/ejson/Makefile
config.status: creating src/couch_set_view/Makefile
config.status: creating src/mapreduce/Makefile
config.status: creating test/Makefile
(rm -rf tmp/libconflate; mkdir -p tmp/libconflate)
make -C libconflate install
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate'
make install-recursive
config.status: creating test/bench/Makefile
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate'
Making install in .
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate'
CC adhoc_commands.lo
CC alarm.lo
CC conflate.lo
CC kvpair.lo
config.status: creating test/etap/Makefile
CC logging.lo
CC persist.lo
CC rest.lo
CC util.lo
CC xmpp.lo
config.status: creating test/etap/test_util.erl
yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... config.status: creating test/javascript/Makefile
yes
rest.c:179:5: warning: no previous prototype for 'setup_curl_sock' [-Wmissing-prototypes]
config.status: creating test/view_server/Makefile
checking for style of include used by make... GNU
checking dependency style of gcc... config.status: creating test/python/Makefile
config.status: creating test/python/set_view/Makefile
config.status: creating utils/Makefile
gcc3
checking for g++... g++
config.status: creating var/Makefile
checking whether we are using the GNU C++ compiler... config.status: creating config.h
yes
checking whether g++ accepts -g... config.status: creating src/snappy/snappy-1.0.4/config.h
CCLD libconflate.la
config.status: executing depfiles commands
yes
checking dependency style of g++... gcc3
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 whether gcc and cc understand -c and -o together... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libconflate" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libconflate"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib"
/bin/bash ./libtool --mode=install /usr/bin/install -c libconflate.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib'
/usr/bin/install -c -m 644 conflate.h alarm.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libconflate'
/usr/bin/install -c -m 644 libconflate.pc '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig'
libtool: install: /usr/bin/install -c .libs/libconflate.so.0.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libconflate.so.0.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libconflate.so.0.0.0 libconflate.so.0 || { rm -f libconflate.so.0 && ln -s libconflate.so.0.0.0 libconflate.so.0; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libconflate.so.0.0.0 libconflate.so || { rm -f libconflate.so && ln -s libconflate.so.0.0.0 libconflate.so; }; })
libtool: install: /usr/bin/install -c .libs/libconflate.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libconflate.la
yes
checking whether ln -s works... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate'
/usr/bin/ld
Making install in tests
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate/tests'
/usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate/tests'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate/tests'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate/tests'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libconflate'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
BSD nm
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... 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
mv -f .deps/memcached-memcached.Tpo .deps/memcached-memcached.Po
/bin/bash ./libtool --tag=CC --mode=link gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -R '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached' -R '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib' -pthread -o memcached memcached-daemon.o memcached-hash.o memcached-memcached.o memcached-stats.o memcached-thread.o memcached-alloc_hooks.o memcached-cache.o memcached-sasl_defs.o memcached-isasl.o libmemcached_utilities.la -levent -ldl -lm -lrt
checking for gcc... gcc
checking whether the C compiler works... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
yes
checking for C compiler default output file name... a.out
checking for suffix of executables... checking for dlfcn.h...
checking whether we are cross compiling... libtool: link: gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -pthread -o .libs/memcached memcached-daemon.o memcached-hash.o memcached-memcached.o memcached-stats.o memcached-thread.o memcached-alloc_hooks.o memcached-cache.o memcached-sasl_defs.o memcached-isasl.o ./.libs/libmemcached_utilities.so -levent -ldl -lm -lrt -pthread -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
yes
checking for objdir... .libs
no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached'
config.status: executing libtool commands
checking if gcc supports -fno-rtti -fno-exceptions... test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1"
yes
checking whether gcc accepts -g... test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/memcached" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/memcached"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached"
/bin/bash ./libtool --mode=install /usr/bin/install -c libmemcached_utilities.la ascii_scrub.la basic_engine_testsuite.la default_engine.la example_protocol.la fragment_rw_ops.la blackhole_logger.la stdin_term_handler.la syslog_logger.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached'
/usr/bin/install -c -m 644 include/memcached/allocator_hooks.h include/memcached/callback.h include/memcached/config_parser.h include/memcached/engine.h include/memcached/engine_common.h include/memcached/engine_testapp.h include/memcached/extension.h include/memcached/extension_loggers.h include/memcached/protocol_binary.h include/memcached/protocol_plugin.h include/memcached/server_api.h include/memcached/types.h include/memcached/util.h include/memcached/vbucket.h include/memcached/visibility.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/memcached'
/usr/bin/install -c -m 644 doc/memcached.1 '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1'
yes
/bin/bash ./libtool --mode=install /usr/bin/install -c engine_testapp memcached mcstat '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
checking for gcc option to accept ISO C89... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... libtool: install: /usr/bin/install -c .libs/libmemcached_utilities.so.0.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/libmemcached_utilities.so.0.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f libmemcached_utilities.so.0.0.0 libmemcached_utilities.so.0 || { rm -f libmemcached_utilities.so.0 && ln -s libmemcached_utilities.so.0.0.0 libmemcached_utilities.so.0; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f libmemcached_utilities.so.0.0.0 libmemcached_utilities.so || { rm -f libmemcached_utilities.so && ln -s libmemcached_utilities.so.0.0.0 libmemcached_utilities.so; }; })
libtool: install: /usr/bin/install -c .libs/libmemcached_utilities.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/libmemcached_utilities.la
libtool: install: /usr/bin/install -c .libs/ascii_scrub.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/ascii_scrub.so
libtool: install: /usr/bin/install -c .libs/ascii_scrub.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/ascii_scrub.la
libtool: install: warning: relinking `basic_engine_testsuite.la'
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached; /bin/bash /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached/libtool --tag CC --mode=relink gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o basic_engine_testsuite.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached basic_engine_testsuite.lo libmemcached_utilities.la -lm -lrt )
yes
checking if gcc static flag -static works... libtool: install: /usr/bin/install -c .libs/engine_testapp /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/engine_testapp
none needed
checking for style of include used by make... libtool: install: /usr/bin/install -c .libs/memcached /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memcached
GNU
checking dependency style of gcc... libtool: install: /usr/bin/install -c mcstat /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/mcstat

You have configured Apache CouchDB, time to relax.

Run `make && sudo make install' to install.
gcc3
libtool: relink: gcc -shared -fPIC -DPIC .libs/basic_engine_testsuite.o -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached -lmemcached_utilities -lm -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,basic_engine_testsuite.so -o .libs/basic_engine_testsuite.so
checking build system type... yes
checking if gcc supports -c -o file.o... (rm -rf tmp/couchdb; mkdir -p tmp/couchdb)
libtool: install: /usr/bin/install -c .libs/basic_engine_testsuite.soT /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/basic_engine_testsuite.so
libtool: install: /usr/bin/install -c .libs/basic_engine_testsuite.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/basic_engine_testsuite.la
make -C couchdb install
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb'
libtool: install: warning: relinking `default_engine.la'
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached; /bin/bash /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached/libtool --tag CC --mode=relink gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o default_engine.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached default_engine_la-assoc.lo default_engine_la-default_engine.lo default_engine_la-items.lo default_engine_la-slabs.lo libmemcached_utilities.la -lm -lrt )
Making install in bin
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/bin'
sed -e "s|%ERL%|/usr/local/bin/erl|g" \
-e "s|%ICU_CONFIG%|/usr/local/bin/icu-config|g" \
-e "s|%bindir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin|g" \
-e "s|%localerlanglibdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib|g" \
-e "s|%defaultini%|default.ini|g" \
-e "s|%localini%|local.ini|g" \
-e "s|%localconfdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb|g" \
-e "s|%localstatelogdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/log/couchdb|g" \
-e "s|%localerlanglibargs%||g" \
-e "s|%localstatelibdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/lib/couchdb|g" \
-e "s|%localstatedir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var|g" \
-e "s|%bug_uri%|https://issues.apache.org/jira/browse/COUCHDB|g" \
-e "s|%package_author_address%|dev@couchdb.apache.org|g" \
-e "s|%package_author_name%|The Apache Software Foundation|g" \
-e "s|%package_name%|Apache CouchDB|g" \
-e "s|%version%|1.2.0a-1470995-git|g" \
-e "s|%couchdb_command_name%|`echo couchdb | sed 's,x,x,'`|g" > \
couchdb < couchdb.tpl
sed -e "s|%locallibbindir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/bin|g" \
-e "s|%bug_uri%|https://issues.apache.org/jira/browse/COUCHDB|g" \
-e "s|%package_author_address%|dev@couchdb.apache.org|g" \
-e "s|%package_author_name%|The Apache Software Foundation|g" \
-e "s|%package_name%|Apache CouchDB|g" \
-e "s|%version%|1.2.0a-1470995-git|g" \
-e "s|%couchjs_command_name%|`echo couchjs | sed 's,x,x,'`|g" > \
couchjs < couchjs.tpl
x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... sed -e "s|%locallibbindir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb/priv|g" \
-e "s|%bug_uri%|https://issues.apache.org/jira/browse/COUCHDB|g" \
-e "s|%package_author_address%|dev@couchdb.apache.org|g" \
-e "s|%package_author_name%|The Apache Software Foundation|g" \
-e "s|%package_name%|Apache CouchDB|g" \
-e "s|%version%|1.2.0a-1470995-git|g" \
-e "s|%couchjs_command_name%|`echo couchjs | sed 's,x,x,'`|g" > \
couchjs_dev < couchjs.tpl
chmod +x couchdb
yes
checking whether -lc should be explicitly linked in... printf
checking for a sed that does not truncate output... chmod +x couchjs
/bin/sed
checking for grep that handles long lines and -e... chmod +x couchjs_dev
/bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/bin'
/bin/grep -F
checking for ld used by gcc... test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1"
/usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... /usr/bin/install -c couchdb couchjs '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/bin'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/bin'
yes
checking for BSD- or MS-compatible name lister (nm)... Making install in etc
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc'
/usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... Making install in couchdb
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/couchdb'
no
checking dynamic linker characteristics... sed -e "s|%bindir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin|g" \
-e "s|%localconfdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb|g" \
-e "s|%localdatadir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb|g" \
-e "s|%localbuilddatadir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb|g" \
-e "s|%localstatelibdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/lib/couchdb|g" \
-e "s|%localstatelogdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/log/couchdb|g" \
-e "s|%localstaterundir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/run/couchdb|g" \
-e "s|%couchprivlibdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib|g" \
-e "s|%couchjs_command_name%|`echo couchjs | sed 's,x,x,'`|g" \
-e "s|%package_author_name%|The Apache Software Foundation|g" \
-e "s|%version%|1.2.0a-1470995-git|g" \
< default.ini.tpl > default.ini
sed -e "s|%bindir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/bin|g" \
-e "s|%localconfdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/couchdb|g" \
-e "s|%localdatadir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/share|g" \
-e "s|%localbuilddatadir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/share|g" \
-e "s|%localstatelibdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/tmp/lib|g" \
-e "s|%localstatelogdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/tmp/log|g" \
-e "s|%localstaterundir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/tmp/run|g" \
-e "s|%couchprivlibdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb/priv/.libs|g" \
-e "s|%couchjs_command_name%|`echo couchjs_dev | sed 's,x,x,'`|g" \
-e "s|%package_author_name%|The Apache Software Foundation|g" \
-e "s|%version%|1.2.0a-1470995-git|g" \
< default.ini.tpl > default_dev.ini
if test ! -f "local_dev.ini"; then \
cp local.ini local_dev.ini; \
fi
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/couchdb'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb"
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... /usr/bin/install -c -m 644 default.ini '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb'
yes
checking whether the shell understands "+="... yes
make install-data-hook
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/couchdb'
objdump
if test ! -f "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/local.ini"; then \
cp ./local.ini "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/local.ini"; \
fi
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... if test ! "/bin/mkdir -p" = ""; then \
/bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/default.d"; \
/bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/local.d"; \
else \
echo "WARNING: You may have to create these directories by hand."; \
mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/default.d"; \
mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb/local.d"; \
fi
libtool: relink: gcc -shared -fPIC -DPIC .libs/default_engine_la-assoc.o .libs/default_engine_la-default_engine.o .libs/default_engine_la-items.o .libs/default_engine_la-slabs.o -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached -lmemcached_utilities -lm -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,default_engine.so -o .libs/default_engine.so
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/couchdb'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/couchdb'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/couchdb'
Making install in default
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/default'
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/default'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/default'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/default'
Making install in init
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/init'
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/init'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/init'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/init'
Making install in launchd
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/launchd'
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/launchd'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/launchd'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/launchd'
Making install in logrotate.d
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/logrotate.d'
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/logrotate.d'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/logrotate.d'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/logrotate.d'
Making install in windows
yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/windows'
no
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/windows'
libtool: install: /usr/bin/install -c .libs/default_engine.soT /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/default_engine.so
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/windows'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/windows'
libtool: install: /usr/bin/install -c .libs/default_engine.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/default_engine.la
checking how to run the C++ preprocessor... libtool: install: /usr/bin/install -c .libs/example_protocol.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/example_protocol.so
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc'
if test "/bin/mkdir -p"; then \
/bin/mkdir -p init; \
else \
if test ! -d init; then \
mkdir init; \
fi \
fi
sed -e "s|%localstatelogdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/log/couchdb|g" < logrotate.d/couchdb.tpl > logrotate.d/couchdb
libtool: install: /usr/bin/install -c .libs/example_protocol.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/example_protocol.la
sed -e "s|%configure_input%|init/couchdb. Generated from init/couchdb.tpl by configure.|" \
-e "s|%bindir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin|" \
-e "s|%sysconfdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc|" \
-e "s|%localstaterundir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/run/couchdb|" \
-e "s|%couchdb_command_name%|`echo couchdb | sed 's,x,x,'`|" \
< init/couchdb.tpl > init/couchdb
libtool: install: warning: relinking `fragment_rw_ops.la'
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached; /bin/bash /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached/libtool --tag CC --mode=relink gcc -std=gnu99 -fvisibility=hidden -pthread -g -O2 -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -avoid-version -shared -module -no-undefined -pthread -o fragment_rw_ops.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached fragment_rw_ops_la-fragment_rw.lo libmemcached_utilities.la -lm -lrt )
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/init.d" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/init.d"
test -z "" || /bin/mkdir -p ""
/usr/bin/install -c -m 644 init/couchdb '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/init.d'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/default'
make install-data-hook
/usr/bin/install -c -m 644 default/couchdb '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/default'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/logrotate.d'
/usr/bin/install -c -m 644 logrotate.d/couchdb '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/logrotate.d'
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc'
if test -n "init/couchdb"; then \
chmod +x "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/init.d/couchdb"; \
fi
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc'
Making install in src
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src'
Making install in mapreduce
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/mapreduce'
/bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT mapreduce_nif.lo -MD -MP -MF .deps/mapreduce_nif.Tpo -c -o mapreduce_nif.lo mapreduce_nif.cc
/bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT mapreduce.lo -MD -MP -MF .deps/mapreduce.Tpo -c -o mapreduce.lo mapreduce.cc
sed -e "s|%abs_top_srcdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|g" \
-e "s|%abs_top_builddir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|g" > \
test/run < test/run.tpl
cp mapreduce.app.in mapreduce.app
/usr/local/bin/erlc +debug_info -Werror mapreduce.erl
chmod +x test/run
g++ -E
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT mapreduce.lo -MD -MP -MF .deps/mapreduce.Tpo -c mapreduce.cc -fPIC -DPIC -o .libs/mapreduce.o
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT mapreduce_nif.lo -MD -MP -MF .deps/mapreduce_nif.Tpo -c mapreduce_nif.cc -fPIC -DPIC -o .libs/mapreduce_nif.o
libtool: relink: gcc -shared -fPIC -DPIC .libs/fragment_rw_ops_la-fragment_rw.o -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached -lmemcached_utilities -lm -lrt -pthread -O2 -pthread -pthread -Wl,-soname -Wl,fragment_rw_ops.so -o .libs/fragment_rw_ops.so
libtool: install: /usr/bin/install -c .libs/fragment_rw_ops.soT /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/fragment_rw_ops.so
@
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... libtool: install: /usr/bin/install -c .libs/fragment_rw_ops.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/fragment_rw_ops.la
libtool: install: /usr/bin/install -c .libs/blackhole_logger.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/blackhole_logger.so
libtool: install: /usr/bin/install -c .libs/blackhole_logger.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/blackhole_logger.la
libtool: install: /usr/bin/install -c .libs/stdin_term_handler.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/stdin_term_handler.so
libtool: install: /usr/bin/install -c .libs/stdin_term_handler.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/stdin_term_handler.la
libtool: install: /usr/bin/install -c .libs/syslog_logger.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/syslog_logger.so
libtool: install: /usr/bin/install -c .libs/syslog_logger.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/syslog_logger.la
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached
yes
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... cd bucket_engine && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --with-memcached=../memcached
cd libmemcached && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --disable-static --enable-shared --disable-dtrace --without-docs --disable-sasl --without-memcached
yes
ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... configure: creating cache config.cache
checking for gcc... gcc
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... checking whether the C compiler works... yes
checking if g++ static flag -static works... yes
yes
checking for C compiler default output file name... a.out
configure: creating cache config.cache
checking for suffix of executables... checking for sys/types.h... yes
checking if g++ supports -c -o file.o... checking build system type... yes

checking whether we are cross compiling... checking for sys/stat.h... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) no
checking for suffix of object files... yes
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether the C++ compiler works... checking for stdlib.h... /usr/bin/install -c
checking whether build environment is sane... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
yes
yes
checking for gcc option to accept ISO C89... checking whether __SUNPRO_C is declared... checking for string.h... no
none needed
checking how to run the C preprocessor... checking whether __GNUC__ is declared... yes
gcc -E
checking for memory.h... yes
checking for gtest... yes
checking for strings.h... 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 inttypes.h... no
checking for libcouchstore/couch_common.h... yes
mv -f .deps/mapreduce.Tpo .deps/mapreduce.Plo
checking for stdint.h... yes
checking for sys/types.h... yes
yes
checking for unistd.h... yes
checking for sys/stat.h... configure: updating cache config.cache
configure: creating ./config.status
mv -f .deps/mapreduce_nif.Tpo .deps/mapreduce_nif.Plo
/bin/bash ../../libtool --tag=CXX --mode=link g++ -g -O2 -module -avoid-version -lv8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -lm -o mapreduce_nif.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/priv mapreduce_nif.lo mapreduce.lo -L/usr/local/lib -L/opt/local/lib -lcrypt
yes
yes
checking for dlfcn.h... checking for stdlib.h... yes
yes
checking for objdir... checking for string.h... .libs
libtool: link: g++ -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.6/crtbeginS.o .libs/mapreduce_nif.o .libs/mapreduce.o -lv8 -L/usr/local/lib -L/opt/local/lib -lcrypt -L/usr/lib/gcc/x86_64-linux-gnu/4.6 -L/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.6/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/4.6/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crtn.o -O2 -Wl,-soname -Wl,mapreduce_nif.so -o .libs/mapreduce_nif.so
yes
checking for memory.h... checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for strings.h... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... libtool: link: ( cd ".libs" && rm -f "mapreduce_nif.la" && ln -s "../mapreduce_nif.la" "mapreduce_nif.la" )
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/mapreduce'
make[4]: Nothing to be done for `install-exec-am'.
yes
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/ebin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/ebin"
yes
checking if gcc static flag -static works... test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/priv" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/priv"
checking for inttypes.h... /bin/bash ../../libtool --mode=install /usr/bin/install -c mapreduce_nif.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/priv'
/usr/bin/install -c -m 644 mapreduce.app mapreduce.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/ebin'
libtool: install: /usr/bin/install -c .libs/mapreduce_nif.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/priv/mapreduce_nif.so
libtool: install: /usr/bin/install -c .libs/mapreduce_nif.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/priv/mapreduce_nif.la
yes
checking for stdint.h... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/priv
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mapreduce-1.0/priv

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/mapreduce'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/mapreduce'
Making install in couchdb
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb'
Making install in priv
yes
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb/priv'
/bin/bash ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -I/usr/local/include -L/usr/local/lib -g -O2 -MT couch_icu_driver_la-couch_icu_driver.lo -MD -MP -MF .deps/couch_icu_driver_la-couch_icu_driver.Tpo -c -o couch_icu_driver_la-couch_icu_driver.lo `test -f 'icu_driver/couch_icu_driver.c' || echo './'`icu_driver/couch_icu_driver.c
/bin/bash ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -D_BSD_SOURCE -I/usr/local/include -L/usr/local/lib -g -O2 -MT couch_ejson_compare_la-couch_ejson_compare.lo -MD -MP -MF .deps/couch_ejson_compare_la-couch_ejson_compare.Tpo -c -o couch_ejson_compare_la-couch_ejson_compare.lo `test -f 'couch_ejson_compare/couch_ejson_compare.c' || echo './'`couch_ejson_compare/couch_ejson_compare.c
cp stat_descriptions.cfg.in stat_descriptions.cfg
yes
checking if gcc supports -c -o file.o... checking for unistd.h... libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -I/usr/local/include -L/usr/local/lib -g -O2 -MT couch_icu_driver_la-couch_icu_driver.lo -MD -MP -MF .deps/couch_icu_driver_la-couch_icu_driver.Tpo -c icu_driver/couch_icu_driver.c -fPIC -DPIC -o .libs/couch_icu_driver_la-couch_icu_driver.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -D_BSD_SOURCE -I/usr/local/include -L/usr/local/lib -g -O2 -MT couch_ejson_compare_la-couch_ejson_compare.lo -MD -MP -MF .deps/couch_ejson_compare_la-couch_ejson_compare.Tpo -c couch_ejson_compare/couch_ejson_compare.c -fPIC -DPIC -o .libs/couch_ejson_compare_la-couch_ejson_compare.o
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking minix/config.h usability... yes
checking whether -lc should be explicitly linked in... icu_driver/couch_icu_driver.c:159:9: warning: initialization from incompatible pointer type [enabled by default]
icu_driver/couch_icu_driver.c:159:9: warning: (near initialization for 'couch_driver_entry.control') [enabled by default]
no
checking dynamic linker characteristics... mv -f .deps/couch_icu_driver_la-couch_icu_driver.Tpo .deps/couch_icu_driver_la-couch_icu_driver.Plo
/bin/bash ../../../libtool --tag=CC --mode=link gcc -I/usr/local/include -L/usr/local/lib -g -O2 -module -avoid-version -I/usr/local/include -L/usr/local/lib -lv8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -lm -o couch_icu_driver.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib couch_icu_driver_la-couch_icu_driver.lo -licuuc -licudata -licui18n -L/usr/local/lib -L/opt/local/lib -lcrypt
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for main in -lsigar... no
checking minix/config.h presence... libtool: link: gcc -shared -fPIC -DPIC .libs/couch_icu_driver_la-couch_icu_driver.o -L/usr/local/lib -lv8 -L/opt/local/lib -lm -licuuc -licudata -licui18n -lcrypt -O2 -Wl,-soname -Wl,couch_icu_driver.so -o .libs/couch_icu_driver.so
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... 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 sigar.h usability... yes
yes
checking for a BSD-compatible install... libtool: link: ( cd ".libs" && rm -f "couch_icu_driver.la" && ln -s "../couch_icu_driver.la" "couch_icu_driver.la" )
checking for style of include used by make... /usr/bin/install -c
checking whether build environment is sane... GNU
checking for gcc... gcc
checking whether the C compiler works... mv -f .deps/couch_ejson_compare_la-couch_ejson_compare.Tpo .deps/couch_ejson_compare_la-couch_ejson_compare.Plo
/bin/bash ../../../libtool --tag=CC --mode=link gcc -D_BSD_SOURCE -I/usr/local/include -L/usr/local/lib -g -O2 -module -avoid-version -I/usr/local/include -L/usr/local/lib -lv8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -lm -o couch_ejson_compare.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib couch_ejson_compare_la-couch_ejson_compare.lo -licuuc -licudata -licui18n -L/usr/local/lib -L/opt/local/lib -lcrypt
yes
checking for C compiler default output file name... a.out
checking for suffix of executables... no
checking sigar.h presence...
checking whether we are cross compiling... no
checking for sigar.h... no
configure: will check for sigar.h in /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include
checking sigar.h usability... libtool: link: gcc -shared -fPIC -DPIC .libs/couch_ejson_compare_la-couch_ejson_compare.o -L/usr/local/lib -lv8 -L/opt/local/lib -lm -licuuc -licudata -licui18n -lcrypt -O2 -Wl,-soname -Wl,couch_ejson_compare.so -o .libs/couch_ejson_compare.so
no
checking for suffix of object files... libtool: link: ( cd ".libs" && rm -f "couch_ejson_compare.la" && ln -s "../couch_ejson_compare.la" "couch_ejson_compare.la" )
yes
checking sigar.h presence... make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb/priv'
make[5]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib"
yes
checking for sigar.h... yes
o
checking whether we are using the GNU C compiler... test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/bin"
/bin/bash ../../../libtool --mode=install /usr/bin/install -c couch_icu_driver.la couch_ejson_compare.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib'
/usr/bin/install -c -m 644 stat_descriptions.cfg '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv'
libtool: install: /usr/bin/install -c .libs/couch_icu_driver.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib/couch_icu_driver.so
yes
checking whether gcc accepts -g... libtool: install: /usr/bin/install -c .libs/couch_icu_driver.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib/couch_icu_driver.la
libtool: install: /usr/bin/install -c .libs/couch_ejson_compare.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib/couch_ejson_compare.so
libtool: install: /usr/bin/install -c .libs/couch_ejson_compare.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib/couch_ejson_compare.la
configure: updating cache config.cache
configure: creating ./config.status
yes
checking for gcc option to accept ISO C89... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make install-data-hook
config.status: creating Makefile
make[6]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb/priv'
if test -f "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib/couch_icu_driver"; then \
rm -f "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib/couch_icu_driver.so"; \
cd "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib" && \
ln -s couch_icu_driver couch_icu_driver.so; \
fi
if test -f "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib/couch_ejson_compare_nif"; then \
rm -f "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib/couch_ejson_compare_nif.so"; \
cd "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/priv/lib" && \
ln -s couch_ejson_compare_nif couch_ejson_compare_nif.so; \
fi
make[6]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb/priv'
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb/priv'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb/priv'
none needed
checking dependency style of gcc... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb'
/usr/local/bin/erlc -I../../src +debug_info -Werror erl_diag.erl;
modules=`{ find . -name "*.erl" -exec basename {} .erl \; | tr '\n' ','; echo ''; } | sed "s/,$//"`; \
sed -e "s|%package_name%|Apache CouchDB|g" \
-e "s|%version%|1.2.0a-1470995-git|g" \
-e "s|@modules@|$modules|g" \
-e "s|%localconfdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/etc/couchdb|g" \
-e "s|@defaultini@|default.ini|g" \
-e "s|@localini@|local.ini|g" > \
couch.app < couch.app.tpl
/usr/local/bin/erlc -I../../src +debug_info -Werror couch.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_api_wrap.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_api_wrap_httpc.erl;
config.status: creating src/config.h
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_app.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_auth_cache.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_btree.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_btree_copy.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_changes.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_compaction_daemon.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_compress.erl;
config.status: executing depfiles commands
gcc3
checking how to run the C preprocessor... gcc -E
config.status: executing libtool commands
yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... checking for a thread-safe mkdir -p... /bin/grep -E
checking for ANSI C header files... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_compress_types.erl;
yes
checking for style of include used by make... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_config.erl;
GNU
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_config_writer.erl;
checking dependency style of gcc... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_db.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_db_update_notifier.erl;
chmod +x couch.app
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_db_update_notifier_sup.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_doc.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_drv.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_ejson_compare.erl;
*****
*
* WARNING: I couldn't find the googletest testsuite framework.
* This means you cannot run the test suite to verify
* that the library works as expected.
* You should consider installing it from:
* http://code.google.com/p/googletest/
*
*****
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_event_sup.erl;
gcc3
checking for gcc... (cached) gcc
yes
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_external_manager.erl;
(rm -rf tmp/libcbio; mkdir -p tmp/libcbio)
checking for sys/types.h... make -C libcbio install
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libcbio'
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -pipe -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -I./src -DLIBCBIO_INTERNAL=1 -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include -pipe -std=gnu99 -O3 -g -O2 -MT src/libcbio_la-document.lo -MD -MP -MF src/.deps/libcbio_la-document.Tpo -c -o src/libcbio_la-document.lo `test -f 'src/document.c' || echo './'`src/document.c
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 whether gcc and cc understand -c and -o together... yes
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -pipe -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -I./src -DLIBCBIO_INTERNAL=1 -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include -pipe -std=gnu99 -O3 -g -O2 -MT src/libcbio_la-document.lo -MD -MP -MF src/.deps/libcbio_la-document.Tpo -c src/document.c -fPIC -DPIC -o src/.libs/libcbio_la-document.o
checking for sys/stat.h... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_external_server.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_file.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_file_write_guard.erl;
yes
checking for stdlib.h... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_db_frontend.erl;
yes
mv -f src/.deps/libcbio_la-document.Tpo src/.deps/libcbio_la-document.Plo
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -pipe -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -I./src -DLIBCBIO_INTERNAL=1 -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include -pipe -std=gnu99 -O3 -g -O2 -MT src/libcbio_la-error.lo -MD -MP -MF src/.deps/libcbio_la-error.Tpo -c -o src/libcbio_la-error.lo `test -f 'src/error.c' || echo './'`src/error.c
checking build system type... yes
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -pipe -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -I./src -DLIBCBIO_INTERNAL=1 -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include -pipe -std=gnu99 -O3 -g -O2 -MT src/libcbio_la-error.lo -MD -MP -MF src/.deps/libcbio_la-error.Tpo -c src/error.c -fPIC -DPIC -o src/.libs/libcbio_la-error.o
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_db.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_auth.erl;
checking for string.h... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_oauth.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_external.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_view.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_misc_handlers.erl;
x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... mv -f src/.deps/libcbio_la-error.Tpo src/.deps/libcbio_la-error.Plo
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_replicator.erl;
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I./src -pipe -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -I./src -DLIBCBIO_INTERNAL=1 -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include -pipe -std=gnu99 -O3 -g -O2 -MT src/libcbio_la-instance.lo -MD -MP -MF src/.deps/libcbio_la-instance.Tpo -c -o src/libcbio_la-instance.lo `test -f 'src/instance.c' || echo './'`src/instance.c
printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... yes
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I./src -pipe -I./include -DHAVE_VISIBILITY=1 -fvisibility=hidden -I./src -DLIBCBIO_INTERNAL=1 -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include -pipe -std=gnu99 -O3 -g -O2 -MT src/libcbio_la-instance.lo -MD -MP -MF src/.deps/libcbio_la-instance.Tpo -c src/instance.c -fPIC -DPIC -o src/.libs/libcbio_la-instance.o
/usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_stats_handlers.erl;
checking for memory.h... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... mv -f src/.deps/libcbio_la-instance.Tpo src/.deps/libcbio_la-instance.Plo
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_vhost.erl;
/bin/bash ./libtool --tag=CC --mode=link gcc -pipe -std=gnu99 -O3 -g -O2 -DHAVE_VISIBILITY=1 -fvisibility=hidden -lcouchstore -version-info 1:0:0 -no-undefined -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -o libcbio.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib src/libcbio_la-document.lo src/libcbio_la-error.lo src/libcbio_la-instance.lo
yes
3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_log.erl;
checking for strings.h... checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_access_log.erl;
@
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... yes
checking for inttypes.h... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_native_process.erl;
libtool: link: gcc -shared -fPIC -DPIC src/.libs/libcbio_la-document.o src/.libs/libcbio_la-error.o src/.libs/libcbio_la-instance.o -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libcouchstore.so -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -O3 -O2 -Wl,-soname -Wl,libcbio.so.1 -o .libs/libcbio.so.1.0.0
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_os_daemons.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_os_process.erl;
libtool: link: (cd ".libs" && rm -f "libcbio.so.1" && ln -s "libcbio.so.1.0.0" "libcbio.so.1")
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_primary_sup.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_query_servers.erl;
libtool: link: (cd ".libs" && rm -f "libcbio.so" && ln -s "libcbio.so.1.0.0" "libcbio.so")
yes
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_ref_counter.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_rep_sup.erl;
checking for stdint.h... libtool: link: ( cd ".libs" && rm -f "libcbio.la" && ln -s "../libcbio.la" "libcbio.la" )
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libcbio'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib"
ok
/bin/bash ./libtool --mode=install /usr/bin/install -c libcbio.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib'
checking for sysroot... no
yes
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_replication_manager.erl;
libtool: install: /usr/bin/install -c .libs/libcbio.so.1.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libcbio.so.1.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libcbio.so.1.0.0 libcbio.so.1 || { rm -f libcbio.so.1 && ln -s libcbio.so.1.0.0 libcbio.so.1; }; })
checking for unistd.h... libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libcbio.so.1.0.0 libcbio.so || { rm -f libcbio.so && ln -s libcbio.so.1.0.0 libcbio.so; }; })
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_replication_notifier.erl;
libtool: install: /usr/bin/install -c .libs/libcbio.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libcbio.la
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_replicator.erl;
checking for mt... mt
checking if mt is a manifest tool... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_replicator_worker.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_replicator_utils.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_secondary_sup.erl;
no
checking for dlfcn.h... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libcbio" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libcbio"
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_server.erl;
/usr/bin/install -c -m 644 include/libcbio/cbio.h include/libcbio/types.h include/libcbio/visibility.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libcbio'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libcbio'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libcbio'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_server_sup.erl;
cd ep-engine && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --with-memcached=../memcached
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_stats_aggregator.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_stats_collector.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_task_status.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_util.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_uuids.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_view.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_view_compactor.erl;
yes
checking minix/config.h usability... yes
checking for objdir... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_view_updater.erl;
.libs
config.status: creating Makefile
config.status: executing depfiles commands
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_view_group.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_view_mapreduce.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_db_updater.erl;
checking if gcc supports -fno-rtti -fno-exceptions... no
checking minix/config.h presence... config.status: executing libtool commands
no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_work_queue.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror json_stream_parse.erl;
no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... /usr/local/bin/erlc -I../../src +debug_info -Werror couch_httpd_view_merger.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_index_merger.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_view_merger.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_view_merger_queue.erl;
/usr/local/bin/erlc -I../../src +debug_info -Werror couch_skew.erl;
yes
checking for isainfo... no
checking for g++... g++
yes
checking if gcc static flag -static works... configure: creating cache config.cache
checking build system type... checking whether we are using the GNU C++ compiler... yes
checking if gcc supports -c -o file.o... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... yes
checking whether g++ accepts -g... /usr/bin/install -c
checking whether build environment is sane... yes
checking dependency style of g++... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... gcc3
checking whether gcc and cc understand -c and -o together... (rm -rf tmp/portsigar; mkdir -p tmp/portsigar)
make -C portsigar install 'CPPFLAGS=-I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/include '
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/portsigar'
gcc -DPACKAGE_NAME=\"sigar_port\" -DPACKAGE_TARNAME=\"sigar_port\" -DPACKAGE_VERSION=\"1.0\" -DPACKAGE_STRING=\"sigar_port\ 1.0\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"sigar_port\" -DVERSION=\"1.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/sigar/include -g -O2 -MT sigar_port.o -MD -MP -MF .deps/sigar_port.Tpo -c -o sigar_port.o sigar_port.c
no
checking dynamic linker characteristics... mv -f .deps/sigar_port.Tpo .deps/sigar_port.Po
/bin/bash ./libtool --tag=CC --mode=link gcc -g -O2 -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -lsigar -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -o sigar_port sigar_port.o
libtool: link: gcc -g -O2 -o sigar_port sigar_port.o -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libsigar.so -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking how to print strings... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb'
make[5]: Nothing to be done for `install-exec-am'.
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/portsigar'
make[2]: Nothing to be done for `install-data-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
printf
checking whether __SUNPRO_C is declared... checking for a sed that does not truncate output... test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/ebin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/ebin"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/include" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/include"
/bin/sed
/bin/bash ./libtool --mode=install /usr/bin/install -c sigar_port '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/install -c -m 644 erl_diag.beam couch.app couch.beam couch_api_wrap.beam couch_api_wrap_httpc.beam couch_app.beam couch_auth_cache.beam couch_btree.beam couch_btree_copy.beam couch_changes.beam couch_compaction_daemon.beam couch_compress.beam couch_compress_types.beam couch_config.beam couch_config_writer.beam couch_db.beam couch_db_update_notifier.beam couch_db_update_notifier_sup.beam couch_doc.beam couch_drv.beam couch_ejson_compare.beam couch_event_sup.beam couch_external_manager.beam couch_external_server.beam couch_file.beam couch_file_write_guard.beam couch_db_frontend.beam couch_httpd.beam couch_httpd_db.beam couch_httpd_auth.beam couch_httpd_oauth.beam couch_httpd_external.beam couch_httpd_view.beam couch_httpd_misc_handlers.beam couch_httpd_replicator.beam couch_httpd_stats_handlers.beam couch_httpd_vhost.beam couch_log.beam couch_access_log.beam couch_native_process.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/l /usr/bin/install -c -m 644 couch_api_wrap.hrl couch_db.hrl couch_js_functions.hrl couch_replicator.hrl couch_view_merger.hrl couch_index_merger.hrl '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/include'
ib/couch-1.2.0a-1470995-git/ebin'
/usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/install -c -m 644 couch_os_daemons.beam couch_os_process.beam couch_primary_sup.beam couch_query_servers.beam couch_ref_counter.beam couch_rep_sup.beam couch_replication_manager.beam couch_replication_notifier.beam couch_replicator.beam couch_replicator_worker.beam couch_replicator_utils.beam couch_secondary_sup.beam couch_server.beam couch_server_sup.beam couch_stats_aggregator.beam couch_stats_collector.beam couch_task_status.beam couch_util.beam couch_uuids.beam couch_view.beam couch_view_compactor.beam couch_view_updater.beam couch_view_group.beam couch_view_mapreduce.beam couch_db_updater.beam couch_work_queue.beam json_stream_parse.beam couch_httpd_view_merger.beam couch_index_merger.beam couch_view_merger.beam couch_view_merger_queue.beam couch_skew.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch-1.2.0a-1470995-git/ebin'
libtool: install: /usr/bin/install -c sigar_port /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/sigar_port
/usr/bin/nm -B
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb'
checking the name lister (/usr/bin/nm -B) interface... make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couchdb'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/portsigar'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/portsigar'
Making install in ejson
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/ejson'
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT ejson.lo -MD -MP -MF .deps/ejson.Tpo -c -o ejson.lo ejson.c
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT decode.lo -MD -MP -MF .deps/decode.Tpo -c -o decode.lo decode.c
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT encode.lo -MD -MP -MF .deps/encode.Tpo -c -o encode.lo encode.c
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_alloc.lo -MD -MP -MF .deps/yajl_alloc.Tpo -c -o yajl_alloc.lo `test -f 'yajl/yajl_alloc.c' || echo './'`yajl/yajl_alloc.c
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_buf.lo -MD -MP -MF .deps/yajl_buf.Tpo -c -o yajl_buf.lo `test -f 'yajl/yajl_buf.c' || echo './'`yajl/yajl_buf.c
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl.lo -MD -MP -MF .deps/yajl.Tpo -c -o yajl.lo `test -f 'yajl/yajl.c' || echo './'`yajl/yajl.c
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_encode.lo -MD -MP -MF .deps/yajl_encode.Tpo -c -o yajl_encode.lo `test -f 'yajl/yajl_encode.c' || echo './'`yajl/yajl_encode.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT encode.lo -MD -MP -MF .deps/encode.Tpo -c encode.c -fPIC -DPIC -o .libs/encode.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT decode.lo -MD -MP -MF .deps/decode.Tpo -c decode.c -fPIC -DPIC -o .libs/decode.o
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_gen.lo -MD -MP -MF .deps/yajl_gen.Tpo -c -o yajl_gen.lo `test -f 'yajl/yajl_gen.c' || echo './'`yajl/yajl_gen.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_alloc.lo -MD -MP -MF .deps/yajl_alloc.Tpo -c yajl/yajl_alloc.c -fPIC -DPIC -o .libs/yajl_alloc.o
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_lex.lo -MD -MP -MF .deps/yajl_lex.Tpo -c -o yajl_lex.lo `test -f 'yajl/yajl_lex.c' || echo './'`yajl/yajl_lex.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_buf.lo -MD -MP -MF .deps/yajl_buf.Tpo -c yajl/yajl_buf.c -fPIC -DPIC -o .libs/yajl_buf.o
/bin/bash ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_parser.lo -MD -MP -MF .deps/yajl_parser.Tpo -c -o yajl_parser.lo `test -f 'yajl/yajl_parser.c' || echo './'`yajl/yajl_parser.c
cp ejson.app.in ejson.app
/usr/local/bin/erlc +debug_info -Werror ejson.erl
/usr/local/bin/erlc +debug_info -Werror mochijson2.erl
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT ejson.lo -MD -MP -MF .deps/ejson.Tpo -c ejson.c -fPIC -DPIC -o .libs/ejson.o
/usr/local/bin/erlc +debug_info -Werror mochinum.erl
no
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_encode.lo -MD -MP -MF .deps/yajl_encode.Tpo -c yajl/yajl_encode.c -fPIC -DPIC -o .libs/yajl_encode.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl.lo -MD -MP -MF .deps/yajl.Tpo -c yajl/yajl.c -fPIC -DPIC -o .libs/yajl.o
checking whether __GNUC__ is declared... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_gen.lo -MD -MP -MF .deps/yajl_gen.Tpo -c yajl/yajl_gen.c -fPIC -DPIC -o .libs/yajl_gen.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_lex.lo -MD -MP -MF .deps/yajl_lex.Tpo -c yajl/yajl_lex.c -fPIC -DPIC -o .libs/yajl_lex.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT yajl_parser.lo -MD -MP -MF .deps/yajl_parser.Tpo -c yajl/yajl_parser.c -fPIC -DPIC -o .libs/yajl_parser.o
encode.c: In function 'final_encode':
encode.c:148:17: warning: incompatible implicit declaration of built-in function 'snprintf' [enabled by default]
3458764513820540925
checking whether the shell understands some XSI constructs... mv -f .deps/yajl_alloc.Tpo .deps/yajl_alloc.Plo
yes
checking whether the shell understands "+="... mv -f .deps/ejson.Tpo .deps/ejson.Plo
yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... mv -f .deps/yajl_buf.Tpo .deps/yajl_buf.Plo
mv -f .deps/encode.Tpo .deps/encode.Plo
mv -f .deps/yajl.Tpo .deps/yajl.Plo
yes
checking atomic.h usability... yes
@
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... mv -f .deps/yajl_encode.Tpo .deps/yajl_encode.Plo
mv -f .deps/decode.Tpo .deps/decode.Plo
yes
checking for style of include used by make... GNU
checking for gcc... gcc
mv -f .deps/yajl_parser.Tpo .deps/yajl_parser.Plo
mv -f .deps/yajl_lex.Tpo .deps/yajl_lex.Plo
no
checking atomic.h presence... checking whether the C compiler works... mv -f .deps/yajl_gen.Tpo .deps/yajl_gen.Plo
no
checking for atomic.h... no
checking memcached/engine.h usability... /bin/bash ../../libtool --tag=CC --mode=link gcc -g -O2 -module -avoid-version -lv8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -lm -o ejson.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/priv ejson.lo decode.lo encode.lo yajl_alloc.lo yajl_buf.lo yajl.lo yajl_encode.lo yajl_gen.lo yajl_lex.lo yajl_parser.lo -L/usr/local/lib -L/opt/local/lib -lcrypt
ok
checking for sysroot... no
yes
checking memcached/engine.h presence... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... yes
checking for memcached/engine.h... yes
checking for library containing pthread_mutex_init... libtool: link: gcc -shared -fPIC -DPIC .libs/ejson.o .libs/decode.o .libs/encode.o .libs/yajl_alloc.o .libs/yajl_buf.o .libs/yajl.o .libs/yajl_encode.o .libs/yajl_gen.o .libs/yajl_lex.o .libs/yajl_parser.o -lv8 -L/usr/local/lib -L/opt/local/lib -lm -lcrypt -O2 -Wl,-soname -Wl,ejson.so -o .libs/ejson.so

checking whether we are cross compiling... yes
checking for objdir... .libs
none required
checking for library containing dlopen... no
checking for suffix of object files... libtool: link: ( cd ".libs" && rm -f "ejson.la" && ln -s "../ejson.la" "ejson.la" )
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/ejson'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/ebin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/ebin"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/priv" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/priv"
/bin/bash ../../libtool --mode=install /usr/bin/install -c ejson.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/priv'
/usr/bin/install -c -m 644 ejson.app ejson.beam mochijson2.beam mochinum.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/ebin'
o
checking whether we are using the GNU C compiler... libtool: install: /usr/bin/install -c .libs/ejson.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.so
libtool: install: /usr/bin/install -c .libs/ejson.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/priv/ejson.la
yes
checking whether gcc accepts -g... checking if gcc supports -fno-rtti -fno-exceptions... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/priv
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/ejson-0.1.0/priv

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/ejson'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/ejson'
Making install in erlang-oauth
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/erlang-oauth'
cp oauth.app.in oauth.app
/usr/local/bin/erlc +debug_info -Werror oauth.erl
/usr/local/bin/erlc +debug_info -Werror oauth_hmac_sha1.erl
/usr/local/bin/erlc +debug_info -Werror oauth_http.erl
/usr/local/bin/erlc +debug_info -Werror oauth_plaintext.erl
yes
checking for gcc option to accept ISO C89... /usr/local/bin/erlc +debug_info -Werror oauth_unix.erl
/usr/local/bin/erlc +debug_info -Werror oauth_uri.erl
no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... -ldl
checking for library containing log... none needed
checking dependency style of gcc... yes
checking if gcc static flag -static works... gcc3
checking for isainfo... no
checking for g++... g++
-lm
yes
checking if gcc supports -c -o file.o... checking whether we are using the GNU C++ compiler... configure: updating cache config.cache
configure: creating ./config.status
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/erlang-oauth'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/erlang-oauth/ebin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/erlang-oauth/ebin"
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... /usr/bin/install -c -m 644 oauth.app oauth.beam oauth_hmac_sha1.beam oauth_http.beam oauth_plaintext.beam oauth_unix.beam oauth_uri.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/erlang-oauth/ebin'
yes
checking whether g++ accepts -g... make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/erlang-oauth'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/erlang-oauth'
Making install in etap
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/etap'
/usr/local/bin/erlc +debug_info -Werror etap.erl
/usr/local/bin/erlc +debug_info -Werror etap_application.erl
/usr/local/bin/erlc +debug_info -Werror etap_can.erl
/usr/local/bin/erlc +debug_info -Werror etap_exception.erl
/usr/local/bin/erlc +debug_info -Werror etap_process.erl
/usr/local/bin/erlc +debug_info -Werror etap_report.erl
/usr/local/bin/erlc +debug_info -Werror etap_request.erl
/usr/local/bin/erlc +debug_info -Werror etap_string.erl
/usr/local/bin/erlc +debug_info -Werror etap_web.erl
yes
checking whether -lc should be explicitly linked in... yes
checking dependency style of g++... no
checking dynamic linker characteristics... gcc3
checking how to run the C preprocessor... gcc -E
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking how to run the C++ preprocessor... g++ -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/etap'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/etap/ebin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/etap/ebin"
/usr/bin/install -c -m 644 etap.beam etap_application.beam etap_can.beam etap_exception.beam etap_process.beam etap_report.beam etap_request.beam etap_string.beam etap_web.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/etap/ebin'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/etap'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/etap'
Making install in lhttpc
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/lhttpc'
cp lhttpc.app.src lhttpc.app
/usr/local/bin/erlc +debug_info -Werror lhttpc.erl
/usr/local/bin/erlc +debug_info -Werror lhttpc_client.erl
/usr/local/bin/erlc +debug_info -Werror lhttpc_lib.erl
/usr/local/bin/erlc +debug_info -Werror lhttpc_manager.erl
/usr/local/bin/erlc +debug_info -Werror lhttpc_sock.erl
/usr/local/bin/erlc +debug_info -Werror lhttpc_sup.erl
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for sys/types.h... yes
checking for sys/stat.h... checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking for stdlib.h... yes
checking if g++ static flag -static works... yes
checking for string.h... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/lhttpc'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/lhttpc-1.3/ebin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/lhttpc-1.3/ebin"
/usr/bin/install -c -m 644 lhttpc.app lhttpc.beam lhttpc_client.beam lhttpc_lib.beam lhttpc_manager.beam lhttpc_sock.beam lhttpc_sup.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/lhttpc-1.3/ebin'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/lhttpc'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/lhttpc'
Making install in mochiweb
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/mochiweb'
/usr/local/bin/erlc +debug_info -Werror mochifmt.erl
/usr/local/bin/erlc +debug_info -Werror mochifmt_records.erl
/usr/local/bin/erlc +debug_info -Werror mochifmt_std.erl
/usr/local/bin/erlc +debug_info -Werror mochiglobal.erl
/usr/local/bin/erlc +debug_info -Werror mochihex.erl
/usr/local/bin/erlc +debug_info -Werror mochijson.erl
yes
/usr/local/bin/erlc +debug_info -Werror mochijson2.erl
/usr/local/bin/erlc +debug_info -Werror mochilists.erl
/usr/local/bin/erlc +debug_info -Werror mochilogfile2.erl
/usr/local/bin/erlc +debug_info -Werror mochinum.erl
/usr/local/bin/erlc +debug_info -Werror mochitemp.erl
/usr/local/bin/erlc +debug_info -Werror mochiutf8.erl
cp mochiweb.app.in mochiweb.app
yes
checking if g++ supports -c -o file.o... checking for memory.h... /usr/local/bin/erlc +debug_info -Werror mochiweb.erl
yes
checking for strings.h... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for simple visibility declarations... yes
yes
checking for inttypes.h... /usr/local/bin/erlc +debug_info -Werror mochiweb_acceptor.erl
checking how to create a ustar tar archive... /usr/local/bin/erlc +debug_info -Werror mochiweb_app.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_charref.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_cookies.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_cover.erl
yes
gnutar
checking whether make supports nested variables... /usr/local/bin/erlc +debug_info -Werror mochiweb_echo.erl
yes
checking for stdint.h... /usr/local/bin/erlc +debug_info -Werror mochiweb_headers.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_html.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_http.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_io.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_mime.erl
checking whether __SUNPRO_C is declared... /usr/local/bin/erlc +debug_info -Werror mochiweb_multipart.erl
yes
config.status: creating Makefile
checking for unistd.h... no
config.status: creating management/python_wrapper
checking whether __ICC is declared... yes
config.status: creating config.h
checking minix/config.h usability... no
checking for ISO C++ 98 include files... /usr/local/bin/erlc +debug_info -Werror mochiweb_request.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_response.erl
config.status: executing depfiles commands
/usr/local/bin/erlc +debug_info -Werror mochiweb_skel.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_socket.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_socket_server.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_sup.erl
/usr/local/bin/erlc +debug_info -Werror mochiweb_util.erl
/usr/local/bin/erlc +debug_info -Werror reloader.erl
config.status: executing libtool commands
no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether gcc and cc understand -c and -o together... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/mochiweb'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin"
/usr/bin/install -c -m 644 mochifmt.beam mochifmt_records.beam mochifmt_std.beam mochiglobal.beam mochihex.beam mochijson.beam mochijson2.beam mochilists.beam mochilogfile2.beam mochinum.beam mochitemp.beam mochiutf8.beam mochiweb.app mochiweb.beam mochiweb_acceptor.beam mochiweb_app.beam mochiweb_charref.beam mochiweb_cookies.beam mochiweb_cover.beam mochiweb_echo.beam mochiweb_headers.beam mochiweb_html.beam mochiweb_http.beam mochiweb_io.beam mochiweb_mime.beam mochiweb_multipart.beam mochiweb_request.beam mochiweb_response.beam mochiweb_skel.beam mochiweb_socket.beam mochiweb_socket_server.beam mochiweb_sup.beam mochiweb_util.beam reloader.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/mochiweb-1.4.1/ebin'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/mochiweb'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/mochiweb'
Making install in snappy
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/snappy'
/bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT snappy_nif.lo -MD -MP -MF .deps/snappy_nif.Tpo -c -o snappy_nif.lo snappy_nif.cc
/bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT snappy.lo -MD -MP -MF .deps/snappy.Tpo -c -o snappy.lo `test -f 'snappy-1.0.4/snappy.cc' || echo './'`snappy-1.0.4/snappy.cc
/bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT snappy-sinksource.lo -MD -MP -MF .deps/snappy-sinksource.Tpo -c -o snappy-sinksource.lo `test -f 'snappy-1.0.4/snappy-sinksource.cc' || echo './'`snappy-1.0.4/snappy-sinksource.cc
/bin/bash ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT snappy-stubs-internal.lo -MD -MP -MF .deps/snappy-stubs-internal.Tpo -c -o snappy-stubs-internal.lo `test -f 'snappy-1.0.4/snappy-stubs-internal.cc' || echo './'`snappy-1.0.4/snappy-stubs-internal.cc
cp snappy.app.in snappy.app
/usr/local/bin/erlc +debug_info -Werror snappy.erl
yes
checking how to print strings... yes
checking the location of cstdint... printf
checking for a sed that does not truncate output... libtool: compile: g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT snappy-sinksource.lo -MD -MP -MF .deps/snappy-sinksource.Tpo -c snappy-1.0.4/snappy-sinksource.cc -fPIC -DPIC -o .libs/snappy-sinksource.o
/bin/sed
checking for fgrep... libtool: compile: g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT snappy_nif.lo -MD -MP -MF .deps/snappy_nif.Tpo -c snappy_nif.cc -fPIC -DPIC -o .libs/snappy_nif.o
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT snappy.lo -MD -MP -MF .deps/snappy.Tpo -c snappy-1.0.4/snappy.cc -fPIC -DPIC -o .libs/snappy.o
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -g -O2 -MT snappy-stubs-internal.lo -MD -MP -MF .deps/snappy-stubs-internal.Tpo -c snappy-1.0.4/snappy-stubs-internal.cc -fPIC -DPIC -o .libs/snappy-stubs-internal.o
/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... <tr1/cstdint>
/usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... checking the location of cinttypes... (rm -rf tmp/bucket_engine; mkdir -p tmp/bucket_engine)
make -C bucket_engine install
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/bucket_engine'
cp management/python_wrapper management/collectd
cp management/python_wrapper management/collectd_memcached_buckets
make install-am
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/bucket_engine'
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT bucket_engine.lo -MD -MP -MF .deps/bucket_engine.Tpo -c -o bucket_engine.lo bucket_engine.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT topkeys.lo -MD -MP -MF .deps/topkeys.Tpo -c -o topkeys.lo topkeys.c
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT genhash.lo -MD -MP -MF .deps/genhash.Tpo -c -o genhash.lo genhash.c
mv -f .deps/snappy-sinksource.Tpo .deps/snappy-sinksource.Plo
/bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT mock_engine.lo -MD -MP -MF .deps/mock_engine.Tpo -c -o mock_engine.lo mock_engine.c
gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT testapp.o -MD -MP -MF .deps/testapp.Tpo -c -o testapp.o testapp.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT bucket_engine.lo -MD -MP -MF .deps/bucket_engine.Tpo -c bucket_engine.c -fPIC -DPIC -o .libs/bucket_engine.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT topkeys.lo -MD -MP -MF .deps/topkeys.Tpo -c topkeys.c -fPIC -DPIC -o .libs/topkeys.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT genhash.lo -MD -MP -MF .deps/genhash.Tpo -c genhash.c -fPIC -DPIC -o .libs/genhash.o
BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... <tr1/cinttypes>
checking "C Compiler version--yes"... libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT mock_engine.lo -MD -MP -MF .deps/mock_engine.Tpo -c mock_engine.c -fPIC -DPIC -o .libs/mock_engine.o
"gcc (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
checking "C++ Compiler version"... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... "g++ (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
checking whether byte ordering is bigendian... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... testapp.c: In function ‘test_get_tap_iterator’:
testapp.c:1444:5: warning: passing argument 1 of ‘mock_disconnect’ discards ‘const’ qualifier from pointer target type [enabled by default]
testapp.c:166:13: note: expected ‘struct connstruct *’ but argument is of type ‘const void *’
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT topkeys.lo -MD -MP -MF .deps/topkeys.Tpo -c topkeys.c -o topkeys.o >/dev/null 2>&1
@
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT genhash.lo -MD -MP -MF .deps/genhash.Tpo -c genhash.c -o genhash.o >/dev/null 2>&1
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT mock_engine.lo -MD -MP -MF .deps/mock_engine.Tpo -c mock_engine.c -o mock_engine.o >/dev/null 2>&1
no
checking for an ANSI C-conforming const... yes
checking for inline... mv -f .deps/topkeys.Tpo .deps/topkeys.Plo
inline
checking for working volatile... mv -f .deps/snappy-stubs-internal.Tpo .deps/snappy-stubs-internal.Plo
ok
checking for sysroot... no
mv -f .deps/snappy_nif.Tpo .deps/snappy_nif.Plo
yes
checking for C/C++ restrict keyword... mv -f .deps/mock_engine.Tpo .deps/mock_engine.Plo
mv -f .deps/genhash.Tpo .deps/genhash.Plo
/bin/bash ./libtool --tag=CC --mode=link gcc -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -lpthread -fvisibility=hidden -o libgenhash.la genhash.lo -lm -ldl
checking for mt... mt
checking if mt is a manifest tool... __restrict
checking whether time.h and sys/time.h may both be included... no
checking for dlfcn.h... yes
checking whether struct tm is in sys/time.h or time.h... libtool: link: ar cru .libs/libgenhash.a .libs/genhash.o
libtool: link: ranlib .libs/libgenhash.a
yes
checking for objdir... libtool: link: ( cd ".libs" && rm -f "libgenhash.la" && ln -s "../libgenhash.la" "libgenhash.la" )
.libs
/bin/bash ./libtool --tag=CC --mode=link gcc -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -module -dynamic -rpath /nowhere -o mock_engine.la mock_engine.lo libgenhash.la -lm -ldl
time.h
checking for size_t... libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../memcached/include -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -MT bucket_engine.lo -MD -MP -MF .deps/bucket_engine.Tpo -c bucket_engine.c -o bucket_engine.o >/dev/null 2>&1
mv -f .deps/snappy.Tpo .deps/snappy.Plo
/bin/bash ../../libtool --tag=CXX --mode=link g++ -g -O2 -module -avoid-version -lv8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -lm -o snappy_nif.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/priv snappy_nif.lo snappy.lo snappy-sinksource.lo snappy-stubs-internal.lo -L/usr/local/lib -L/opt/local/lib -lcrypt
libtool: link: gcc -shared -fPIC -DPIC .libs/mock_engine.o -Wl,--whole-archive ./.libs/libgenhash.a -Wl,--no-whole-archive -lpthread -lm -ldl -pthread -O3 -O2 -pthread -Wl,-soname -Wl,mock_engine.so.0 -o .libs/mock_engine.so.0.0.0
yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... mv -f .deps/testapp.Tpo .deps/testapp.Po
checking if gcc supports -fno-rtti -fno-exceptions... libtool: link: (cd ".libs" && rm -f "mock_engine.so.0" && ln -s "mock_engine.so.0.0.0" "mock_engine.so.0")
libtool: link: (cd ".libs" && rm -f "mock_engine.so" && ln -s "mock_engine.so.0.0.0" "mock_engine.so")
no
no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... checking for library containing clock_gettime... libtool: link: (cd .libs/mock_engine.lax/libgenhash.a && ar x "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/bucket_engine/./.libs/libgenhash.a")
libtool: link: ar cru .libs/mock_engine.a mock_engine.o .libs/mock_engine.lax/libgenhash.a/genhash.o
libtool: link: g++ -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.6/crtbeginS.o .libs/snappy_nif.o .libs/snappy.o .libs/snappy-sinksource.o .libs/snappy-stubs-internal.o -lv8 -L/usr/local/lib -L/opt/local/lib -lcrypt -L/usr/lib/gcc/x86_64-linux-gnu/4.6 -L/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.6/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/4.6/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crtn.o -O2 -Wl,-soname -Wl,snappy_nif.so -o .libs/snappy_nif.so
libtool: link: ranlib .libs/mock_engine.a
libtool: link: rm -fr .libs/mock_engine.lax
yes
checking if gcc static flag -static works... libtool: link: ( cd ".libs" && rm -f "mock_engine.la" && ln -s "../mock_engine.la" "mock_engine.la" )
libtool: link: ( cd ".libs" && rm -f "snappy_nif.la" && ln -s "../snappy_nif.la" "snappy_nif.la" )
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/snappy'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/ebin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/ebin"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/priv" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/priv"
/usr/bin/install -c -m 644 snappy.app snappy.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/ebin'
/bin/bash ../../libtool --mode=install /usr/bin/install -c snappy_nif.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/priv'
-lrt
checking sys/socket.h usability... libtool: install: /usr/bin/install -c .libs/snappy_nif.so /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/priv/snappy_nif.so
yes
checking if gcc supports -c -o file.o... libtool: install: /usr/bin/install -c .libs/snappy_nif.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/priv/snappy_nif.la
yes
checking sys/socket.h presence... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/priv
yes
checking whether -lc should be explicitly linked in... ----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/snappy-1.0.4/priv

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/snappy'
yes
checking for sys/socket.h... yes
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/snappy'
Making install in couch_set_view
checking size of off_t... make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couch_set_view'
sed -e "s|%abs_top_srcdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|g" \
-e "s|%abs_top_builddir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|g" > \
test/run < test/run.tpl
chmod +x test/run
sed -e "s|%version%|1.2.0a-1470995-git|g" \
< src/couch_set_view.app.src > ebin/couch_set_view.app
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o ebin/ +debug_info -Werror src/couch_set_view.erl;
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o ebin/ +debug_info -Werror src/couch_set_view_http.erl;
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o ebin/ +debug_info -Werror src/couch_set_view_group.erl;
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o ebin/ +debug_info -Werror src/couch_set_view_updater.erl;
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o ebin/ +debug_info -Werror src/couch_set_view_mapreduce.erl;
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o ebin/ +debug_info -Werror src/couch_set_view_compactor.erl;
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o ebin/ +debug_info -Werror src/couch_set_view_util.erl;
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o ebin/ +debug_info -Werror src/couch_db_set.erl;
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o test/ +debug_info -Werror test/couch_set_view_test_util.erl;
/usr/local/bin/erlc -Wall -I../../src -I../../src/couchdb \
-o ebin/ +debug_info -Werror src/couch_index_barrier.erl;
no
checking dynamic linker characteristics... 8
checking size of size_t... mv -f .deps/bucket_engine.Tpo .deps/bucket_engine.Plo
/bin/bash ./libtool --tag=CC --mode=link gcc -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -module -dynamic -R '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached' -o bucket_engine.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached bucket_engine.lo topkeys.lo libgenhash.la -lm -ldl
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... 8
yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking size of long long... checking how to run the C++ preprocessor... 8
libtool: link: gcc -shared -fPIC -DPIC .libs/bucket_engine.o .libs/topkeys.o -Wl,--whole-archive ./.libs/libgenhash.a -Wl,--no-whole-archive -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached -lpthread -lm -ldl -pthread -O3 -O2 -pthread -Wl,-soname -Wl,bucket_engine.so.0 -o .libs/bucket_engine.so.0.0.0
g++ -E
checking if time_t is unsigned... libtool: link: (cd ".libs" && rm -f "bucket_engine.so.0" && ln -s "bucket_engine.so.0.0.0" "bucket_engine.so.0")
libtool: link: (cd ".libs" && rm -f "bucket_engine.so" && ln -s "bucket_engine.so.0.0.0" "bucket_engine.so")
libtool: link: (cd .libs/bucket_engine.lax/libgenhash.a && ar x "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/bucket_engine/./.libs/libgenhash.a")
no
checking if system defines RUSAGE_THREAD... libtool: link: ar cru .libs/bucket_engine.a bucket_engine.o topkeys.o .libs/bucket_engine.lax/libgenhash.a/genhash.o
libtool: link: ranlib .libs/bucket_engine.a
libtool: link: rm -fr .libs/bucket_engine.lax
libtool: link: ( cd ".libs" && rm -f "bucket_engine.la" && ln -s "../bucket_engine.la" "bucket_engine.la" )
/bin/bash ./libtool --tag=CC --mode=link gcc -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -lpthread -fvisibility=hidden -o testapp testapp.o libgenhash.la -lm -ldl
yes
checking for cos in -lm... libtool: link: gcc -pthread -pipe -D_THREAD_SAFE -std=gnu99 -O3 -g -O2 -fvisibility=hidden -o testapp testapp.o ./.libs/libgenhash.a -lpthread -lm -ldl -pthread
yes
checking for setsockopt... checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/bucket_engine'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/bucket_engine" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/bucket_engine"
/usr/bin/install -c management/collectd management/collectd_memcached_buckets '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python"
/usr/bin/install -c management/mc_bin_client.py management/memcacheConstants.py management/collectd.py management/collectd_memcached_buckets.py management/types.db '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/bucket_engine'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached"
yes
checking for bind... /usr/bin/install -c -m 644 management/mc_bin_client.py management/memcacheConstants.py management/types.db '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python'
/bin/bash ./libtool --mode=install /usr/bin/install -c bucket_engine.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached'
/usr/bin/install -c management/collectd.py management/collectd_memcached_buckets.py '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python'
libtool: install: /usr/bin/install -c .libs/bucket_engine.so.0.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/bucket_engine.so.0.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f bucket_engine.so.0.0.0 bucket_engine.so.0 || { rm -f bucket_engine.so.0 && ln -s bucket_engine.so.0.0.0 bucket_engine.so.0; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f bucket_engine.so.0.0.0 bucket_engine.so || { rm -f bucket_engine.so && ln -s bucket_engine.so.0.0.0 bucket_engine.so; }; })
libtool: install: /usr/bin/install -c .libs/bucket_engine.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/bucket_engine.la
libtool: install: /usr/bin/install -c .libs/bucket_engine.a /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/bucket_engine.a
libtool: install: chmod 644 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/bucket_engine.a
libtool: install: ranlib /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/bucket_engine.a
yes
checking whether madvise is declared... checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/bucket_engine'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/bucket_engine'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/bucket_engine'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
no
checking whether the compiler provides atomic builtins... yes
checking if g++ static flag -static works... yes
checking assert.h usability... yes
checking assert.h presence... yes
checking for assert.h... yes
checking whether to enable assertions... yes
yes
checking if g++ supports -c -o file.o... checking whether it is safe to use -fdiagnostics-show-option... yes
checking whether it is safe to use -floop-parallelize-all... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
yes
checking whether it is safe to use -Wextra... checking whether make supports nested variables... yes
checking if GCC is recent enough... yes
checking whether it is safe to use -Wformat... yes
checking whether __SUNPRO_C is declared... yes
checking whether it is safe to use -Wconversion... yes
checking whether it is safe to use -Wconversion with htons... no
checking whether __ICC is declared... yes
checking whether it is safe to use -Wmissing-declarations from C++... no
checking for ISO C++ 98 include files... yes
checking whether it is safe to use -Wframe-larger-than... yes
checking whether it is safe to use -Wlogical-op... yes
checking whether it is safe to use -Wredundant-decls from C++... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couch_set_view'
make[4]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch_set_view-1.0.0/ebin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch_set_view-1.0.0/ebin"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch_set_view-1.0.0/include" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch_set_view-1.0.0/include"
/usr/bin/install -c -m 644 ebin/couch_set_view.app ebin/couch_set_view.beam ebin/couch_set_view_http.beam ebin/couch_set_view_group.beam ebin/couch_set_view_updater.beam ebin/couch_set_view_compactor.beam ebin/couch_set_view_util.beam ebin/couch_set_view_mapreduce.beam ebin/couch_db_set.beam ebin/couch_index_barrier.beam test/couch_set_view_test_util.beam '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch_set_view-1.0.0/ebin'
/usr/bin/install -c -m 644 include/couch_set_view.hrl '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/couchdb/erlang/lib/couch_set_view-1.0.0/include'
no
checking whether it is safe to use -Wattributes from C++... make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couch_set_view'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src/couch_set_view'
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src'
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/src'
Making install in share
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/share'
mkdir -p `dirname server/main.js`
mkdir -p `dirname server/main-coffee.js`
echo "// DO NOT EDIT THIS FILE BY HAND" > server/main.js
echo >> server/main.js
echo "// DO NOT EDIT THIS FILE BY HAND" > server/main-coffee.js
echo >> server/main-coffee.js
cat server/json2.js server/filter.js server/mimeparse.js server/render.js server/state.js server/util.js server/validate.js server/views.js server/loop.js >> server/main.js
cat server/json2.js server/filter.js server/mimeparse.js server/render.js server/state.js server/util.js server/validate.js server/views.js server/coffee-script.js server/loop.js >> server/main-coffee.js
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/share'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb"
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/server/'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script/test'
/usr/bin/install -c server/main.js server/main-coffee.js '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/server/'
/usr/bin/install -c -m 644 www/script/test/all_docs.js www/script/test/attachments.js www/script/test/attachments_multipart.js www/script/test/attachment_names.js www/script/test/attachment_paths.js www/script/test/attachment_ranges.js www/script/test/attachment_views.js www/script/test/auth_cache.js www/script/test/basics.js www/script/test/batch_save.js www/script/test/bulk_docs.js www/script/test/changes.js www/script/test/compact.js www/script/test/config.js www/script/test/conflicts.js www/script/test/content_negotiation.js www/script/test/cookie_auth.js www/script/test/copy_doc.js www/script/test/delayed_commits.js www/script/test/design_docs.js www/script/test/design_options.js www/script/test/design_paths.js www/script/test/erlang_views.js www/script/test/etags_head.js www/script/test/etags_views.js www/script/test/form_submit.js www/script/test/http.js www/script/test/invalid_docids.js www/script/test/jsonp.js www/script/test/large_docs.js www/script/test/list_views.js www/script/test/lorem.txt www/script/test/lorem_b64.txt www/script/test/lots_of_docs.js www/script/test/method_override.js www/script/test/multiple_rows.js www/script/test/oauth.js www/script/test/proxyauth.js www/script/test/purge.js www/script/test/reader_acl.js '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script/test'
no
checking whether it is safe to use -Wno-attributes... /bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www'
/usr/bin/install -c -m 644 www/config.html www/couch_tests.html www/custom_test.html www/database.html www/session.html www/document.html www/favicon.ico www/index.html www/replicator.html www/status.html www/verify_install.html www/_sidebar.html '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/dialog'
/usr/bin/install -c -m 644 www/dialog/_admin_party.html www/dialog/_change_password.html www/dialog/_compact_cleanup.html www/dialog/_create_admin.html www/dialog/_login.html www/dialog/_signup.html www/dialog/_create_database.html www/dialog/_create_config.html www/dialog/_delete_database.html www/dialog/_delete_document.html www/dialog/_database_security.html www/dialog/_share_test_reports.html www/dialog/_save_view_as.html www/dialog/_upload_attachment.html '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/dialog'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/style'
/usr/bin/install -c -m 644 www/style/jquery-ui-1.8.11.custom.css www/style/layout.css '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/style'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script/test'
/usr/bin/install -c -m 644 www/script/test/recreate_doc.js www/script/test/reduce.js www/script/test/reduce_builtin.js www/script/test/reduce_false.js www/script/test/reduce_false_temp.js www/script/test/replication.js www/script/test/replicator_db.js www/script/test/rev_stemming.js www/script/test/rewrite.js www/script/test/security_validation.js www/script/test/show_documents.js www/script/test/stats.js www/script/test/update_documents.js www/script/test/users_db.js www/script/test/utf8.js www/script/test/uuids.js www/script/test/view_collation.js www/script/test/view_collation_raw.js www/script/test/view_conflicts.js www/script/test/view_compaction.js www/script/test/view_errors.js www/script/test/view_include_docs.js www/script/test/view_multi_key_all_docs.js www/script/test/view_multi_key_design.js www/script/test/view_multi_key_temp.js www/script/test/view_offsets.js www/script/test/view_update_seq.js www/script/test/view_pagination.js www/script/test/view_sandboxing.js www/script/test/view_xml.js www/script/test/view_merging.js '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script/test'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/spec'
no
/usr/bin/install -c -m 644 www/spec/couch_js_class_methods_spec.js www/spec/couch_js_instance_methods_1_spec.js www/spec/couch_js_instance_methods_2_spec.js www/spec/couch_js_instance_methods_3_spec.js www/spec/custom_helpers.js www/spec/jquery_couch_js_class_methods_spec.js www/spec/jquery_couch_js_instance_methods_1_spec.js www/spec/jquery_couch_js_instance_methods_2_spec.js www/spec/jquery_couch_js_instance_methods_3_spec.js www/spec/run.html '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/spec'
checking for doxygen... no
checking for perl... /bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script/jspec'
perl
checking for dpkg-gensymbols... dpkg-gensymbols
/usr/bin/install -c -m 644 www/script/jspec/jspec.css www/script/jspec/jspec.jquery.js www/script/jspec/jspec.js www/script/jspec/jspec.xhr.js '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script/jspec'
checking for lcov... no
checking for genhtml... no
checking for sphinx-build... no
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script'
checking for working -pipe... /usr/bin/install -c -m 644 www/script/couch.js www/script/couch_tests.js www/script/couch_test_runner.js www/script/futon.browse.js www/script/futon.format.js www/script/futon.js www/script/jquery.couch.js www/script/jquery.dialog.js www/script/jquery.editinline.js www/script/jquery.form.js www/script/jquery.js www/script/jquery-ui-1.8.11.custom.min.js www/script/jquery.resizer.js www/script/jquery.suggest.js www/script/json2.js www/script/oauth.js www/script/sha1.js www/script/base64.js '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/script'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/image'
/usr/bin/install -c -m 644 www/image/add.png www/image/apply.gif www/image/bg.png www/image/cancel.gif www/image/compact.png www/image/delete-mini.png www/image/delete.png www/image/grippie.gif www/image/hgrad.gif www/image/key.png www/image/load.png www/image/logo.png www/image/order-asc.gif www/image/order-desc.gif www/image/path.gif www/image/progress.gif www/image/rarrow.png www/image/run-mini.png www/image/run.png www/image/running.png www/image/save.png www/image/sidebar-toggle.png www/image/spinner.gif www/image/spinner_33.gif www/image/spinner_6b.gif www/image/test_failure.gif www/image/test_success.gif www/image/thead-key.gif www/image/thead.gif www/image/toggle-collapse.gif www/image/toggle-expand.gif www/image/twisty.gif '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/couchdb/www/image'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/share'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/share'
Making install in test
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test'
Making install in bench
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/bench'
sed -e "s|%abs_top_srcdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|" \
-e "s|%abs_top_builddir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|" \
< run.tpl > run
chmod +x run
yes
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/bench'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/bench'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/bench'
Making install in etap
checking for library containing getopt_long... make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/etap'
gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/snappy/snappy-1.0.4 -D_XOPEN_SOURCE -I/usr/include/v8 -I/opt/local/include -I/usr/local/include/v8 -I/opt/local/include/v8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -D_BSD_SOURCE -g -O2 -MT test_cfg_register-test_cfg_register.o -MD -MP -MF .deps/test_cfg_register-test_cfg_register.Tpo -c -o test_cfg_register-test_cfg_register.o `test -f 'test_cfg_register.c' || echo './'`test_cfg_register.c
sed -e "s|%abs_top_srcdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|g" \
-e "s|%abs_top_builddir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|g" > \
run < run.tpl
/usr/local/bin/erlc test_util.erl
/usr/local/bin/erlc test_web.erl
chmod +x run
mv -f .deps/test_cfg_register-test_cfg_register.Tpo .deps/test_cfg_register-test_cfg_register.Po
/bin/bash ../../libtool --tag=CC --mode=link gcc -D_BSD_SOURCE -g -O2 -lv8 -L/usr/local/lib -L/opt/local/lib -I/usr/local/lib/erlang/usr/include -DXP_UNIX -lm -o test_cfg_register test_cfg_register-test_cfg_register.o -L/usr/local/lib -L/opt/local/lib -lcrypt
none required
checking for library containing gethostbyname... libtool: link: gcc -D_BSD_SOURCE -g -O2 -I/usr/local/lib/erlang/usr/include -DXP_UNIX -o test_cfg_register test_cfg_register-test_cfg_register.o -lv8 -L/usr/local/lib -L/opt/local/lib -lm -lcrypt
yes
checking memory usability... none required
checking for getline... yes
yes
checking memory presence... checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking for shared library run path origin... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/etap'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/etap'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/etap'
Making install in javascript
yes
checking for memory... yes
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/javascript'
sed -e "s|%abs_top_srcdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|" \
-e "s|%abs_top_builddir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|" \
< run.tpl > run
chmod +x run
checking tr1/memory usability... make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/javascript'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/javascript'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/javascript'
Making install in view_server
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/view_server'
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/view_server'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/view_server'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/view_server'
done
Making install in python
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python'
Making install in set_view
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python/set_view'
checking for libgtest... sed -e "s|%abs_top_srcdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|g" \
-e "s|%abs_top_builddir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb|g" > \
run.py < run.py.tpl
chmod +x run.py
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python/set_view'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python/set_view'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python/set_view'
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python'
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python'
make[5]: Nothing to be done for `install-exec-am'.
make[5]: Nothing to be done for `install-data-am'.
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test/python'
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test'
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/test'
Making install in var
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/var'
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/var'
make[3]: Nothing to be done for `install-exec-am'.
make install-data-hook
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/var'
if test ! "/bin/mkdir -p" = ""; then \
/bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/lib/couchdb"; \
/bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/log/couchdb"; \
/bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/run/couchdb"; \
else \
echo "WARNING: You may have to create these directories by hand."; \
mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/lib/couchdb"; \
mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/log/couchdb"; \
mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/run/couchdb"; \
fi
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/var'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/var'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/var'
Making install in utils
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/utils'
sed -e "s|%ERL%|/usr/local/bin/erl|g" \
-e "s|%ICU_CONFIG%|/usr/local/bin/icu-config|g" \
-e "s|%bindir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/bin|g" \
-e "s|%defaultini%|default_dev.ini|g" \
-e "s|%localini%|local_dev.ini|g" \
-e "s|%localerlanglibdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb\/src|g" \
-e "s|%localerlanglibargs%|\
-pa /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb\/src\/couchdb \
-pa /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb\/src\/ejson \
-pa /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb\/src\/erlang-oauth \
-pa /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb\/src\/lhttpc \
-pa /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb\/src\/mochiweb \
-pa /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb\/src\/mapreduce \
-pa /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb\/src\/snappy \
-pa /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb\/src\/couch_set_view|g" \
-e "s|%localconfdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/etc/couchdb|g" \
-e "s|%localstatelogdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/tmp/log|g" \
-e "s|%localstatelibdir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/tmp/lib|g" \
-e "s|%localstatedir%|/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/tmp|g" \
-e "s|%bug_uri%|https://issues.apache.org/jira/browse/COUCHDB|g" \
-e "s|%package_author_address%|dev@couchdb.apache.org|g" \
-e "s|%package_author_name%|The Apache Software Foundation|g" \
-e "s|%package_name%|Apache CouchDB|g" \
-e "s|%version%|1.2.0a-1470995-git|g" \
-e "s|%couchdb_command_name%|`echo couchdb | sed 's,x,x,'`|g" > \
run < ../bin/couchdb.tpl
no
chmod +x run
checking for libevent... make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/utils'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/utils'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb/utils'
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb'
gzip -9 < AUTHORS > AUTHORS.gz
gzip -9 < BUGS > BUGS.gz
gzip -9 < CHANGES > CHANGES.gz
gzip -9 < DEVELOPERS > DEVELOPERS.gz
gzip -9 < INSTALL > INSTALL.gz
gzip -9 < INSTALL.Unix > INSTALL.Unix.gz
gzip -9 < INSTALL.Windows > INSTALL.Windows.gz
gzip -9 < LICENSE > LICENSE.gz
gzip -9 < NEWS > NEWS.gz
gzip -9 < NOTICE > NOTICE.gz
gzip -9 < README > README.gz
gzip -9 < THANKS > THANKS.gz
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb'
make[3]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/doc/couchdb" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/doc/couchdb"
yes
checking tr1/memory presence... /usr/bin/install -c -m 644 AUTHORS.gz BUGS.gz CHANGES.gz DEVELOPERS.gz INSTALL.gz INSTALL.Unix.gz INSTALL.Windows.gz LICENSE.gz NEWS.gz NOTICE.gz README.gz THANKS.gz '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/doc/couchdb'
make install-data-hook
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb'

You have installed Apache CouchDB, time to relax.
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/couchdb'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
yes
checking for tr1/memory... yes
yes
checking how to link with libevent... -levent
checking for event_base_new... checking boost/shared_ptr.hpp usability... yes
checking for event_base_free... no
checking boost/shared_ptr.hpp presence... yes
checking for event_base_get_method... no
checking for boost/shared_ptr.hpp... no
checking the location of shared_ptr header file... yes
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for pthread_yield_np...
checking tr1/unordered_map usability... no
checking if pthread_yield takes zero arguments... yes
checking tr1/unordered_map presence... yes
checking for tr1/unordered_map... yes
yes
checking if pthread_yield takes one argument... checking boost/unordered_map.hpp usability... no
checking for pthread_attr_getstacksize... no
checking boost/unordered_map.hpp presence... yes
checking for pthread_attr_setprio... no
checking for boost/unordered_map.hpp... no
checking the location of unordered_map header file... no
checking for pthread_attr_setschedparam... yes
checking for pthread_attr_setstacksize... yes
checking for pthread_condattr_create... no
checking for pthread_getsequence_np... no
checking for pthread_key_delete... yes
checking for pthread_rwlock_rdlock... yes
checking for pthread_setprio... no
checking for pthread_setprio_np...
checking whether byte ordering is bigendian... no
checking for pthread_setschedparam... no
checking for an ANSI C-conforming const... yes
checking for pthread_sigmask... yes
checking for inline... inline
checking for working volatile... yes
yes
checking for C/C++ restrict keyword... checking for pthread_attr_create... __restrict
checking whether time.h and sys/time.h may both be included... yes
checking for size_t... no
checking for rwlock_init... no
checking args to pthread_getspecific... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking "C Compiler version--yes"... "gcc (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
checking "C++ Compiler version"... "g++ (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
POSIX
checking args to pthread_mutex_init... checking whether the -Werror option is usable... yes
checking for simple visibility declarations... POSIX
checking args to readdir_r... yes
checking whether to enable assertions... yes
checking assert.h usability... POSIX
checking style of sigwait... yes
checking assert.h presence... yes
checking for assert.h... yes
checking whether it is safe to use -fdiagnostics-show-option... yes
checking whether it is safe to use -Wconversion... POSIX
checking for pthread_attr_setscope... yes
checking whether it is safe to use -Wconversion with htons... yes
checking whether it is safe to use -Wextra... yes
checking if pthread_yield takes zero arguments... yes
checking whether it is safe to use -Wmissing-declarations from C++... yes
checking if pthread_yield takes 1 argument... yes
checking whether it is safe to use -Wlogical-op... no
checking cxxabi.h usability... yes
checking whether it is safe to use -Wredundant-decls from C++... yes
checking cxxabi.h presence... yes
checking for cxxabi.h... yes
checking checking for abi::__cxa_demangle... no
checking whether it is safe to use -Wattributes from C++... no
checking whether it is safe to use -Wno-attributes... no
./configure: line 18141: PANDORA_HAVE_BETTER_MALLOC: command not found
checking for doxygen... no
checking for perl... perl
checking for memory... (cached) yes
checking for tr1/memory... (cached) yes
checking for boost/shared_ptr.hpp... (cached) no
checking the location of shared_ptr header file... yes
checking for htonll... no
checking for working SO_SNDTIMEO... yes
checking for working SO_RCVTIMEO... yes
checking for supported struct padding... yes
checking for libinnodb... no
checking if libinnodb is recent enough... no
configure: WARNING: libmemcached requires at least version 1.0.6 of Embedded InnoDB
checking ucontext.h usability... yes
checking ucontext.h presence... yes
checking for ucontext.h... yes
checking for printstack... no
checking for dlfcn.h... (cached) yes
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking for backtrace...
checking for the pthreads library -lpthreads... yes
checking for backtrace_symbols_fd... no
checking whether pthreads work without any flags... yes
checking atomic.h usability... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -pthread... no
checking atomic.h presence... no
checking for atomic.h... no
checking for winsock2.h... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for pthread_yield_np... no
checking for poll.h... yes
checking for sys/wait.h... no
checking if pthread_yield takes zero arguments... yes
checking for fnmatch.h... yes
checking if pthread_yield takes one argument... no
checking for PTHREAD_MUTEX_ERRORCHECK... yes
checking if EWOULDBLOCK == EAGAIN... yes
checking for MSG_NOSIGNAL... yes
checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking for shared library run path origin... yes
checking for MSG_DONTWAIT... done
checking for libevent... yes
yes
checking how to link with libevent... -levent
checking for event_base_new... configure: updating cache config.cache
configure: creating ./config.status
yes
checking for event_base_free... yes
checking for event_base_get_method... yes
checking for libcouchstore... yes
checking how to link with libcouchstore... /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libcouchstore.so -lsnappy -lm -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
checking for libsqlite3... no
checking for htonll... no
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking mach/mach_time.h usability... config.status: creating Makefile
config.status: creating docs/Makefile
no
checking mach/mach_time.h presence... config.status: creating libhashkit/configure.h
config.status: creating libmemcached/configure.h
no
checking for mach/mach_time.h... no
checking poll.h usability... config.status: creating support/libmemcached.pc
config.status: creating support/libmemcached.spec
yes
checking poll.h presence... config.status: creating support/libmemcached-fc.spec
yes
checking for poll.h... yes
checking atomic.h usability... config.status: creating config.h
config.status: executing depfiles commands
no
checking atomic.h presence... no
checking for atomic.h... no
checking sysexits.h usability... yes
checking sysexits.h presence... yes
checking for sysexits.h... yes
checking for sys/socket.h... yes
checking for netinet/in.h... config.status: executing libtool commands
yes
checking for netinet/tcp.h... yes
checking for ws2tcpip.h... no
checking for winsock2.h... ---
Configuration summary for libmemcached version 0.47

* Installation prefix: /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
* System type: unknown-linux-gnu
* Host CPU: x86_64
* C Compiler: gcc (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3
* Assertions enabled: yes
* Debug enabled: no
* Warnings as failure: yes

---
*****
*
* WARNING: You are not generating any documentation.
* Please don't ship libmemcached to an end user
* without documentation...
*
*****
(rm -rf tmp/libmemcached; mkdir -p tmp/libmemcached)
make -C libmemcached install
no
checking for gethrtime... make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached'
make install-recursive
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached'
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached'
CC libmemcached/protocol/libmemcached_libmemcachedprotocol_la-binary_handler.lo
CC libmemcached/protocol/libmemcached_libmemcachedprotocol_la-ascii_handler.lo
CC libmemcached/protocol/libmemcached_libmemcachedprotocol_la-cache.lo
CC libmemcached/protocol/libmemcached_libmemcachedprotocol_la-pedantic.lo
CC libmemcached/protocol/libmemcached_libmemcachedprotocol_la-protocol_handler.lo
CC libmemcached/byteorder.lo
CC libmemcached/libmemcached_libmemcached_la-allocators.lo
CC libmemcached/libmemcached_libmemcached_la-analyze.lo
CC libmemcached/libmemcached_libmemcached_la-auto.lo
CC libmemcached/libmemcached_libmemcached_la-behavior.lo
CC libmemcached/libmemcached_libmemcached_la-connect.lo
CC libmemcached/libmemcached_libmemcached_la-delete.lo
no
checking for library containing clock_gettime... CC libmemcached/libmemcached_libmemcached_la-do.lo
CC libmemcached/libmemcached_libmemcached_la-dump.lo
CC libmemcached/libmemcached_libmemcached_la-fetch.lo
CC libmemcached/libmemcached_libmemcached_la-flush.lo
-lrt
checking for clock_gettime... CC libmemcached/libmemcached_libmemcached_la-flush_buffers.lo
CC libmemcached/libmemcached_libmemcached_la-get.lo
CC libmemcached/libmemcached_libmemcached_la-hash.lo
CC libmemcached/libmemcached_libmemcached_la-hosts.lo
CC libmemcached/libmemcached_libmemcached_la-io.lo
CC libmemcached/libmemcached_libmemcached_la-key.lo
CC libmemcached/libmemcached_libmemcached_la-memcached.lo
CC libmemcached/libmemcached_libmemcached_la-parse.lo
CC libmemcached/libmemcached_libmemcached_la-purge.lo
CC libmemcached/libmemcached_libmemcached_la-quit.lo
CC libmemcached/libmemcached_libmemcached_la-response.lo
CC libmemcached/libmemcached_libmemcached_la-result.lo
yes
checking for mach_absolute_time... CC libmemcached/libmemcached_libmemcached_la-server.lo
CC libmemcached/libmemcached_libmemcached_la-server_list.lo
CC libmemcached/libmemcached_libmemcached_la-stats.lo
no
checking for gettimeofday... CC libmemcached/libmemcached_libmemcached_la-storage.lo
CC libmemcached/libmemcached_libmemcached_la-strerror.lo
CC libmemcached/libmemcached_libmemcached_la-verbosity.lo
CC libmemcached/libmemcached_libmemcached_la-version.lo
CC libmemcached/libmemcached_libmemcachedcallbacks_la-callback.lo
CC libmemcached/string.lo
CC libhashkit/libhashkit_libhashkitinc_la-algorithm.lo
CC libhashkit/libhashkit_libhashkitinc_la-behavior.lo
yes
checking for getopt_long... CC libhashkit/libhashkit_libhashkitinc_la-crc32.lo
CC libhashkit/libhashkit_libhashkitinc_la-fnv.lo
CC libhashkit/libhashkit_libhashkitinc_la-digest.lo
CC libhashkit/libhashkit_libhashkitinc_la-function.lo
CC libhashkit/libhashkit_libhashkitinc_la-hashkit.lo
CC libhashkit/libhashkit_libhashkitinc_la-jenkins.lo
yes
CC libhashkit/libhashkit_libhashkitinc_la-ketama.lo
checking Intel __sync_XXX intrinsics work... CC libhashkit/libhashkit_libhashkitinc_la-md5.lo
CC libhashkit/libhashkit_libhashkitinc_la-one_at_a_time.lo
CC libhashkit/libhashkit_libhashkitinc_la-strerror.lo
CC libhashkit/libhashkit_libhashkitinc_la-murmur.lo
yes
checking for library containing dlopen... CC libmemcached/util/libmemcached_libmemcachedutil_la-ping.lo
CC libmemcached/util/libmemcached_libmemcachedutil_la-pool.lo
CC libmemcached/util/libmemcached_libmemcachedutil_la-version.lo
CC libhashkit/libhashkit_libhashkit_la-algorithm.lo
CC libhashkit/libhashkit_libhashkit_la-behavior.lo
CC libhashkit/libhashkit_libhashkit_la-crc32.lo
CC libhashkit/libhashkit_libhashkit_la-fnv.lo
CC libhashkit/libhashkit_libhashkit_la-digest.lo
CC libhashkit/libhashkit_libhashkit_la-function.lo
CC libhashkit/libhashkit_libhashkit_la-hashkit.lo
CC libhashkit/libhashkit_libhashkit_la-jenkins.lo
CC libhashkit/libhashkit_libhashkit_la-ketama.lo
CC libhashkit/libhashkit_libhashkit_la-md5.lo
CC libhashkit/libhashkit_libhashkit_la-one_at_a_time.lo
-ldl
checking memcached/engine.h usability... CC libhashkit/libhashkit_libhashkit_la-strerror.lo
CC libhashkit/libhashkit_libhashkit_la-murmur.lo
CC clients/utilities.lo
CC clients/generator.lo
CC tests/server.lo
CC clients/execute.lo
CC tests/test.lo
CC clients/memcapable.o
CC clients/memcat.o
CC clients/memcp.o
CC clients/memdump.o
CC clients/memerror.o
CC clients/memflush.o
yes
checking memcached/engine.h presence... CC clients/memrm.o
CC clients/memstat.o
yes
checking for memcached/engine.h... yes
CC clients/memslap.o
checking for engine_testapp... /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/engine_testapp
checking for library containing socket... CC clients/ms_conn.o
CC clients/ms_setting.o
CC clients/ms_sigsegv.o
CC clients/ms_stats.o
CC clients/ms_task.o
CC clients/ms_thread.o
CC tests/atomsmasher.o
none required
checking for library containing gethostbyname... CXX tests/tests_hashplus-hash_plus.o
CXX tests/tests_memplus-mem_plus.o
CC tests/start.o
CC tests/tests_testapp-mem_functions.o
CC tests/hashkit_functions.o
CXX tests/tests_testplus-plus.o
CC tests/tests_testudp-mem_udp.o
none required
checking for pod2man... /usr/bin/pod2man
checking for gtest... CC example/interface_v0.o
CC example/interface_v1.o
no
CC example/memcached_light.o
CC example/storage.o
CCLD libmemcached/libbyteorder.la
CCLD libmemcached/libmemcachedcallbacks.la
CCLD libmemcached/libmemcachedinternal.la
configure: updating cache config.cache
configure: creating ./config.status
CCLD libhashkit/libhashkitinc.la
CCLD libhashkit/libhashkit.la
CCLD clients/libutilities.la
CCLD clients/libgenexec.la
CCLD tests/libserver.la
CCLD tests/libtest.la
CCLD libmemcached/libmemcachedprotocol.la
CCLD libmemcached/libmemcached.la
CXXLD tests/hashplus
CCLD tests/testhashkit
CCLD example/memcached_light
CCLD libmemcached/libmemcachedutil.la
CCLD clients/memcapable
CCLD clients/memcat
CCLD clients/memcp
CCLD clients/memdump
CCLD clients/memerror
CCLD clients/memflush
CCLD clients/memrm
CCLD clients/memstat
CCLD clients/memslap
CXXLD tests/memplus
CCLD tests/atomsmasher
CCLD tests/startservers
CCLD tests/testudp
CXXLD tests/testplus
config.status: creating Makefile
config.status: creating wrapper/wrapper
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
CCLD tests/testapp
---
Configuration summary for ep-engine version 1.8.1r_597_gfd483b8

* Installation prefix: /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
* System type: unknown-linux-gnu
* Host CPU: x86_64
* C Compiler: gcc (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3
* C++ Compiler: g++ (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3
* Assertions enabled: yes
* Debug enabled: no
* Warnings as failure: yes
* Google test framework: no

---
(rm -rf tmp/ep-engine; mkdir -p tmp/ep-engine)
make -C ep-engine install
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ep-engine'
cp wrapper/wrapper wrapper/cbadm-online-restore
cp wrapper/wrapper wrapper/cbadm-online-update
cp wrapper/wrapper wrapper/cbadm-tap-registration
cp wrapper/wrapper wrapper/cbbackup
cp wrapper/wrapper wrapper/cbbackup-incremental
cp wrapper/wrapper wrapper/cbbackup-merge-incremental
cp wrapper/wrapper wrapper/cbdbconvert
cp wrapper/wrapper wrapper/cbdbmaint
cp wrapper/wrapper wrapper/cbdbupgrade
cp wrapper/wrapper wrapper/cbflushctl
cp wrapper/wrapper wrapper/cbrestore
cp wrapper/wrapper wrapper/cbstats
cp wrapper/wrapper wrapper/cbvbucketctl
CXX tools/gen_config-genconfig.o
CC tools/gen_config-cJSON.o
CXX tools/gen_code-gencode.o
CC tools/gen_code-cJSON.o
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib"
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libhashkit'
/usr/bin/install -c -m 644 support/libmemcached.pc '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/pkgconfig'
/usr/bin/install -c -m 644 libhashkit/algorithm.h libhashkit/behavior.h libhashkit/configure.h libhashkit/digest.h libhashkit/function.h libhashkit/hashkit.h libhashkit/strerror.h libhashkit/types.h libhashkit/visibility.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libhashkit'
/bin/bash ./libtool --mode=install /usr/bin/install -c libmemcached/libmemcachedprotocol.la libmemcached/libmemcached.la libmemcached/libmemcachedutil.la libhashkit/libhashkit.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libmemcached/util'
/usr/bin/install -c -m 644 libmemcached/util/ping.h libmemcached/util/pool.h libmemcached/util/version.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libmemcached/util'
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libmemcached/protocol'
libtool: install: /usr/bin/install -c libmemcached/.libs/libmemcachedprotocol.so.0.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libmemcachedprotocol.so.0.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libmemcachedprotocol.so.0.0.0 libmemcachedprotocol.so.0 || { rm -f libmemcachedprotocol.so.0 && ln -s libmemcachedprotocol.so.0.0.0 libmemcachedprotocol.so.0; }; })
/usr/bin/install -c -m 644 libmemcached/protocol/cache.h libmemcached/protocol/callback.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libmemcached/protocol'
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libmemcachedprotocol.so.0.0.0 libmemcachedprotocol.so || { rm -f libmemcachedprotocol.so && ln -s libmemcachedprotocol.so.0.0.0 libmemcachedprotocol.so; }; })
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libmemcached/memcached'
libtool: install: /usr/bin/install -c libmemcached/.libs/libmemcachedprotocol.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libmemcachedprotocol.la
libtool: install: /usr/bin/install -c libmemcached/.libs/libmemcached.so.6.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libmemcached.so.6.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libmemcached.so.6.0.0 libmemcached.so.6 || { rm -f libmemcached.so.6 && ln -s libmemcached.so.6.0.0 libmemcached.so.6; }; })
/usr/bin/install -c -m 644 libmemcached/memcached/protocol_binary.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libmemcached/memcached'
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libmemcached.so.6.0.0 libmemcached.so || { rm -f libmemcached.so && ln -s libmemcached.so.6.0.0 libmemcached.so; }; })
libtool: install: /usr/bin/install -c libmemcached/.libs/libmemcached.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libmemcached.la
libtool: install: warning: relinking `libmemcached/libmemcachedutil.la'
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached; /bin/bash /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached/libtool --silent --tag CC --mode=relink gcc -std=gnu99 -pthread -pipe -O2 -fvisibility=hidden -Werror -pedantic -Wall -Wswitch-enum -Wundef -Wshadow -fdiagnostics-show-option -floop-parallelize-all -Wstrict-aliasing -Wextra -Wformat -Wno-format-nonliteral -Wno-format-security -Wstrict-prototypes -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wcast-align -Wswitch-default -Wswitch-enum -Wwrite-strings -Wlogical-op -pthread -version-info 1:0:0 -L/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib -o libmemcached/libmemcachedutil.la -rpath /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib libmemcached/util/libmemcached_libmemcachedutil_la-ping.lo libmemcached/util/libmemcached_libmemcachedutil_la-pool.lo libmemcached/util/libmemcached_libmemcachedutil_la-version.lo libmemcached/libmemcached.la -lrt )
/bin/mkdir -p '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libmemcached'
/usr/bin/install -c -m 644 libmemcached/allocators.h libmemcached/analyze.h libmemcached/auto.h libmemcached/behavior.h libmemcached/callback.h libmemcached/configure.h libmemcached/constants.h libmemcached/delete.h libmemcached/dump.h libmemcached/exception.hpp libmemcached/fetch.h libmemcached/flush.h libmemcached/flush_buffers.h libmemcached/get.h libmemcached/hash.h libmemcached/memcached.h libmemcached/memcached.hpp libmemcached/parse.h libmemcached/platform.h libmemcached/protocol_handler.h libmemcached/quit.h libmemcached/result.h libmemcached/sasl.h libmemcached/server.h libmemcached/server_list.h libmemcached/stats.h libmemcached/storage.h libmemcached/strerror.h libmemcached/string.h libmemcached/types.h libmemcached/verbosity.h libmemcached/version.h libmemcached/visibility.h libmemcached/watchpoint.h libmemcached/memcached_util.h libmemcached/util.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/libmemcached'
libtool: install: /usr/bin/install -c libmemcached/.libs/libmemcachedutil.so.1.0.0T /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libmemcachedutil.so.1.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libmemcachedutil.so.1.0.0 libmemcachedutil.so.1 || { rm -f libmemcachedutil.so.1 && ln -s libmemcachedutil.so.1.0.0 libmemcachedutil.so.1; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libmemcachedutil.so.1.0.0 libmemcachedutil.so || { rm -f libmemcachedutil.so && ln -s libmemcachedutil.so.1.0.0 libmemcachedutil.so; }; })
libtool: install: /usr/bin/install -c libmemcached/.libs/libmemcachedutil.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libmemcachedutil.la
libtool: install: /usr/bin/install -c libhashkit/.libs/libhashkit.so.0.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libhashkit.so.0.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libhashkit.so.0.0.0 libhashkit.so.0 || { rm -f libhashkit.so.0 && ln -s libhashkit.so.0.0.0 libhashkit.so.0; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib && { ln -s -f libhashkit.so.0.0.0 libhashkit.so || { rm -f libhashkit.so && ln -s libhashkit.so.0.0.0 libhashkit.so; }; })
libtool: install: /usr/bin/install -c libhashkit/.libs/libhashkit.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libhashkit.la
CXXLD gen_code
libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
/bin/bash ./libtool --mode=install /usr/bin/install -c clients/memcapable clients/memcat clients/memcp clients/memdump clients/memerror clients/memflush clients/memrm clients/memstat clients/memslap '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
libtool: install: /usr/bin/install -c clients/.libs/memcapable /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memcapable
libtool: install: /usr/bin/install -c clients/.libs/memcat /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memcat
libtool: install: /usr/bin/install -c clients/.libs/memcp /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memcp
libtool: install: /usr/bin/install -c clients/.libs/memdump /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memdump
libtool: install: /usr/bin/install -c clients/.libs/memerror /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memerror
./gen_code -j docs/stats.json -h stats-info.h -c stats-info.c -f get_stats_info && touch .generated_stat-info
libtool: install: /usr/bin/install -c clients/.libs/memflush /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memflush
libtool: install: /usr/bin/install -c clients/.libs/memrm /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memrm
libtool: install: /usr/bin/install -c clients/.libs/memstat /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memstat
libtool: install: /usr/bin/install -c clients/.libs/memslap /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memslap
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
cd memcachetest && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --with-memcached=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memcached
cd moxi && ./configure -C --prefix=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install --enable-moxi-libvbucket --enable-moxi-libmemcached --without-check --with-memcached=/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memcached
configure: creating cache config.cache
configure: creating cache config.cache
checking build system type... checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... /usr/bin/install -c
checking whether build environment is sane... CXXLD gen_config
yes
./gen_config && touch .generated_configuration
yes
checking for a thread-safe mkdir -p... checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... /bin/mkdir -p
mawk
checking whether make sets $(MAKE)... checking for gawk... no
checking for mawk... make install-am
mawk
checking whether make sets $(MAKE)... yes
yes
checking for style of include used by make... checking for style of include used by make... GNU
GNU
checking for gcc... checking for gcc... gcc
gcc
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ep-engine'
CXX ep_la-access_scanner.lo
CXX ep_la-atomic.lo
CXX ep_la-backfill.lo
CXX ep_la-checkpoint.lo
CXX ep_la-dispatcher.lo
CXX ep_la-checkpoint_remover.lo
CXX ep_la-ep.lo
CXX ep_la-ep_engine.lo
CXX ep_la-ep_extension.lo
CC ep_la-ep_time.lo
CXX ep_la-flusher.lo
CXX ep_la-htresizer.lo
CXX ep_la-invalid_vbtable_remover.lo
CXX ep_la-item.lo
checking whether the C compiler works... checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
yes
checking for C compiler default output file name... a.out
checking for suffix of executables... checking for suffix of executables... CXX ep_la-item_pager.lo

checking whether we are cross compiling...
checking whether we are cross compiling... no
checking for suffix of object files... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... none needed
checking dependency style of gcc... CXX ep_la-memory_tracker.lo
gcc3
checking for isainfo... no
checking for g++... g++
checking whether we are using the GNU C++ compiler... gcc3
checking for isainfo... no
checking for g++... g++
yes
checking whether g++ accepts -g... yes
checking dependency style of g++... checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... CXX ep_la-mutex.lo
yes
checking dependency style of g++... gcc3
checking how to run the C preprocessor... gcc -E
gcc3
checking how to run the C preprocessor... checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... 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 sys/types.h... yes
checking for string.h... CXX ep_la-priority.lo
yes
CXX ep_la-queueditem.lo
checking for sys/stat.h... yes
checking for memory.h... yes
checking for stdlib.h... yes
yes
checking for strings.h... checking for string.h... yes
yes
checking for memory.h... checking for inttypes.h... yes
yes
checking for strings.h... checking for stdint.h... CXX ep_la-restore_impl.lo
yes
yes
checking for inttypes.h... checking for unistd.h... yes
yes
checking for stdint.h... checking minix/config.h usability... CXX ep_la-sizes.lo
yes
CXX ep_la-statsnap.lo
CXX ep_la-stored-value.lo
checking for unistd.h... yes
no
checking minix/config.h presence... checking minix/config.h usability... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... CXX ep_la-observe_registry.lo
yes
checking whether gcc and cc understand -c and -o together... CXX ep_la-tapconnection.lo
no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking how to print strings... printf
checking for a sed that does not truncate output... yes
checking whether gcc and cc understand -c and -o together... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
CXX ep_la-tapconnmap.lo
checking for fgrep... /bin/grep -F
checking for ld used by gcc... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... CXX ep_la-tapthrottle.lo
/usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 3458764513820540925
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... no
checking for dlfcn.h... yes
checking for objdir... .libs
ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking for objdir... .libs
yes
checking if gcc static flag -static works... checking if gcc supports -fno-rtti -fno-exceptions... yes
checking if gcc supports -c -o file.o... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking if gcc static flag -static works... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... yes
checking if gcc supports -c -o file.o... CXX ep_la-vbucket.lo
yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking whether -lc should be explicitly linked in... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
CXX ep_la-vbucketmap.lo
checking how to run the C++ preprocessor... no
checking dynamic linker characteristics... g++ -E
GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking how to run the C++ preprocessor... CXX ep_la-warmup.lo
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
g++ -E
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
CC ep_la-gethrtime.lo
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
CC ep_la-byteorder.lo
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... CC libkvstore_la-crc32.lo
yes
checking if g++ static flag -static works... CXX libkvstore_la-kvstore.lo
CXX libkvstore_la-mutation_log.lo
CXX libkvstore_la-mutation_log_compactor.lo
yes
checking if g++ supports -c -o file.o... checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... (cached) yes
checking whether make supports nested variables... yes
checking if g++ supports -c -o file.o... yes
checking if GCC is recent enough... yes
yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) checking whether __SUNPRO_C is declared... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking if g++ supports C++0x features without additional flags... CC tools/libmc_kvstore_la-cJSON.lo
no
checking if g++ supports C++0x features with -std=c++0x... no
checking whether __ICC is declared... no
checking if g++ supports C++0x features with -std=gnu++0x... no
checking for ISO C++ 98 include files... no
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... CXX objectregistry.lo
yes
checking whether make supports nested variables... yes
checking whether __SUNPRO_C is declared... no
checking whether __ICC is declared... no
checking for ISO C++ 98 include files... yes
checking memory usability... yes
checking memory presence... yes
checking for memory... yes
checking tr1/memory usability... CXX configuration.lo
yes
checking tr1/memory presence... yes
checking for tr1/memory... yes
checking boost/shared_ptr.hpp usability... yes
checking memory usability... no
checking boost/shared_ptr.hpp presence... CXX ep_testsuite_la-ep_testsuite.lo
no
checking for boost/shared_ptr.hpp... no
checking the location of shared_ptr header file... yes
checking memory presence... yes
checking for memory... yes
checking tr1/memory usability... yes
checking tr1/memory presence... yes
checking for tr1/memory... yes
checking boost/shared_ptr.hpp usability... CXX ep_testsuite_la-atomic.lo
no
checking boost/shared_ptr.hpp presence... no
checking for boost/shared_ptr.hpp... no
checking the location of shared_ptr header file...
checking whether byte ordering is bigendian... CXX ep_testsuite_la-mutex.lo
no
checking for an ANSI C-conforming const... yes
checking for inline... CXX ep_testsuite_la-item.lo
inline
checking for working volatile... yes
checking for C/C++ restrict keyword... __restrict
checking whether time.h and sys/time.h may both be included... yes
checking for size_t... cp ./testlogger.cc testlogger_libify.cc
CXX ep_testsuite_la-dispatcher.lo
CC ep_testsuite_la-ep_time.lo

checking whether byte ordering is bigendian... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking "C Compiler version--yes"... "gcc (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
checking "C++ Compiler version"... CXX sqlite-kvstore/ep_testsuite_la-sqlite-pst.lo
"g++ (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
checking whether the -Werror option is usable... no
checking for an ANSI C-conforming const... CC tools/ep_testsuite_la-cJSON.lo
yes
checking for simple visibility declarations... CC ep_testsuite_la-gethrtime.lo
yes
checking for inline... yes
checking whether to enable assertions... yes
checking assert.h usability... inline
checking for working volatile... CC ep_testsuite_la-byteorder.lo
yes
checking for C/C++ restrict keyword... yes
checking assert.h presence... yes
checking for assert.h... yes
checking whether it is safe to use -fdiagnostics-show-option... __restrict
checking whether time.h and sys/time.h may both be included... CXX timing_tests.lo
yes
checking whether it is safe to use -Wconversion... yes
checking for size_t... yes
checking whether it is safe to use -Wconversion with htons... CXX atomic.o
yes
checking whether it is safe to use -Wextra... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... yes
checking whether it is safe to use -Wmissing-declarations from C++... no
checking "C Compiler version--yes"... CXX mutex.o
"gcc (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
checking "C++ Compiler version"... "g++ (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3"
checking whether the -Werror option is usable... yes
checking whether it is safe to use -Wlogical-op... yes
checking for simple visibility declarations... yes
checking whether it is safe to use -Wredundant-decls from C++... yes
checking whether to enable assertions... yes
checking assert.h usability... yes
checking assert.h presence... no
checking whether it is safe to use -Wattributes from C++... yes
checking for assert.h... yes
checking whether it is safe to use -fdiagnostics-show-option... yes
checking whether it is safe to use -Wconversion... CXX testlogger.o
no
checking whether it is safe to use -Wno-attributes... CXX item.o
yes
checking whether it is safe to use -Wconversion with htons... no
checking for doxygen... no
checking for perl... perl
checking for working -pipe... yes
checking whether it is safe to use -Wextra... CC gethrtime.o
yes
checking for gcc -std=gnu99 option to accept ISO C99... CC byteorder.o
yes
checking whether it is safe to use -Wmissing-declarations from C++... none needed
checking for ld used by GCC... CC embedded/management_sqlite3-sqlite3-shell.o
/usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether it is safe to use -Wlogical-op... yes
checking for shared library run path origin... embedded/sqlite3-shell.c:59:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes] CXX sizes-sizes.o

embedded/sqlite3-shell.c:59:12: warning: redundant redeclaration of ‘isatty’ [-Wredundant-decls]
/usr/include/unistd.h:802:12: note: previous declaration of ‘isatty’ was here
yes
checking whether it is safe to use -Wredundant-decls from C++... embedded/sqlite3-shell.c: In function ‘run_table_dump_query’:
embedded/sqlite3-shell.c:929:12: warning: declaration of ‘db’ shadows a global declaration [-Wshadow]
embedded/sqlite3-shell.c:215:17: warning: shadowed declaration is here [-Wshadow]
embedded/sqlite3-shell.c: In function ‘save_err_msg’:
embedded/sqlite3-shell.c:955:12: warning: declaration of ‘db’ shadows a global declaration [-Wshadow]
embedded/sqlite3-shell.c:215:17: warning: shadowed declaration is here [-Wshadow]
embedded/sqlite3-shell.c: In function ‘display_stats’:
embedded/sqlite3-shell.c:969:12: warning: declaration of ‘db’ shadows a global declaration [-Wshadow]
embedded/sqlite3-shell.c:215:17: warning: shadowed declaration is here [-Wshadow]
embedded/sqlite3-shell.c: In function ‘shell_exec’:
embedded/sqlite3-shell.c:1055:12: warning: declaration of ‘db’ shadows a global declaration [-Wshadow]
embedded/sqlite3-shell.c:215:17: warning: shadowed declaration is here [-Wshadow]
embedded/sqlite3-shell.c: In function ‘do_meta_command’:
embedded/sqlite3-shell.c:1563:11: warning: declaration of ‘i’ shadows a previous local [-Wshadow]
embedded/sqlite3-shell.c:1448:7: warning: shadowed declaration is here [-Wshadow]
embedded/sqlite3-shell.c:1653:9: warning: declaration of ‘i’ shadows a previous local [-Wshadow]
embedded/sqlite3-shell.c:1448:7: warning: shadowed declaration is here [-Wshadow]
embedded/sqlite3-shell.c:1656:11: warning: declaration of ‘zLine’ shadows a parameter [-Wshadow]
embedded/sqlite3-shell.c:1447:34: warning: shadowed declaration is here [-Wshadow]
done
embedded/sqlite3-shell.c:2010:11: warning: declaration of ‘i’ shadows a previous local [-Wshadow]
embedded/sqlite3-shell.c:1448:7: warning: shadowed declaration is here [-Wshadow]
/usr/bin/pod2man -c "" -r "" -s 1m docs/cbadm-online-update.pod cbadm-online-update.1m
embedded/sqlite3-shell.c:2081:9: warning: declaration of ‘i’ shadows a previous local [-Wshadow]
embedded/sqlite3-shell.c:1448:7: warning: shadowed declaration is here [-Wshadow]
embedded/sqlite3-shell.c:2143:11: warning: declaration of ‘i’ shadows a previous local [-Wshadow]
embedded/sqlite3-shell.c:1448:7: warning: shadowed declaration is here [-Wshadow]
checking for libevent... /usr/bin/pod2man -c "" -r "" -s 1m docs/cbbackup-incremental.pod cbbackup-incremental.1m
CC ep_la-stats-info.lo
CXXLD libkvstore.la
yes
checking how to link with libevent... -levent
checking for event_base_new... no
checking whether it is safe to use -Wattributes from C++... CXX sqlite-kvstore/libsqlite_kvstore_la-factory.lo
yes
checking for event_base_free... CXX sqlite-kvstore/libsqlite_kvstore_la-pathexpand.lo
CXX sqlite-kvstore/libsqlite_kvstore_la-sqlite-eval.lo
no
checking whether it is safe to use -Wno-attributes... CXX sqlite-kvstore/libsqlite_kvstore_la-sqlite-kvstore.lo
no
checking for doxygen... no
checking for perl... perl
checking for working -pipe... yes
checking for event_base_get_method... CXX sqlite-kvstore/libsqlite_kvstore_la-sqlite-pst.lo
yes
checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking for shared library run path origin... yes
checking for the pthreads library -lpthreads... done
no
checking whether pthreads work without any flags... checking for libmemcached... no
checking whether pthreads work with -Kthread... CXX sqlite-kvstore/libsqlite_kvstore_la-sqlite-strategies.lo
no
checking whether pthreads work with -kthread... yes
checking how to link with libmemcached... /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libmemcached.so -lm -lrt -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
no
checking for the pthreads library -llthread... checking for libvbucket... CC sqlite-kvstore/libsqlite_kvstore_la-sqlite-vfs.lo
no
checking whether pthreads work with -pthread... yes
checking how to link with libvbucket... /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libvbucket.so -lm -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
checking for libcouchbase... CXX mc-kvstore/libmc_kvstore_la-mc-engine.lo
yes
checking for joinable pthread attribute... no
checking for libevent... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for pthread_yield_np... CXX mc-kvstore/libmc_kvstore_la-mc-kvstore.lo
no
yes
checking if pthread_yield takes zero arguments... checking how to link with libevent... -levent
CXX blackhole-kvstore/blackhole.lo
checking for event_base_new... yes
checking if pthread_yield takes one argument... yes
checking for event_base_free... no
yes
checking for event_base_get_method... checking for libmemcached... yes
checking for library containing socket... none required
checking for library containing gethostbyname... yes
checking how to link with libmemcached... /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libmemcached.so -lm -lrt -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
none required
checking for library containing log... checking for libhashkit... yes
checking how to link with libhashkit... /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libhashkit.so -lm -lrt -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
CXXLD libobjectregistry.la
checking for libconflate... -lm
checking for library containing sqrt... yes
checking how to link with libconflate... /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libconflate.so -lcurl -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
none required
checking for library containing pthread_create... checking for libvbucket... CXX couch-kvstore/couch-kvstore.lo
CXX couch-kvstore/dirutils.lo
yes
checking how to link with libvbucket... /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/libvbucket.so -lm -Wl,-rpath -Wl,/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib
checking whether time.h and sys/time.h may both be included... (cached) yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... CC embedded/libsqlite3_la-sqlite3.lo
-lpthread
checking for library containing clock_gettime... CXX ep_testsuite_la-testlogger_libify.lo
yes
checking for library containing socket... -lrt
checking for mach/mach_time.h... CXX mock/ep_testsuite_la-mccouch.lo
none required
checking for library containing gethostbyname... none required
checking for library containing umem_cache_create... CXXLD timing_tests.la
embedded/sqlite3.c: In function 'balance_nonroot':
embedded/sqlite3.c:50678:11: warning: variable 't' set but not used [-Wunused-but-set-variable]
no
checking for memcached/protocol_binary.h... embedded/sqlite3.c: In function 'columnMem':
embedded/sqlite3.c:58211:7: warning: variable 'vals' set but not used [-Wunused-but-set-variable]
embedded/sqlite3.c: In function 'sqlite3VdbeExec':
embedded/sqlite3.c:61319:5: warning: "SQLITE_DEBUG" is not defined [-Wundef]
yes
no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... checking for gethrtime... yes
configure: skipping check unit-test dependency
checking for an ANSI C-conforming const... (cached) yes
checking for socklen_t... yes
checking for SIGPIPE... no
yes
checking whether byte ordering is bigendian... (cached) no
checking for mlockall... checking for clock_gettime... embedded/sqlite3.c: In function 'sqlite3CommitTransaction':
embedded/sqlite3.c:77051:12: warning: variable 'db' set but not used [-Wunused-but-set-variable]
embedded/sqlite3.c: In function 'sqlite3RollbackTransaction':
embedded/sqlite3.c:77071:12: warning: variable 'db' set but not used [-Wunused-but-set-variable]
CXX management/dbconvert.o
embedded/sqlite3.c: In function 'sqlite3FkCheck':
embedded/sqlite3.c:80796:9: warning: variable 'v' set but not used [-Wunused-but-set-variable]
embedded/sqlite3.c: In function 'sqlite3Insert':
embedded/sqlite3.c:81766:7: warning: variable 'regRecord' set but not used [-Wunused-but-set-variable]
yes
checking for getpagesizes... yes
CXXLD libblackhole-kvstore.la
CXXLD libconfiguration.la
embedded/sqlite3.c: In function 'sqlite3Update':
embedded/sqlite3.c:92379:7: warning: variable 'regRec' set but not used [-Wunused-but-set-variable]
checking for gettimeofday... embedded/sqlite3.c: In function 'codeOneLoopStart':
embedded/sqlite3.c:97805:16: warning: variable 'pFinal' set but not used [-Wunused-but-set-variable]
no
checking for memcntl... embedded/sqlite3.c: In function 'sqlite3Parser':
embedded/sqlite3.c:102024:7: warning: variable 'yyendofinput' set but not used [-Wunused-but-set-variable]
yes
CXXLD libdirutils.la
no
checking for sigignore... configure: updating cache config.cache
configure: creating ./config.status
yes
checking for strsep... yes
checking for alignment... none
checking for setppriv... no
checking umem.h usability... no
checking umem.h presence... no
checking for umem.h... no
checking for xml2rfc... no
checking for xsltproc... no
checking for sys/socket.h... yes
checking for netdb.h... yes
checking for arpa/inet.h... yes
checking for pwd.h... yes
checking for sys/mman.h... yes
checking for netinet/tcp.h... yes
checking for sysexits.h... yes
checking for sys/uio.h... yes
checking for sys/resource.h... yes
checking for sys/un.h... yes
checking for netinet/in.h... yes
checking for winsock2.h... no
checking for syslog.h... yes
checking for getrlimit... yes
checking for getpwnam... yes
configure: updating cache config.cache
configure: creating ./config.status
CXXLD libsqlite-kvstore.la
CXXLD sizes
CXXLD libmc-kvstore.la
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
---
Configuration summary for memcachetest version UNKNOWN

* Installation prefix: /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install
* System type: unknown-linux-gnu
* Host CPU: x86_64
* C Compiler: gcc (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3
* C++ Compiler: g++ (Ubuntu/Linaro 4.6.3-1ubuntu4) 4.6.3
* Assertions enabled: yes
* Debug enabled: no
* Warnings as failure: yes
* Support for binary protocol yes
* Support for libmemcached yes
* Support for libvbucket yes

---
(rm -rf tmp/memcachetest; mkdir -p tmp/memcachetest)
make -C memcachetest install 'CPPFLAGS=-I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcached/include -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libvbucket/include -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include '
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcachetest'
CC main.o
CC libmemc.o
CC metrics.o
CC timer.o
CC boxmuller.o
CC vbucket.o
libmemc.c: In function ‘binary_get’:
libmemc.c:578:26: warning: variable ‘iov’ set but not used [-Wunused-but-set-variable]
main.c: In function ‘exit_handler’:
main.c:895:30: warning: unused parameter ‘signum’ [-Wunused-parameter]
CXXLD libcouch-kvstore.la
config.status: creating Makefile
CCLD memcachetest
config.status: creating doc/Makefile
config.status: creating debian/changelog
config.status: creating scripts/rpm/moxi.spec
config.status: creating config.h
config.status: executing depfiles commands
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcachetest'
make[2]: Nothing to be done for `install-data-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
/bin/bash ./libtool --mode=install /usr/bin/install -c memcachetest '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
libtool: install: /usr/bin/install -c memcachetest /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/memcachetest
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcachetest'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/memcachetest'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
config.status: executing libtool commands
(rm -rf tmp/moxi; mkdir -p tmp/moxi)
make -C moxi install 'CPPFLAGS=-I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libmemcached -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/libvbucket/include -I/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include '
make[1]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
make install-recursive
make[2]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
Making install in doc
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi/doc'
make install-am
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi/doc'
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi/doc'
make[5]: Nothing to be done for `install-exec-am'.
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1"
/usr/bin/install -c -m 644 moxi.1 '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1'
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi/doc'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi/doc'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi/doc'
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
CC moxi-memcached.o
CC moxi-genhash.o
CC moxi-hash.o
CC moxi-slabs.o
CC moxi-items.o
CC moxi-assoc.o
CC moxi-thread.o
CC moxi-stats.o
CC moxi-util.o
CC moxi-work.o
CC moxi-cproxy.o
CC moxi-cproxy_config.o
CC moxi-cproxy_protocol_a.o
CC moxi-cproxy_protocol_a2a.o
CC moxi-cproxy_protocol_a2b.o
memcached.c: In function ‘process_get_command’:
memcached.c:2452:73: warning: parameter ‘ntokens’ set but not used [-Wunused-but-set-parameter]
cproxy.c: In function ‘cproxy_listen_port’:
cproxy.c:360:28: warning: variable ‘in’ set but not used [-Wunused-but-set-variable]
CC moxi-cproxy_protocol_b.o
memcached.c: In function ‘main’:
memcached.c:4951:13: warning: variable ‘udp_port’ set but not used [-Wunused-but-set-variable]
CC moxi-cproxy_protocol_b2b.o
CC moxi-cproxy_multiget.o
CC moxi-cproxy_stats.o
CC moxi-cproxy_front.o
CC moxi-matcher.o
CC moxi-murmur_hash.o
CC moxi-mcs.o
CC moxi-stdin_check.o
CC moxi-log.o
log.c: In function ‘log_error_write’: CC moxi-cJSON.o

log.c:165:9: warning: variable ‘written’ set but not used [-Wunused-but-set-variable]
CC moxi-htgram.o
CC moxi-daemon.o
htgram.c: In function ‘emit_bar’:
htgram.c:328:14: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 5 has type ‘int64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 6 has type ‘int64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 8 has type ‘uint64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 5 has type ‘int64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 6 has type ‘int64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 8 has type ‘uint64_t’ [-Wformat]
CC moxi-cache.o
CC moxi-agent_config.o
CC moxi-agent_ping.o
CC moxi-agent_stats.o
CC sizes.o
CC testapp.o
CC util.o
CC cache.o
CC timedrun.o
CC htgram_test.o
CC htgram.o
CCLD sizes
htgram.c: In function ‘emit_bar’:
htgram.c:328:14: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 5 has type ‘int64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 6 has type ‘int64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 8 has type ‘uint64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 5 has type ‘int64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 6 has type ‘int64_t’ [-Wformat]
htgram.c:328:14: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 8 has type ‘uint64_t’ [-Wformat]
CCLD timedrun
CCLD htgram_test
CCLD testapp
In file included from /usr/include/string.h:642:0,
from /usr/include/x86_64-linux-gnu/sys/un.h:38,
from config_static.h:78,
from config.h:403,
from cproxy.c:3:
In function ‘strncpy’,
inlined from ‘cproxy_connect_downstream’ at cproxy.c:1458:24:
/usr/include/x86_64-linux-gnu/bits/string3.h:121:3: warning: call to __builtin___strncpy_chk will always overflow destination buffer [enabled by default]
CCLD moxi
make[4]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
make install-data-hook
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
/bin/bash ./libtool --mode=install /usr/bin/install -c moxi '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
libtool: install: /usr/bin/install -c moxi /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/moxi
make[5]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
/bin/mkdir -p /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/var/lib/moxi
make[5]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
make[4]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/moxi'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
embedded/sqlite3.c: In function 'fkLookupParent':
embedded/sqlite3.c:54928:5: warning: assuming signed overflow does not occur when assuming that (X - c) <= X is always true [-Wstrict-overflow]
embedded/sqlite3.c: In function 'sqlite3CreateView.isra.367':
embedded/sqlite3.c:73357:15: warning: 'pName' may be used uninitialized in this function [-Wuninitialized]
embedded/sqlite3.c:75369:10: note: 'pName' was declared here
CCLD libsqlite3.la
CXXLD ep_testsuite.la
CXXLD ep.la
CXXLD management/cbdbconvert
CCLD management/sqlite3
make[3]: Entering directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ep-engine'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/doc/ep-engine" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/doc/ep-engine"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1"
/usr/bin/install -c management/analyze_core management/squasher.sql wrapper/cbadm-online-restore wrapper/cbadm-online-update wrapper/cbadm-tap-registration wrapper/cbbackup wrapper/cbbackup-incremental wrapper/cbbackup-merge-incremental wrapper/cbdbconvert wrapper/cbdbmaint wrapper/cbdbupgrade wrapper/cbflushctl wrapper/cbrestore wrapper/cbstats wrapper/cbvbucketctl '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python"
/usr/bin/install -c -m 644 docs/stats.json '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/doc/ep-engine'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/ep-engine" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/ep-engine"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin"
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached"
/usr/bin/install -c -m 644 management/capture.py management/clitool.py management/mc_bin_client.py management/mc_bin_server.py management/memcacheConstants.py management/tap.py management/tap_example.py management/util.py management/backup_util.py '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python'
test -z "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python" || /bin/mkdir -p "/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python"
/usr/bin/install -c -m 644 cbadm-online-update.1m cbbackup-incremental.1m '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/share/man/man1'
/usr/bin/install -c -m 644 command_ids.h '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/include/ep-engine'
/bin/bash ./libtool --mode=install /usr/bin/install -c management/cbdbconvert management/sqlite3 '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin'
/bin/bash ./libtool --mode=install /usr/bin/install -c ep.la ep_testsuite.la timing_tests.la '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached'
/usr/bin/install -c management/cbadm-online-restore management/cbadm-online-update management/cbadm-tap-registration management/cbbackup management/cbbackup-incremental management/cbbackup-merge-incremental management/cbdbconvert management/cbdbmaint management/cbdbupgrade management/cbflushctl management/cbrestore management/cbstats management/cbvbucketctl '/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/python'
libtool: install: /usr/bin/install -c management/cbdbconvert /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/cbdbconvert
libtool: install: /usr/bin/install -c .libs/ep.so.0.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/ep.so.0.0.0
libtool: install: /usr/bin/install -c management/sqlite3 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/bin/sqlite3
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f ep.so.0.0.0 ep.so.0 || { rm -f ep.so.0 && ln -s ep.so.0.0.0 ep.so.0; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f ep.so.0.0.0 ep.so || { rm -f ep.so && ln -s ep.so.0.0.0 ep.so; }; })
libtool: install: /usr/bin/install -c .libs/ep.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/ep.la
libtool: install: /usr/bin/install -c .libs/ep_testsuite.so.0.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/ep_testsuite.so.0.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f ep_testsuite.so.0.0.0 ep_testsuite.so.0 || { rm -f ep_testsuite.so.0 && ln -s ep_testsuite.so.0.0.0 ep_testsuite.so.0; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f ep_testsuite.so.0.0.0 ep_testsuite.so || { rm -f ep_testsuite.so && ln -s ep_testsuite.so.0.0.0 ep_testsuite.so; }; })
libtool: install: /usr/bin/install -c .libs/ep_testsuite.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/ep_testsuite.la
libtool: install: /usr/bin/install -c .libs/timing_tests.so.0.0.0 /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/timing_tests.so.0.0.0
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f timing_tests.so.0.0.0 timing_tests.so.0 || { rm -f timing_tests.so.0 && ln -s timing_tests.so.0.0.0 timing_tests.so.0; }; })
libtool: install: (cd /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached && { ln -s -f timing_tests.so.0.0.0 timing_tests.so || { rm -f timing_tests.so && ln -s timing_tests.so.0.0.0 timing_tests.so; }; })
libtool: install: /usr/bin/install -c .libs/timing_tests.lai /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached/timing_tests.la
libtool: finish: PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/sbin" ldconfig -n /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached
----------------------------------------------------------------------
Libraries have been installed in:
/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/memcached

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ep-engine'
make[2]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ep-engine'
make[1]: Leaving directory `/home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/ep-engine'
if [ "xfalse" = "xtrue" ]; then rm -f -f /home/jenkins/jenkins/workspace/memcached/platforms/farshid-ubuntu-1204-1/install/lib/*.la; fi
+ cd memcached
+ make test -j8
./engine_testapp -E .libs/default_engine.so -t 30 \
-T .libs/basic_engine_testsuite.so
1..28
Running [0000/0028]: get info test...
Running [0001/0028]: get info description test...
Running [0002/0028]: get info features test...
Running [0003/0028]: allocate test...
Running [0004/0028]: set test...
Running [0005/0028]: add test...
Running [0006/0028]: replace test...
Running [0007/0028]: append test...
Running [0008/0028]: prepend test...
Running [0009/0028]: store test...
Running [0010/0028]: get test...
Running [0011/0028]: expiry test...
Running [0012/0028]: remove test...
Running [0013/0028]: release test...
Running [0014/0028]: incr test...
Running [0015/0028]: mt incr test...
Running [0016/0028]: decr test...
Running [0017/0028]: flush test...
Running [0018/0028]: get item info test...
Running [0019/0028]: set cas test...
Running [0020/0028]: LRU test...
Running [0021/0028]: get stats test...
Running [0022/0028]: reset stats test...
Running [0023/0028]: get stats struct test...
Running [0024/0028]: aggregate stats test...
Running [0025/0028]: touch...
Running [0026/0028]: Get And Touch...
Running [0027/0028]: Get And Touch Quiet...
# Passed 28 of 28 tests
./sizes
Slab Stats 40
Thread stats 192
Global stats 80
Settings 184
Libevent thread 256
Connection 664
----------------------------------------
libevent thread cumulative 256
Thread stats cumulative 8192
./testapp
1..54
ok 1 - cache_create
ok 2 - cache_constructor
ok 3 - cache_constructor_fail
ok 4 - cache_destructor
ok 5 - cache_reuse
ok 6 - cache_redzone
ok 7 - issue_161
ok 8 - strtof
ok 9 - strtol
ok 10 - strtoll
ok 11 - strtoul
ok 12 - strtoull
ok 13 - issue_44
ok 14 - vperror
ok # SKIP 15 - issue_101
ok 16 - config_parser
ok 17 - start_server
ok 18 - issue_92
ok 19 - issue_102
ok 20 - binary_noop
ok 21 - binary_quit
ok 22 - binary_quitq
ok 23 - binary_set
ok 24 - binary_setq
ok 25 - binary_add
ok 26 - binary_addq
ok 27 - binary_replace
ok 28 - binary_replaceq
ok 29 - binary_delete
ok 30 - binary_deleteq
ok 31 - binary_get
ok 32 - binary_getq
ok 33 - binary_getk
ok 34 - binary_getkq
ok 35 - binary_incr
ok 36 - binary_incrq
ok 37 - binary_decr
ok 38 - binary_decrq
ok 39 - binary_version
ok 40 - binary_flush
ok 41 - binary_flushq
ok 42 - binary_cas
ok 43 - binary_append
ok 44 - binary_appendq
ok 45 - binary_prepend
ok 46 - binary_prependq
ok 47 - binary_stat
ok 48 - binary_scrub
ok 49 - binary_verbosity
ok 50 - binary_read
ok 51 - binary_write
ok 52 - binary_bad_tap_ttl
ok 53 - binary_pipeline_hickup
ok 54 - stop_server
prove ./t
Invalid value for binding protocol: http
-- should be one of auto, binary, or ascii
Number of threads must be greater than 0
t/00-startup.t ....... ok
t/64bit.t ............ ok
t/binary-get.t ....... ok

# Failed test 'authenticated'
# at t/binary-sasl.t line 212.
# got: '32'
# expected: '0'

# Failed test at t/binary-sasl.t line 216.

# Failed test ' = somevalue'
# at t/binary-sasl.t line 121.
# got: ''
# expected: 'somevalue'
send: Cannot determine peer address at t/binary-sasl.t line 330
# Looks like you planned 25 tests but ran 19.
# Looks like you failed 3 tests of 19 run.
# Looks like your test exited with 107 just after 19.
t/binary-sasl.t ......
Dubious, test returned 107 (wstat 27392, 0x6b00)
Failed 9/25 subtests
t/binary.t ........... ok
t/bogus-commands.t ... ok
t/cas.t .............. ok
t/cmd_extensions.t ... ok
t/daemonize.t ........ ok
t/dash-M.t ........... ok
t/evictions.t ........ ok
t/expirations.t ...... ok
t/flags.t ............ ok
t/flush-all.t ........ ok
t/getset.t ........... ok
t/incrdecr.t ......... ok
t/issue_104.t ........ ok
t/issue_108.t ........ ok
t/issue_14.t ......... ok
t/issue_140.t ........ ok
t/issue_152.t ........ ok
t/issue_163.t ........ ok
t/issue_183.t ........ ok
t/issue_22.t ......... ok
t/issue_29.t ......... ok
t/issue_3.t .......... ok
t/issue_41.t ......... ok
t/issue_42.t ......... ok
t/issue_50.t ......... ok
t/issue_61.t ......... ok
t/issue_67.t ......... ok
t/issue_68.t ......... ok
t/issue_70.t ......... ok
Item max size cannot be less than 1024 bytes.
Cannot set item size limit higher than 128 mb.
WARNING: Setting item max size above 1MB is not recommended!
Raising this limit increases the minimum memory requirements
and will decrease your memory efficiency.
WARNING: Setting item max size above 1MB is not recommended!
Raising this limit increases the minimum memory requirements
and will decrease your memory efficiency.
t/item_size_max.t .... ok
t/line-lengths.t ..... ok
t/lru.t .............. ok
t/maxconns.t ......... ok
t/multiversioning.t .. ok
t/noreply.t .......... ok
t/scrub.t ............ ok
t/stats-detail.t ..... ok
t/stats.t ............ ok
Using a hash as a reference is deprecated at t/udp.t line 195.
t/udp.t .............. ok
t/unixsocket.t ....... ok
t/verbosity.t ........ ok
t/whitespace.t ....... ok

Test Summary Report
-------------------
t/binary-sasl.t (Wstat: 27392 Tests: 19 Failed: 3)
Failed tests: 17-19
Non-zero exit status: 107
Parse errors: Bad plan. You planned 25 tests but ran 19.
Files=46, Tests=6848, 137 wallclock secs ( 1.62 usr 0.24 sys + 5.43 cusr 1.85 csys = 9.14 CPU)
Result: FAIL
make: *** [test] Error 1
Build step 'Execute shell' marked build as failure
Notifying upstream projects of job completion
Finished: FAILURE