Revision 353838623735 () - Diff

Link to this snippet: https://friendpaste.com/1QhtlBaCUw9RLpPj3UNCrC
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
maas@wintermute dist % cat config.log
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by Apache CouchDB configure 1.2.0, which was
generated by GNU Autoconf 2.68. Invocation command line was

$ ./configure --prefix=/tmp/1.2.x/install

## --------- ##
## Platform. ##
## --------- ##

hostname = wintermute
uname -m = x86_64
uname -r = 3.0.0-1-amd64
uname -s = Linux
uname -v = #1 SMP Sun Jul 24 02:24:44 UTC 2011

/usr/bin/uname -p = unknown
/bin/uname -X = unknown

/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown

PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/bin/X11
PATH: /usr/games


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2751: checking for a BSD-compatible install
configure:2819: result: /usr/bin/install -c
configure:2830: checking whether build environment is sane
configure:2880: result: yes
configure:3021: checking for a thread-safe mkdir -p
configure:3060: result: /bin/mkdir -p
configure:3073: checking for gawk
configure:3089: found /usr/bin/gawk
configure:3100: result: gawk
configure:3111: checking whether make sets $(MAKE)
configure:3133: result: yes
configure:3226: checking for style of include used by make
configure:3254: result: GNU
configure:3324: checking for gcc
configure:3340: found /usr/bin/gcc
configure:3351: result: gcc
configure:3580: checking for C compiler version
configure:3589: gcc --version >&5
gcc (Debian 4.6.1-4) 4.6.1
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:3600: $? = 0
configure:3589: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.6.1-4' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-multiarch --with-multiarch-defaults=x86_64-linux-gnu --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib/x86_64-linux-gnu --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib/x86_64-linux-gnu --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.6.1 (Debian 4.6.1-4)
configure:3600: $? = 0
configure:3589: gcc -V >&5
gcc: error: unrecognized option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3600: $? = 1
configure:3589: gcc -qversion >&5
gcc: error: unrecognized option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:3600: $? = 1
configure:3620: checking whether the C compiler works
configure:3642: gcc conftest.c >&5
configure:3646: $? = 0
configure:3694: result: yes
configure:3697: checking for C compiler default output file name
configure:3699: result: a.out
configure:3705: checking for suffix of executables
configure:3712: gcc -o conftest conftest.c >&5
configure:3716: $? = 0
configure:3738: result:
configure:3760: checking whether we are cross compiling
configure:3768: gcc -o conftest conftest.c >&5
configure:3772: $? = 0
configure:3779: ./conftest
configure:3783: $? = 0
configure:3798: result: no
configure:3803: checking for suffix of object files
configure:3825: gcc -c conftest.c >&5
configure:3829: $? = 0
configure:3850: result: o
configure:3854: checking whether we are using the GNU C compiler
configure:3873: gcc -c conftest.c >&5
configure:3873: $? = 0
configure:3882: result: yes
configure:3891: checking whether gcc accepts -g
configure:3911: gcc -c -g conftest.c >&5
configure:3911: $? = 0
configure:3952: result: yes
configure:3969: checking for gcc option to accept ISO C89
configure:4033: gcc -c -g -O2 conftest.c >&5
configure:4033: $? = 0
configure:4046: result: none needed
configure:4068: checking dependency style of gcc
configure:4178: result: gcc3
configure:4199: checking how to run the C preprocessor
configure:4230: gcc -E conftest.c
configure:4230: $? = 0
configure:4244: gcc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:4244: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4269: result: gcc -E
configure:4289: gcc -E conftest.c
configure:4289: $? = 0
configure:4303: gcc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:4303: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4332: checking for grep that handles long lines and -e
configure:4390: result: /bin/grep
configure:4395: checking for egrep
configure:4457: result: /bin/grep -E
configure:4462: checking for ANSI C header files
configure:4482: gcc -c -g -O2 conftest.c >&5
configure:4482: $? = 0
configure:4555: gcc -o conftest -g -O2 conftest.c >&5
configure:4555: $? = 0
configure:4555: ./conftest
configure:4555: $? = 0
configure:4566: result: yes
configure:4579: checking for sys/types.h
configure:4579: gcc -c -g -O2 conftest.c >&5
configure:4579: $? = 0
configure:4579: result: yes
configure:4579: checking for sys/stat.h
configure:4579: gcc -c -g -O2 conftest.c >&5
configure:4579: $? = 0
configure:4579: result: yes
configure:4579: checking for stdlib.h
configure:4579: gcc -c -g -O2 conftest.c >&5
configure:4579: $? = 0
configure:4579: result: yes
configure:4579: checking for string.h
configure:4579: gcc -c -g -O2 conftest.c >&5
configure:4579: $? = 0
configure:4579: result: yes
configure:4579: checking for memory.h
configure:4579: gcc -c -g -O2 conftest.c >&5
configure:4579: $? = 0
configure:4579: result: yes
configure:4579: checking for strings.h
configure:4579: gcc -c -g -O2 conftest.c >&5
configure:4579: $? = 0
configure:4579: result: yes
configure:4579: checking for inttypes.h
configure:4579: gcc -c -g -O2 conftest.c >&5
configure:4579: $? = 0
configure:4579: result: yes
configure:4579: checking for stdint.h
configure:4579: gcc -c -g -O2 conftest.c >&5
configure:4579: $? = 0
configure:4579: result: yes
configure:4579: checking for unistd.h
configure:4579: gcc -c -g -O2 conftest.c >&5
configure:4579: $? = 0
configure:4579: result: yes
configure:4592: checking minix/config.h usability
configure:4592: gcc -c -g -O2 conftest.c >&5
conftest.c:54:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:4592: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:4592: result: no
configure:4592: checking minix/config.h presence
configure:4592: gcc -E conftest.c
conftest.c:21:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:4592: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <minix/config.h>
configure:4592: result: no
configure:4592: checking for minix/config.h
configure:4592: result: no
configure:4613: checking whether it is safe to define __EXTENSIONS__
configure:4631: gcc -c -g -O2 conftest.c >&5
configure:4631: $? = 0
configure:4638: result: yes
configure:4764: checking for gcc
configure:4791: result: gcc
configure:5020: checking for C compiler version
configure:5029: gcc --version >&5
gcc (Debian 4.6.1-4) 4.6.1
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:5040: $? = 0
configure:5029: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.6.1-4' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-multiarch --with-multiarch-defaults=x86_64-linux-gnu --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib/x86_64-linux-gnu --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib/x86_64-linux-gnu --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.6.1 (Debian 4.6.1-4)
configure:5040: $? = 0
configure:5029: gcc -V >&5
gcc: error: unrecognized option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:5040: $? = 1
configure:5029: gcc -qversion >&5
gcc: error: unrecognized option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:5040: $? = 1
configure:5044: checking whether we are using the GNU C compiler
configure:5072: result: yes
configure:5081: checking whether gcc accepts -g
configure:5142: result: yes
configure:5159: checking for gcc option to accept ISO C89
configure:5236: result: none needed
configure:5258: checking dependency style of gcc
configure:5368: result: gcc3
configure:5412: checking build system type
configure:5426: result: x86_64-unknown-linux-gnu
configure:5446: checking host system type
configure:5459: result: x86_64-unknown-linux-gnu
configure:5500: checking how to print strings
configure:5527: result: printf
configure:5548: checking for a sed that does not truncate output
configure:5612: result: /bin/sed
configure:5630: checking for fgrep
configure:5692: result: /bin/grep -F
configure:5727: checking for ld used by gcc
configure:5794: result: /usr/bin/ld
configure:5801: checking if the linker (/usr/bin/ld) is GNU ld
configure:5816: result: yes
configure:5828: checking for BSD- or MS-compatible name lister (nm)
configure:5877: result: /usr/bin/nm -B
configure:6007: checking the name lister (/usr/bin/nm -B) interface
configure:6014: gcc -c -g -O2 conftest.c >&5
configure:6017: /usr/bin/nm -B "conftest.o"
configure:6020: output
0000000000000000 B some_variable
configure:6027: result: BSD nm
configure:6030: checking whether ln -s works
configure:6034: result: yes
configure:6042: checking the maximum length of command line arguments
configure:6167: result: 1572864
configure:6184: checking whether the shell understands some XSI constructs
configure:6194: result: yes
configure:6198: checking whether the shell understands "+="
configure:6204: result: yes
configure:6239: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format
configure:6279: result: func_convert_file_noop
configure:6286: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format
configure:6306: result: func_convert_file_noop
configure:6313: checking for /usr/bin/ld option to reload object files
configure:6320: result: -r
configure:6394: checking for objdump
configure:6410: found /usr/bin/objdump
configure:6421: result: objdump
configure:6450: checking how to recognize dependent libraries
configure:6652: result: pass_all
configure:6737: checking for dlltool
configure:6767: result: no
configure:6794: checking how to associate runtime and link libraries
configure:6821: result: printf %s\n
configure:6881: checking for ar
configure:6897: found /usr/bin/ar
configure:6908: result: ar
configure:6945: checking for archiver @FILE support
configure:6962: gcc -c -g -O2 conftest.c >&5
configure:6962: $? = 0
configure:6965: ar cru libconftest.a @conftest.lst >&5
configure:6968: $? = 0
configure:6973: ar cru libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
configure:6976: $? = 1
configure:6988: result: @
configure:7046: checking for strip
configure:7062: found /usr/bin/strip
configure:7073: result: strip
configure:7145: checking for ranlib
configure:7161: found /usr/bin/ranlib
configure:7172: result: ranlib
configure:7274: checking command to parse /usr/bin/nm -B output from gcc object
configure:7393: gcc -c -g -O2 conftest.c >&5
configure:7396: $? = 0
configure:7400: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:7403: $? = 0
configure:7469: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
configure:7472: $? = 0
configure:7510: result: ok
configure:7547: checking for sysroot
configure:7577: result: no
configure:7654: gcc -c -g -O2 conftest.c >&5
configure:7657: $? = 0
configure:7820: checking for mt
configure:7836: found /bin/mt
configure:7847: result: mt
configure:7870: checking if mt is a manifest tool
configure:7876: mt '-?'
configure:7884: result: no
configure:8513: checking for dlfcn.h
configure:8513: gcc -c -g -O2 conftest.c >&5
configure:8513: $? = 0
configure:8513: result: yes
configure:8938: checking for objdir
configure:8953: result: .libs
configure:9224: checking if gcc supports -fno-rtti -fno-exceptions
configure:9242: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default]
configure:9246: $? = 0
configure:9259: result: no
configure:9569: checking for gcc option to produce PIC
configure:9576: result: -fPIC -DPIC
configure:9584: checking if gcc PIC flag -fPIC -DPIC works
configure:9602: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5
configure:9606: $? = 0
configure:9619: result: yes
configure:9648: checking if gcc static flag -static works
configure:9676: result: yes
configure:9691: checking if gcc supports -c -o file.o
configure:9712: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
configure:9716: $? = 0
configure:9738: result: yes
configure:9746: checking if gcc supports -c -o file.o
configure:9793: result: yes
configure:9826: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:10988: result: yes
configure:11025: checking whether -lc should be explicitly linked in
configure:11033: gcc -c -g -O2 conftest.c >&5
configure:11036: $? = 0
configure:11051: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
configure:11054: $? = 0
configure:11068: result: no
configure:11233: checking dynamic linker characteristics
configure:11748: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5
configure:11748: $? = 0
configure:11982: result: GNU/Linux ld.so
configure:12089: checking how to hardcode library paths into programs
configure:12114: result: immediate
configure:12654: checking whether stripping libraries is possible
configure:12659: result: yes
configure:12694: checking if libtool supports shared libraries
configure:12696: result: yes
configure:12699: checking whether to build shared libraries
configure:12720: result: yes
configure:12723: checking whether to build static libraries
configure:12727: result: no
configure:12763: checking whether ln -s works
configure:12767: result: yes
configure:12828: checking for pkg-config
configure:12846: found /usr/bin/pkg-config
configure:12858: result: /usr/bin/pkg-config
configure:12883: checking pkg-config is at least version 0.9.0
configure:12886: result: yes
configure:12957: checking for g++
configure:12973: found /usr/bin/g++
configure:12984: result: g++
configure:13011: checking for C++ compiler version
configure:13020: g++ --version >&5
g++ (Debian 4.6.1-4) 4.6.1
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:13031: $? = 0
configure:13020: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.6.1-4' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-multiarch --with-multiarch-defaults=x86_64-linux-gnu --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib/x86_64-linux-gnu --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib/x86_64-linux-gnu --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.6.1 (Debian 4.6.1-4)
configure:13031: $? = 0
configure:13020: g++ -V >&5
g++: error: unrecognized option '-V'
g++: fatal error: no input files
compilation terminated.
configure:13031: $? = 1
configure:13020: g++ -qversion >&5
g++: error: unrecognized option '-qversion'
g++: fatal error: no input files
compilation terminated.
configure:13031: $? = 1
configure:13035: checking whether we are using the GNU C++ compiler
configure:13054: g++ -c conftest.cpp >&5
configure:13054: $? = 0
configure:13063: result: yes
configure:13072: checking whether g++ accepts -g
configure:13092: g++ -c -g conftest.cpp >&5
configure:13092: $? = 0
configure:13133: result: yes
configure:13158: checking dependency style of g++
configure:13268: result: gcc3
configure:13301: checking how to run the C++ preprocessor
configure:13328: g++ -E conftest.cpp
configure:13328: $? = 0
configure:13342: g++ -E conftest.cpp
conftest.cpp:28:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:13342: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:13367: result: g++ -E
configure:13387: g++ -E conftest.cpp
configure:13387: $? = 0
configure:13401: g++ -E conftest.cpp
conftest.cpp:28:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:13401: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:13571: checking for ld used by g++
configure:13638: result: /usr/bin/ld -m elf_x86_64
configure:13645: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
configure:13660: result: yes
configure:13715: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:14719: result: yes
configure:14754: g++ -c -g -O2 conftest.cpp >&5
configure:14757: $? = 0
configure:15277: checking for g++ option to produce PIC
configure:15284: result: -fPIC -DPIC
configure:15292: checking if g++ PIC flag -fPIC -DPIC works
configure:15310: g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5
configure:15314: $? = 0
configure:15327: result: yes
configure:15350: checking if g++ static flag -static works
configure:15378: result: yes
configure:15390: checking if g++ supports -c -o file.o
configure:15411: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
configure:15415: $? = 0
configure:15437: result: yes
configure:15442: checking if g++ supports -c -o file.o
configure:15489: result: yes
configure:15519: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:15556: result: yes
configure:15699: checking dynamic linker characteristics
configure:16382: result: GNU/Linux ld.so
configure:16435: checking how to hardcode library paths into programs
configure:16460: result: immediate
configure:16506: checking whether byte ordering is bigendian
configure:16521: g++ -c -g -O2 conftest.cpp >&5
conftest.cpp:29:9: error: expected unqualified-id before 'not' token
configure:16521: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #ifndef __APPLE_CC__
| not a universal capable compiler
| #endif
| typedef int dummy;
|
configure:16566: g++ -c -g -O2 conftest.cpp >&5
configure:16566: $? = 0
configure:16584: g++ -c -g -O2 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:35:8: error: 'big' was not declared in this scope
conftest.cpp:35:12: error: expected ';' before 'endian'
configure:16584: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <sys/param.h>
|
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| not big endian
| #endif
|
| ;
| return 0;
| }
configure:16712: result: no
configure:16734: checking for stdint.h
configure:16734: result: yes
configure:16734: checking stddef.h usability
configure:16734: g++ -c -g -O2 conftest.cpp >&5
configure:16734: $? = 0
configure:16734: result: yes
configure:16734: checking stddef.h presence
configure:16734: g++ -E conftest.cpp
configure:16734: $? = 0
configure:16734: result: yes
configure:16734: checking for stddef.h
configure:16734: result: yes
configure:16734: checking sys/mman.h usability
configure:16734: g++ -c -g -O2 conftest.cpp >&5
configure:16734: $? = 0
configure:16734: result: yes
configure:16734: checking sys/mman.h presence
configure:16734: g++ -E conftest.cpp
configure:16734: $? = 0
configure:16734: result: yes
configure:16734: checking for sys/mman.h
configure:16734: result: yes
configure:16734: checking sys/resource.h usability
configure:16734: g++ -c -g -O2 conftest.cpp >&5
configure:16734: $? = 0
configure:16734: result: yes
configure:16734: checking sys/resource.h presence
configure:16734: g++ -E conftest.cpp
configure:16734: $? = 0
configure:16734: result: yes
configure:16734: checking for sys/resource.h
configure:16734: result: yes
configure:16744: checking for mmap
configure:16744: g++ -o conftest -g -O2 conftest.cpp >&5
configure:16744: $? = 0
configure:16744: result: yes
configure:16750: checking if the compiler supports __builtin_expect
configure:16766: g++ -c -g -O2 conftest.cpp >&5
configure:16766: $? = 0
configure:16769: result: yes
configure:16786: checking if the compiler supports __builtin_ctzll
configure:16802: g++ -c -g -O2 conftest.cpp >&5
configure:16802: $? = 0
configure:16805: result: yes
configure:16845: checking for pthread_create in -lpthread
configure:16862: g++ -o conftest -g -O2 conftest.cpp -lpthread >&5
conftest.cpp: In function 'int main()':
conftest.cpp:38:58: error: invalid conversion from 'void*' to 'pthread_t* {aka long unsigned int*}' [-fpermissive]
/usr/include/pthread.h:225:12: error: initializing argument 1 of 'int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)' [-fpermissive]
conftest.cpp:38:58: error: invalid conversion from 'void*' to 'const pthread_attr_t*' [-fpermissive]
/usr/include/pthread.h:225:12: error: initializing argument 2 of 'int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)' [-fpermissive]
conftest.cpp:38:58: error: invalid conversion from 'void*' to 'void* (*)(void*)' [-fpermissive]
/usr/include/pthread.h:225:12: error: initializing argument 3 of 'int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)' [-fpermissive]
configure:16862: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_STDINT_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_BUILTIN_EXPECT 1
| #define HAVE_BUILTIN_CTZ 1
| /* end confdefs.h. */
| #include<pthread.h>
| int
| main ()
| {
| pthread_create((void *)0, (void *)0, (void *)0, (void *)0)
| ;
| return 0;
| }
configure:16875: result: no
configure:16900: checking for erl
configure:16918: found /usr/bin/erl
configure:16930: result: /usr/bin/erl
configure:16984: checking for JS
configure:16991: $PKG_CONFIG --exists --print-errors "mozjs185"
Package mozjs185 was not found in the pkg-config search path.
Perhaps you should add the directory containing `mozjs185.pc'
to the PKG_CONFIG_PATH environment variable
No package 'mozjs185' found
configure:16994: $? = 1
configure:17007: $PKG_CONFIG --exists --print-errors "mozjs185"
Package mozjs185 was not found in the pkg-config search path.
Perhaps you should add the directory containing `mozjs185.pc'
to the PKG_CONFIG_PATH environment variable
No package 'mozjs185' found
configure:17010: $? = 1
configure:17023: result: no
No package 'mozjs185' found
configure:17042: checking for JS
configure:17049: $PKG_CONFIG --exists --print-errors "mozilla-js >= 1.7"
configure:17052: $? = 0
configure:17065: $PKG_CONFIG --exists --print-errors "mozilla-js >= 1.7"
configure:17068: $? = 0
configure:17109: result: yes
configure:17224: checking for JS
configure:17299: result: yes
configure:17355: result: js libs -L/usr/lib/xulrunner-devel-5.0/lib -lmozjs -lplds4 -lplc4 -lnspr4 -lpthread -ldl -L/opt/local/lib -L/usr/local/lib
configure:17358: checking jsapi.h usability
configure:17358: g++ -c -g -O2 -DXP_UNIX -I -I/opt/local/include -I/usr/local/include -I/usr/include conftest.cpp >&5
conftest.cpp:67:19: fatal error: jsapi.h: No such file or directory
compilation terminated.
configure:17358: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_STDINT_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_BUILTIN_EXPECT 1
| #define HAVE_BUILTIN_CTZ 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <jsapi.h>
configure:17358: result: no
configure:17358: checking jsapi.h presence
configure:17358: g++ -E -DXP_UNIX -I -I/opt/local/include -I/usr/local/include -I/usr/include conftest.cpp
conftest.cpp:34:19: fatal error: jsapi.h: No such file or directory
compilation terminated.
configure:17358: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_STDINT_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_BUILTIN_EXPECT 1
| #define HAVE_BUILTIN_CTZ 1
| /* end confdefs.h. */
| #include <jsapi.h>
configure:17358: result: no
configure:17358: checking for jsapi.h
configure:17358: result: no
configure:17363: checking js/jsapi.h usability
configure:17363: g++ -c -g -O2 -DXP_UNIX -I -I/opt/local/include -I/usr/local/include -I/usr/include conftest.cpp >&5
conftest.cpp:67:22: fatal error: js/jsapi.h: No such file or directory
compilation terminated.
configure:17363: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_STDINT_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_BUILTIN_EXPECT 1
| #define HAVE_BUILTIN_CTZ 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <js/jsapi.h>
configure:17363: result: no
configure:17363: checking js/jsapi.h presence
configure:17363: g++ -E -DXP_UNIX -I -I/opt/local/include -I/usr/local/include -I/usr/include conftest.cpp
conftest.cpp:34:22: fatal error: js/jsapi.h: No such file or directory
compilation terminated.
configure:17363: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.2.0"
| #define PACKAGE_STRING "Apache CouchDB 1.2.0"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE_URL ""
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.2.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_STDINT_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_BUILTIN_EXPECT 1
| #define HAVE_BUILTIN_CTZ 1
| /* end confdefs.h. */
| #include <js/jsapi.h>
configure:17363: result: no
configure:17363: checking for js/jsapi.h
configure:17363: result: no
configure:17370: error: Could not find the jsapi header.

Are the Mozilla SpiderMonkey headers installed?

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_ERLC_FLAGS_set=
ac_cv_env_ERLC_FLAGS_value=
ac_cv_env_ERLC_set=
ac_cv_env_ERLC_value=
ac_cv_env_ERL_set=
ac_cv_env_ERL_value=
ac_cv_env_FLAGS_set=
ac_cv_env_FLAGS_value=
ac_cv_env_HELP2MAN_EXECUTABLE_set=
ac_cv_env_HELP2MAN_EXECUTABLE_value=
ac_cv_env_JS_CFLAGS_set=
ac_cv_env_JS_CFLAGS_value=
ac_cv_env_JS_LIBS_set=
ac_cv_env_JS_LIBS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_mmap=yes
ac_cv_have_stddef_h=1
ac_cv_have_stdint_h=1
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_js_jsapi_h=no
ac_cv_header_jsapi_h=no
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_stdc=yes
ac_cv_header_stddef_h=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_mman_h=yes
ac_cv_header_sys_resource_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_ERL=/usr/bin/erl
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/bin/sed
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_safe_to_define___extensions__=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64'
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_pic_works_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_compiler_static_works_CXX=yes
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
pkg_cv_JS_CFLAGS='-DXP_UNIX -DJS_THREADSAFE -I/usr/include/nspr -I/usr/include/mozjs '
pkg_cv_JS_LIBS='-L/usr/lib/xulrunner-devel-5.0/lib -lmozjs -lplds4 -lplc4 -lnspr4 -lpthread -ldl '

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /tmp/1.2.x/dist/build-aux/missing --run aclocal-1.11'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /tmp/1.2.x/dist/build-aux/missing --run tar'
AR='ar'
AS='as'
AUTOCONF='${SHELL} /tmp/1.2.x/dist/build-aux/missing --run autoconf'
AUTOHEADER='${SHELL} /tmp/1.2.x/dist/build-aux/missing --run autoheader'
AUTOMAKE='${SHELL} /tmp/1.2.x/dist/build-aux/missing --run automake-1.11'
AWK='gawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-O2 -g -O2'
CPP='gcc -E'
CPPFLAGS='-DXP_UNIX -I -I/opt/local/include -I/usr/local/include -I/usr/include '
CURL_CFLAGS=''
CURL_CONFIG=''
CURL_LIBS=''
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DEFS=''
DEPDIR='.deps'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
ERL='/usr/bin/erl'
ERLANG_FLAGS='-I/usr/lib/erlang/usr/include'
ERLC=''
ERLC_FLAGS=''
EXEEXT=''
FGREP='/bin/grep -F'
FLAGS=''
GREP='/bin/grep'
HELP2MAN_EXECUTABLE=''
HELP2MAN_FALSE=''
HELP2MAN_TRUE=''
ICU_BIN=''
ICU_CFLAGS=''
ICU_CONFIG=''
ICU_CPPFLAGS=''
ICU_CXXFLAGS=''
ICU_LIBS=''
INIT_FALSE=''
INIT_TRUE=''
INNO_COMPILER_EXECUTABLE=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
JS_CFLAGS='-DXP_UNIX -I'
JS_LDFLAGS='-L/usr/lib/xulrunner-devel-5.0/lib -L/opt/local/lib -L/usr/local/lib '
JS_LIBS='-L/usr/lib/xulrunner-devel-5.0/lib -lmozjs -lplds4 -lplc4 -lnspr4 -lpthread -ldl '
JS_LIB_BINARY=''
LAUNCHD_FALSE=''
LAUNCHD_TRUE=''
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS='-L/usr/lib/xulrunner-devel-5.0/lib -L/opt/local/lib -L/usr/local/lib '
LIBOBJS=''
LIBS='-L/usr/lib/xulrunner-devel-5.0/lib -lmozjs -lplds4 -lplc4 -lnspr4 -lpthread -ldl -L/opt/local/lib -L/usr/local/lib '
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /tmp/1.2.x/dist/build-aux/missing --run makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
NM='/usr/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OTOOL64=''
OTOOL=''
PACKAGE='apache-couchdb'
PACKAGE_BUGREPORT='https://issues.apache.org/jira/browse/COUCHDB'
PACKAGE_NAME='Apache CouchDB'
PACKAGE_STRING='Apache CouchDB 1.2.0'
PACKAGE_TARNAME='apache-couchdb'
PACKAGE_URL=''
PACKAGE_VERSION='1.2.0'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/bash'
SNAPPY_MAJOR='1'
SNAPPY_MINOR='0'
SNAPPY_PATCHLEVEL='3'
STRIP='strip'
USE_CURL_FALSE=''
USE_CURL_TRUE=''
USE_EJSON_COMPARE_NIF_FALSE=''
USE_EJSON_COMPARE_NIF_TRUE=''
USE_NATIVE_MOCHIJSON_FALSE=''
USE_NATIVE_MOCHIJSON_TRUE=''
USE_OTP_NIFS_FALSE=''
USE_OTP_NIFS_TRUE=''
VERSION='1.2.0'
WINDOWS_FALSE=''
WINDOWS_TRUE='#'
abs_top_builddir=''
abs_top_srcdir=''
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_DUMPBIN=''
ac_cv_have_stddef_h='1'
ac_cv_have_stdint_h='1'
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
bug_uri=''
build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='unknown'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='NONE'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
initdir=''
install_sh='${SHELL} /tmp/1.2.x/dist/build-aux/install-sh'
launchddir=''
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localconfdir=''
localdatadir=''
localdocdir=''
localedir='${datarootdir}/locale'
localerlanglibdir=''
locallibbindir=''
locallibdir=''
localstatedir='${prefix}/var'
localstatelibdir=''
localstatelogdir=''
localstaterundir=''
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
msvc_redist_dir=''
msvc_redist_name=''
oldincludedir='/usr/include'
openssl_bin_dir=''
otp_release=''
package_author_address=''
package_author_name=''
package_identifier=''
package_name=''
package_tarname=''
pdfdir='${docdir}'
prefix='/tmp/1.2.x/install'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
version=''
version_major=''
version_minor=''
version_release=''
version_revision=''
version_stage=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "Apache CouchDB"
#define PACKAGE_TARNAME "apache-couchdb"
#define PACKAGE_VERSION "1.2.0"
#define PACKAGE_STRING "Apache CouchDB 1.2.0"
#define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
#define PACKAGE_URL ""
#define PACKAGE "apache-couchdb"
#define VERSION "1.2.0"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define HAVE_STDINT_H 1
#define HAVE_STDDEF_H 1
#define HAVE_SYS_MMAN_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_BUILTIN_EXPECT 1
#define HAVE_BUILTIN_CTZ 1

configure: exit 1
maas@wintermute dist %