Revision 623835383165 () - Diff

Link to this snippet: https://friendpaste.com/2M1ijtykz1eDwyZLXNAgsI
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
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.3.0a-766d461-git, which was
generated by GNU Autoconf 2.61. Invocation command line was

$ ./configure --prefix=/opt/couchdb6 --with-erlang=/opt/r14b03/lib/erlang/usr/include --with-js-include=/Users/fdmanana/sm185/install/include --with-js-lib=/Users/fdmanana/sm185/install/lib

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

hostname = Dorian-2.local
uname -m = x86_64
uname -r = 11.3.0
uname -s = Darwin
uname -v = Darwin Kernel Version 11.3.0: Thu Jan 12 18:47:41 PST 2012; root:xnu-1699.24.23~1/RELEASE_X86_64

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

/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = Mach kernel version:
Darwin Kernel Version 11.3.0: Thu Jan 12 18:47:41 PST 2012; root:xnu-1699.24.23~1/RELEASE_X86_64
Kernel configured for up to 8 processors.
4 processors are physically available.
8 processors are logically available.
Processor type: i486 (Intel 80486)
Processors active: 0 1 2 3 4 5 6 7
Primary memory available: 8.00 gigabytes
Default processor set: 125 tasks, 628 threads, 8 processors
Load average: 4.12, Mach factor: 3.87
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown

PATH: /Users/fdmanana/bin
PATH: /opt/r14b04/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/sbin
PATH: /sbin
PATH: /usr/local/bin
PATH: /usr/X11/bin


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

configure:1974: checking for a BSD-compatible install
configure:2030: result: /usr/bin/install -c
configure:2041: checking whether build environment is sane
configure:2084: result: yes
configure:2112: checking for a thread-safe mkdir -p
configure:2151: result: build-aux/install-sh -c -d
configure:2164: checking for gawk
configure:2194: result: no
configure:2164: checking for mawk
configure:2194: result: no
configure:2164: checking for nawk
configure:2194: result: no
configure:2164: checking for awk
configure:2180: found /usr/bin/awk
configure:2191: result: awk
configure:2202: checking whether make sets $(MAKE)
configure:2223: result: yes
configure:2529: checking for gcc
configure:2545: found /usr/bin/gcc
configure:2556: result: gcc
configure:2794: checking for C compiler version
configure:2801: gcc --version >&5
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)
Copyright (C) 2007 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:2804: $? = 0
configure:2811: gcc -v >&5
Using built-in specs.
Target: i686-apple-darwin11
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2335.15~25/src/configure --disable-checking --enable-werror --prefix=/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2335.15~25/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)
configure:2814: $? = 0
configure:2821: gcc -V >&5
llvm-gcc-4.2: argument to `-V' is missing
configure:2824: $? = 1
configure:2847: checking for C compiler default output file name
configure:2874: gcc conftest.c >&5
configure:2877: $? = 0
configure:2915: result: a.out
configure:2932: checking whether the C compiler works
configure:2942: ./a.out
configure:2945: $? = 0
configure:2962: result: yes
configure:2969: checking whether we are cross compiling
configure:2971: result: no
configure:2974: checking for suffix of executables
configure:2981: gcc -o conftest conftest.c >&5
configure:2984: $? = 0
configure:3008: result:
configure:3014: checking for suffix of object files
configure:3040: gcc -c conftest.c >&5
configure:3043: $? = 0
configure:3066: result: o
configure:3070: checking whether we are using the GNU C compiler
configure:3099: gcc -c conftest.c >&5
configure:3105: $? = 0
configure:3122: result: yes
configure:3127: checking whether gcc accepts -g
configure:3157: gcc -c -g conftest.c >&5
configure:3163: $? = 0
configure:3262: result: yes
configure:3279: checking for gcc option to accept ISO C89
configure:3353: gcc -c -g -O2 conftest.c >&5
configure:3359: $? = 0
configure:3382: result: none needed
configure:3411: checking for style of include used by make
configure:3439: result: GNU
configure:3464: checking dependency style of gcc
configure:3555: result: gcc3
configure:3601: checking build system type
configure:3619: result: i386-apple-darwin11.3.0
configure:3641: checking host system type
configure:3656: result: i386-apple-darwin11.3.0
configure:3699: checking how to print strings
configure:3726: result: printf
configure:3747: checking for a sed that does not truncate output
configure:3826: result: /usr/bin/sed
configure:3844: checking for grep that handles long lines and -e
configure:3918: result: /usr/bin/grep
configure:3923: checking for egrep
configure:4001: result: /usr/bin/grep -E
configure:4006: checking for fgrep
configure:4084: result: /usr/bin/grep -F
configure:4119: checking for ld used by gcc
configure:4186: result: /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
configure:4195: checking if the linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld
configure:4210: result: no
configure:4222: checking for BSD- or MS-compatible name lister (nm)
configure:4271: result: /usr/bin/nm
configure:4405: checking the name lister (/usr/bin/nm) interface
configure:4412: gcc -c -g -O2 conftest.c >&5
configure:4415: /usr/bin/nm "conftest.o"
configure:4418: output
000000000000018c S _some_variable
configure:4425: result: BSD nm
configure:4428: checking whether ln -s works
configure:4432: result: yes
configure:4440: checking the maximum length of command line arguments
configure:4565: result: 196608
configure:4582: checking whether the shell understands some XSI constructs
configure:4592: result: yes
configure:4596: checking whether the shell understands "+="
configure:4602: result: yes
configure:4637: checking for /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld option to reload object files
configure:4644: result: -r
configure:4713: checking for objdump
configure:4743: result: no
configure:4773: checking how to recognize dependent libraries
configure:4975: result: pass_all
configure:5035: checking for ar
configure:5051: found /usr/bin/ar
configure:5062: result: ar
configure:5144: checking for strip
configure:5160: found /usr/bin/strip
configure:5171: result: strip
configure:5247: checking for ranlib
configure:5263: found /usr/bin/ranlib
configure:5274: result: ranlib
configure:5380: checking command to parse /usr/bin/nm output from gcc object
configure:5498: gcc -c -g -O2 conftest.c >&5
configure:5501: $? = 0
configure:5505: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:5508: $? = 0
cannot find nm_test_var in conftest.nm
configure:5498: gcc -c -g -O2 conftest.c >&5
configure:5501: $? = 0
configure:5505: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' \> conftest.nm
configure:5508: $? = 0
configure:5562: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
configure:5565: $? = 0
configure:5603: result: ok
configure:5893: checking for dsymutil
configure:5909: found /usr/bin/dsymutil
configure:5920: result: dsymutil
configure:5989: checking for nmedit
configure:6005: found /usr/bin/nmedit
configure:6016: result: nmedit
configure:6085: checking for lipo
configure:6101: found /usr/bin/lipo
configure:6112: result: lipo
configure:6181: checking for otool
configure:6197: found /usr/bin/otool
configure:6208: result: otool
configure:6277: checking for otool64
configure:6307: result: no
configure:6356: checking for -single_module linker flag
gcc -g -O2 -o libconftest.dylib -dynamiclib -Wl,-single_module conftest.c
configure:6383: result: yes
configure:6385: checking for -exported_symbols_list linker flag
configure:6415: gcc -o conftest -g -O2 -Wl,-exported_symbols_list,conftest.sym conftest.c >&5
configure:6421: $? = 0
configure:6440: result: yes
configure:6442: checking for -force_load linker flag
gcc -g -O2 -c -o conftest.o conftest.c
ar cru libconftest.a conftest.o
ranlib libconftest.a
gcc -g -O2 -o conftest conftest.c -Wl,-force_load,./libconftest.a
configure:6472: result: yes
configure:6514: checking how to run the C preprocessor
configure:6554: gcc -E conftest.c
configure:6560: $? = 0
configure:6591: gcc -E conftest.c
conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
configure:6597: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.3.0a-766d461-git"
| #define PACKAGE_STRING "Apache CouchDB 1.3.0a-766d461-git"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.3.0a-766d461-git"
| #define _GNU_SOURCE 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:6630: result: gcc -E
configure:6659: gcc -E conftest.c
configure:6665: $? = 0
configure:6696: gcc -E conftest.c
conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
configure:6702: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.3.0a-766d461-git"
| #define PACKAGE_STRING "Apache CouchDB 1.3.0a-766d461-git"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.3.0a-766d461-git"
| #define _GNU_SOURCE 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:6740: checking for ANSI C header files
configure:6770: gcc -c -g -O2 conftest.c >&5
configure:6776: $? = 0
configure:6875: gcc -o conftest -g -O2 conftest.c >&5
configure:6878: $? = 0
configure:6884: ./conftest
configure:6887: $? = 0
configure:6904: result: yes
configure:6928: checking for sys/types.h
configure:6949: gcc -c -g -O2 conftest.c >&5
configure:6955: $? = 0
configure:6971: result: yes
configure:6928: checking for sys/stat.h
configure:6949: gcc -c -g -O2 conftest.c >&5
configure:6955: $? = 0
configure:6971: result: yes
configure:6928: checking for stdlib.h
configure:6949: gcc -c -g -O2 conftest.c >&5
configure:6955: $? = 0
configure:6971: result: yes
configure:6928: checking for string.h
configure:6949: gcc -c -g -O2 conftest.c >&5
configure:6955: $? = 0
configure:6971: result: yes
configure:6928: checking for memory.h
configure:6949: gcc -c -g -O2 conftest.c >&5
configure:6955: $? = 0
configure:6971: result: yes
configure:6928: checking for strings.h
configure:6949: gcc -c -g -O2 conftest.c >&5
configure:6955: $? = 0
configure:6971: result: yes
configure:6928: checking for inttypes.h
configure:6949: gcc -c -g -O2 conftest.c >&5
configure:6955: $? = 0
configure:6971: result: yes
configure:6928: checking for stdint.h
configure:6949: gcc -c -g -O2 conftest.c >&5
configure:6955: $? = 0
configure:6971: result: yes
configure:6928: checking for unistd.h
configure:6949: gcc -c -g -O2 conftest.c >&5
configure:6955: $? = 0
configure:6971: result: yes
configure:6987: checking for dlfcn.h
configure:7008: gcc -c -g -O2 conftest.c >&5
configure:7014: $? = 0
configure:7030: result: yes
configure:7467: checking for objdir
configure:7482: result: .libs
configure:7753: checking if gcc supports -fno-rtti -fno-exceptions
configure:7771: 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
configure:7775: $? = 0
configure:7788: result: no
configure:7808: checking for gcc option to produce PIC
configure:8093: result: -fno-common -DPIC
configure:8105: checking if gcc PIC flag -fno-common -DPIC works
configure:8123: gcc -c -g -O2 -fno-common -DPIC -DPIC conftest.c >&5
configure:8127: $? = 0
configure:8140: result: yes
configure:8164: checking if gcc static flag -static works
configure:8192: result: no
configure:8207: checking if gcc supports -c -o file.o
configure:8228: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
configure:8232: $? = 0
configure:8254: result: yes
configure:8262: checking if gcc supports -c -o file.o
configure:8309: result: yes
configure:8342: checking whether the gcc linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
configure:9493: result: yes
configure:9738: checking dynamic linker characteristics
configure:10443: result: darwin11.3.0 dyld
configure:10550: checking how to hardcode library paths into programs
configure:10575: result: immediate
configure:11400: checking whether stripping libraries is possible
configure:11414: result: yes
configure:11440: checking if libtool supports shared libraries
configure:11442: result: yes
configure:11445: checking whether to build shared libraries
configure:11466: result: yes
configure:11469: checking whether to build static libraries
configure:11473: result: no
configure:11509: checking whether ln -s works
configure:11513: result: yes
configure:11574: checking for pkg-config
configure:11592: found /usr/local/bin/pkg-config
configure:11604: result: /usr/local/bin/pkg-config
configure:11633: checking pkg-config is at least version 0.9.0
configure:11636: result: yes
configure:11707: checking for g++
configure:11723: found /usr/bin/g++
configure:11734: result: g++
configure:11765: checking for C++ compiler version
configure:11772: g++ --version >&5
i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)
Copyright (C) 2007 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:11775: $? = 0
configure:11782: g++ -v >&5
Using built-in specs.
Target: i686-apple-darwin11
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2335.15~25/src/configure --disable-checking --enable-werror --prefix=/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2335.15~25/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)
configure:11785: $? = 0
configure:11792: g++ -V >&5
llvm-g++-4.2: argument to `-V' is missing
configure:11795: $? = 1
configure:11798: checking whether we are using the GNU C++ compiler
configure:11827: g++ -c conftest.cpp >&5
configure:11833: $? = 0
configure:11850: result: yes
configure:11855: checking whether g++ accepts -g
configure:11885: g++ -c -g conftest.cpp >&5
configure:11891: $? = 0
configure:11990: result: yes
configure:12015: checking dependency style of g++
configure:12106: result: gcc3
configure:12129: checking how to run the C++ preprocessor
configure:12165: g++ -E conftest.cpp
configure:12171: $? = 0
configure:12202: g++ -E conftest.cpp
conftest.cpp:23:28: error: ac_nonexistent.h: No such file or directory
configure:12208: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.3.0a-766d461-git"
| #define PACKAGE_STRING "Apache CouchDB 1.3.0a-766d461-git"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.3.0a-766d461-git"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:12241: result: g++ -E
configure:12270: g++ -E conftest.cpp
configure:12276: $? = 0
configure:12307: g++ -E conftest.cpp
conftest.cpp:23:28: error: ac_nonexistent.h: No such file or directory
configure:12313: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.3.0a-766d461-git"
| #define PACKAGE_STRING "Apache CouchDB 1.3.0a-766d461-git"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.3.0a-766d461-git"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:12490: checking for ld used by g++
configure:12557: result: /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
configure:12566: checking if the linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld
configure:12581: result: no
configure:12636: checking whether the g++ linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
configure:13622: result: yes
configure:13650: g++ -c -g -O2 conftest.cpp >&5
configure:13653: $? = 0
configure:13835: checking for g++ option to produce PIC
configure:14157: result: -fno-common -DPIC
configure:14166: checking if g++ PIC flag -fno-common -DPIC works
configure:14184: g++ -c -g -O2 -fno-common -DPIC -DPIC conftest.cpp >&5
configure:14188: $? = 0
configure:14201: result: yes
configure:14222: checking if g++ static flag -static works
configure:14250: result: no
configure:14262: checking if g++ supports -c -o file.o
configure:14283: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
configure:14287: $? = 0
configure:14309: result: yes
configure:14314: checking if g++ supports -c -o file.o
configure:14361: result: yes
configure:14391: checking whether the g++ linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
configure:14419: result: yes
configure:14562: checking dynamic linker characteristics
configure:15201: result: darwin11.3.0 dyld
configure:15254: checking how to hardcode library paths into programs
configure:15279: result: immediate
configure:15324: checking whether byte ordering is bigendian
configure:15357: g++ -c -g -O2 conftest.cpp >&5
configure:15363: $? = 0
configure:15395: g++ -c -g -O2 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:30: error: 'big' was not declared in this scope
conftest.cpp:30: error: expected `;' before 'endian'
configure:15401: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.3.0a-766d461-git"
| #define PACKAGE_STRING "Apache CouchDB 1.3.0a-766d461-git"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.3.0a-766d461-git"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <sys/param.h>
|
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| not big endian
| #endif
|
| ;
| return 0;
| }
configure:15541: result: no
configure:15569: checking for stdint.h
configure:15575: result: yes
configure:15579: checking stddef.h usability
configure:15596: g++ -c -g -O2 conftest.cpp >&5
configure:15602: $? = 0
configure:15616: result: yes
configure:15620: checking stddef.h presence
configure:15635: g++ -E conftest.cpp
configure:15641: $? = 0
configure:15655: result: yes
configure:15688: checking for stddef.h
configure:15696: result: yes
configure:15579: checking sys/mman.h usability
configure:15596: g++ -c -g -O2 conftest.cpp >&5
configure:15602: $? = 0
configure:15616: result: yes
configure:15620: checking sys/mman.h presence
configure:15635: g++ -E conftest.cpp
configure:15641: $? = 0
configure:15655: result: yes
configure:15688: checking for sys/mman.h
configure:15696: result: yes
configure:15579: checking sys/resource.h usability
configure:15596: g++ -c -g -O2 conftest.cpp >&5
configure:15602: $? = 0
configure:15616: result: yes
configure:15620: checking sys/resource.h presence
configure:15635: g++ -E conftest.cpp
configure:15641: $? = 0
configure:15655: result: yes
configure:15688: checking for sys/resource.h
configure:15696: result: yes
configure:15709: checking for mmap
configure:15765: g++ -o conftest -g -O2 conftest.cpp >&5
configure:15771: $? = 0
configure:15788: result: yes
configure:15792: checking if the compiler supports __builtin_expect
configure:15818: g++ -c -g -O2 conftest.cpp >&5
configure:15824: $? = 0
configure:15831: result: yes
configure:15854: checking if the compiler supports __builtin_ctzll
configure:15880: g++ -c -g -O2 conftest.cpp >&5
configure:15886: $? = 0
configure:15893: result: yes
configure:15939: checking for pthread_create in -lpthread
configure:15966: g++ -o conftest -g -O2 conftest.cpp -lpthread >&5
conftest.cpp: In function 'int main()':
conftest.cpp:33: error: invalid conversion from 'void*' to '_opaque_pthread_t**'
conftest.cpp:33: error: initializing argument 1 of 'int pthread_create(_opaque_pthread_t**, const pthread_attr_t*, void* (*)(void*), void*)'
conftest.cpp:33: error: invalid conversion from 'void*' to 'const pthread_attr_t*'
conftest.cpp:33: error: initializing argument 2 of 'int pthread_create(_opaque_pthread_t**, const pthread_attr_t*, void* (*)(void*), void*)'
conftest.cpp:33: error: invalid conversion from 'void*' to 'void* (*)(void*)'
conftest.cpp:33: error: initializing argument 3 of 'int pthread_create(_opaque_pthread_t**, const pthread_attr_t*, void* (*)(void*), void*)'
configure:15972: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "Apache CouchDB"
| #define PACKAGE_TARNAME "apache-couchdb"
| #define PACKAGE_VERSION "1.3.0a-766d461-git"
| #define PACKAGE_STRING "Apache CouchDB 1.3.0a-766d461-git"
| #define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
| #define PACKAGE "apache-couchdb"
| #define VERSION "1.3.0a-766d461-git"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #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:15994: result: no
configure:16000: checking for erl
configure:16030: result: /opt/r14b03/bin/erl
configure:16080: checking for JS
configure:16087: $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:16090: $? = 1
configure:16103: $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:16106: $? = 1
configure:16119: result: no
No package 'mozjs185' found
configure:16138: checking for JS
configure:16145: $PKG_CONFIG --exists --print-errors "mozilla-js >= 1.7"
Package mozilla-js was not found in the pkg-config search path.
Perhaps you should add the directory containing `mozilla-js.pc'
to the PKG_CONFIG_PATH environment variable
No package 'mozilla-js' found
configure:16148: $? = 1
configure:16161: $PKG_CONFIG --exists --print-errors "mozilla-js >= 1.7"
Package mozilla-js was not found in the pkg-config search path.
Perhaps you should add the directory containing `mozilla-js.pc'
to the PKG_CONFIG_PATH environment variable
No package 'mozilla-js' found
configure:16164: $? = 1
configure:16177: result: no
No package 'mozilla-js' found
configure:16412: checking jsapi.h usability
configure:16429: g++ -c -g -O2 -DXP_UNIX -I/Users/fdmanana/sm185/install/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js conftest.cpp >&5
configure:16435: $? = 0
configure:16449: result: yes
configure:16453: checking jsapi.h presence
configure:16468: g++ -E -DXP_UNIX -I/Users/fdmanana/sm185/install/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js conftest.cpp
configure:16474: $? = 0
configure:16488: result: yes
configure:16521: checking for jsapi.h
configure:16528: result: yes
configure:16687: checking for JS_NewContext in -lmozjs185
configure:16722: g++ -o conftest -g -O2 -DXP_UNIX -I/Users/fdmanana/sm185/install/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js -L/opt/local/lib -L/usr/local/lib conftest.cpp -lmozjs185 -L/Users/fdmanana/sm185/install/lib -L/opt/local/lib -L/usr/local/lib >&5
ld: warning: directory not found for option '-L/opt/local/lib'
ld: warning: directory not found for option '-L/opt/local/lib'
configure:16728: $? = 0
configure:16746: result: yes
configure:17100: checking for JS_NewCompartmentAndGlobalObject in -lmozjs185
configure:17135: g++ -o conftest -g -O2 -DXP_UNIX -I/Users/fdmanana/sm185/install/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js -L/opt/local/lib -L/usr/local/lib conftest.cpp -lmozjs185 -L/Users/fdmanana/sm185/install/lib -L/opt/local/lib -L/usr/local/lib >&5
ld: warning: directory not found for option '-L/opt/local/lib'
ld: warning: directory not found for option '-L/opt/local/lib'
configure:17141: $? = 0
configure:17160: result: yes
configure:17166: checking whether JSOPTION_ANONFUNFIX is declared
configure:17196: g++ -c -g -O2 -DXP_UNIX -I/Users/fdmanana/sm185/install/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js conftest.cpp >&5
configure:17202: $? = 0
configure:17217: result: yes
configure:17252: checking for JS_ThrowStopIteration in -lmozjs185
configure:17287: g++ -o conftest -g -O2 -DXP_UNIX -I/Users/fdmanana/sm185/install/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js -L/opt/local/lib -L/usr/local/lib conftest.cpp -lmozjs185 -L/Users/fdmanana/sm185/install/lib -L/opt/local/lib -L/usr/local/lib >&5
ld: warning: directory not found for option '-L/opt/local/lib'
ld: warning: directory not found for option '-L/opt/local/lib'
configure:17293: $? = 0
configure:17312: result: yes
configure:17324: checking for JS_GetStringCharsAndLength in -lmozjs185
configure:17359: g++ -o conftest -g -O2 -DXP_UNIX -I/Users/fdmanana/sm185/install/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js -L/opt/local/lib -L/usr/local/lib conftest.cpp -lmozjs185 -L/Users/fdmanana/sm185/install/lib -L/opt/local/lib -L/usr/local/lib >&5
ld: warning: directory not found for option '-L/opt/local/lib'
ld: warning: directory not found for option '-L/opt/local/lib'
configure:17365: $? = 0
configure:17384: result: yes
configure:17399: checking for JSScript*
configure:17431: g++ -c -g -O2 -DXP_UNIX -I/Users/fdmanana/sm185/install/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js conftest.cpp >&5
configure:17437: $? = 0
configure:17452: result: yes
configure:17599: checking for icu-config
configure:17617: found /usr/local/bin/icu-config
configure:17630: result: /usr/local/bin/icu-config
configure:17646: checking for ICU >= 3.4.1
configure:17650: result: yes
configure:17654: checking ICU_CFLAGS
configure:17657: result: -O3 -w -pipe -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long
configure:17660: checking ICU_CXXFLAGS
configure:17663: result: -O3 -w -pipe -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long
configure:17666: checking ICU_LIBS
configure:17669: result: -headerpad_max_install_names -lpthread -lm -L/usr/local/Cellar/icu4c/4.4.1/lib -licui18n -licuuc -licudata -lpthread -lm
configure:17722: checking for curl-config
configure:17740: found /usr/bin/curl-config
configure:17753: result: /usr/bin/curl-config
configure:17769: checking for curl >= 7.18.0
configure:17773: result: yes
configure:17777: checking CURL_CFLAGS
configure:17780: result:
configure:17783: checking CURL_LIBS
configure:17786: result: -lcurl
configure:17889: checking for erlc
configure:17919: result: /opt/r14b03/bin/erlc
configure:17946: checking erl_driver.h usability
configure:17963: g++ -c -g -O2 -I/opt/r14b03/lib/erlang/usr/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js conftest.cpp >&5
configure:17969: $? = 0
configure:17983: result: yes
configure:17987: checking erl_driver.h presence
configure:18002: g++ -E -I/opt/r14b03/lib/erlang/usr/include -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js conftest.cpp
configure:18008: $? = 0
configure:18022: result: yes
configure:18055: checking for erl_driver.h
configure:18062: result: yes
configure:18086: checking for help2man
configure:18119: result: no
configure:18125: WARNING: You will be unable to regenerate any man pages.
configure:18161: checking location of init directory
configure:18177: result: not found
configure:18184: checking location of launchd directory
configure:18191: result: ${prefix}/Library/LaunchDaemons
configure:18571: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by Apache CouchDB config.status 1.3.0a-766d461-git, which was
generated by GNU Autoconf 2.61. Invocation command line was

CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status

on Dorian-2.local

config.status:1027: creating Makefile
config.status:1027: creating bin/couch-config.tpl
config.status:1027: creating bin/couchdb.tpl
config.status:1027: creating bin/couchdb.bat.tpl
config.status:1027: creating bin/Makefile
config.status:1027: creating etc/couchdb/Makefile
config.status:1027: creating etc/couchdb/default.ini.tpl
config.status:1027: creating etc/default/Makefile
config.status:1027: creating etc/init/couchdb.tpl
config.status:1027: creating etc/init/Makefile
config.status:1027: creating etc/launchd/org.apache.couchdb.plist.tpl
config.status:1027: creating etc/launchd/Makefile
config.status:1027: creating etc/logrotate.d/couchdb.tpl
config.status:1027: creating etc/logrotate.d/Makefile
config.status:1027: creating etc/windows/Makefile
config.status:1027: creating etc/Makefile
config.status:1027: creating share/Makefile
config.status:1027: creating src/Makefile
config.status:1027: creating src/couch_index/Makefile
config.status:1027: creating src/couch_mrview/Makefile
config.status:1027: creating src/couch_replicator/Makefile
config.status:1027: creating src/couchdb/couch.app.tpl
config.status:1027: creating src/couchdb/Makefile
config.status:1027: creating src/couchdb/priv/Makefile
config.status:1027: creating src/erlang-oauth/Makefile
config.status:1027: creating src/etap/Makefile
config.status:1027: creating src/ibrowse/Makefile
config.status:1027: creating src/mochiweb/Makefile
config.status:1027: creating src/snappy/Makefile
config.status:1027: creating src/snappy/google-snappy/snappy-stubs-public.h
config.status:1027: creating src/ejson/Makefile
config.status:1027: creating test/Makefile
config.status:1027: creating test/bench/Makefile
config.status:1027: creating test/etap/Makefile
config.status:1027: creating test/etap/test_util.erl
config.status:1027: creating test/javascript/Makefile
config.status:1027: creating test/view_server/Makefile
config.status:1027: creating utils/Makefile
config.status:1027: creating var/Makefile
config.status:1027: creating config.h
config.status:1027: creating src/snappy/google-snappy/config.h
config.status:1314: executing depfiles commands
config.status:1314: executing libtool commands

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

ac_cv_build=i386-apple-darwin11.3.0
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=set
ac_cv_env_ERLC_FLAGS_value=+debug_info
ac_cv_env_ERLC_set=set
ac_cv_env_ERLC_value=/opt/r14b03/bin/erlc
ac_cv_env_ERL_set=set
ac_cv_env_ERL_value=/opt/r14b03/bin/erl
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_decl_JSOPTION_ANONFUNFIX=yes
ac_cv_have_stddef_h=1
ac_cv_have_stdint_h=1
ac_cv_header_dlfcn_h=yes
ac_cv_header_erl_driver_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_jsapi_h=yes
ac_cv_header_memory_h=yes
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=i386-apple-darwin11.3.0
ac_cv_lib_mozjs185_JS_NewContext=yes
ac_cv_lib_mozjs185___JS_GetStringCharsAndLength=yes
ac_cv_lib_mozjs185___JS_NewCompartmentAndGlobalObject=yes
ac_cv_lib_mozjs185___JS_ThrowStopIteration=yes
ac_cv_objext=o
ac_cv_path_CURL_CONFIG=/usr/bin/curl-config
ac_cv_path_EGREP='/usr/bin/grep -E'
ac_cv_path_ERL=/opt/r14b03/bin/erl
ac_cv_path_ERLC=/opt/r14b03/bin/erlc
ac_cv_path_FGREP='/usr/bin/grep -F'
ac_cv_path_GREP=/usr/bin/grep
ac_cv_path_ICU_CONFIG=/usr/local/bin/icu-config
ac_cv_path_SED=/usr/bin/sed
ac_cv_path_ac_pt_PKG_CONFIG=/usr/local/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=awk
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_DSYMUTIL=dsymutil
ac_cv_prog_ac_ct_LIPO=lipo
ac_cv_prog_ac_ct_NMEDIT=nmedit
ac_cv_prog_ac_ct_OTOOL=otool
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_type_JSScriptp=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
lt_cv_apple_cc_single_mod=yes
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_exported_symbols_list=yes
lt_cv_ld_force_load=yes
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
lt_cv_path_LDCXX=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
lt_cv_path_NM=/usr/bin/nm
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
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=no
lt_cv_prog_compiler_static_works_CXX=no
lt_cv_prog_gnu_ld=no
lt_cv_prog_gnu_ldcxx=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"\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/^[BCDEGRST]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[BCDEGRST]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=196608

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

ACLOCAL='${SHELL} /Users/fdmanana/git/hub/couchdb7/build-aux/missing --run aclocal-1.10'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /Users/fdmanana/git/hub/couchdb7/build-aux/missing --run tar'
AR='ar'
AS='as'
AUTOCONF='${SHELL} /Users/fdmanana/git/hub/couchdb7/build-aux/missing --run autoconf'
AUTOHEADER='${SHELL} /Users/fdmanana/git/hub/couchdb7/build-aux/missing --run autoheader'
AUTOMAKE='${SHELL} /Users/fdmanana/git/hub/couchdb7/build-aux/missing --run automake-1.10'
AWK='awk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-O2 -g -O2'
CPP='gcc -E'
CPPFLAGS=' -I/opt/local/include -I/opt/local/include/js -I/usr/local/include -I/usr/local/include/js -I/usr/include -I/usr/include/js '
CURL_CFLAGS=''
CURL_CONFIG='/usr/bin/curl-config'
CURL_LIBS='-lcurl'
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DLLTOOL='dlltool'
DSYMUTIL='dsymutil'
DUMPBIN=''
ECHO_C='ECHO_N=''
ECHO_T=''
EGREP='/usr/bin/grep -E'
ERL='/opt/r14b03/bin/erl'
ERLANG_FLAGS='-I/opt/r14b03/lib/erlang/usr/include'
ERLC='/opt/r14b03/bin/erlc'
ERLC_FLAGS='+debug_info'
EXEEXT=''
FGREP='/usr/bin/grep -F'
FLAGS=''
GREP='/usr/bin/grep'
HELP2MAN_EXECUTABLE=''
HELP2MAN_FALSE=''
HELP2MAN_TRUE='#'
ICU_BIN=''
ICU_CFLAGS='-O3 -w -pipe -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long '
ICU_CONFIG='/usr/local/bin/icu-config'
ICU_CPPFLAGS=''
ICU_CXXFLAGS='-O3 -w -pipe -W -Wall -ansi -pedantic -Wpointer-arith -Wwrite-strings -Wno-long-long '
ICU_LIBS='-headerpad_max_install_names -lpthread -lm -L/usr/local/Cellar/icu4c/4.4.1/lib -licui18n -licuuc -licudata -lpthread -lm '
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/Users/fdmanana/sm185/install/include'
JS_LIBS='-lmozjs185 -lm -L/Users/fdmanana/sm185/install/lib'
JS_LIB_BINARY=''
LAUNCHD_FALSE='#'
LAUNCHD_TRUE=''
LD='/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld'
LDFLAGS=' -L/opt/local/lib -L/usr/local/lib '
LIBOBJS=''
LIBS=' -L/opt/local/lib -L/usr/local/lib '
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO='lipo'
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /Users/fdmanana/git/hub/couchdb7/build-aux/missing --run makeinfo'
NM='/usr/bin/nm'
NMEDIT='nmedit'
OBJDUMP='false'
OBJEXT='o'
OTOOL64=':'
OTOOL='otool'
PACKAGE='apache-couchdb'
PACKAGE_BUGREPORT='https://issues.apache.org/jira/browse/COUCHDB'
PACKAGE_NAME='Apache CouchDB'
PACKAGE_STRING='Apache CouchDB 1.3.0a-766d461-git'
PACKAGE_TARNAME='apache-couchdb'
PACKAGE_VERSION='1.3.0a-766d461-git'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/local/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
RANLIB='ranlib'
SED='/usr/bin/sed'
SET_MAKE=''
SHELL='/bin/sh'
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.3.0a-766d461-git'
WINDOWS_FALSE=''
WINDOWS_TRUE='#'
abs_top_builddir=''
abs_top_srcdir=''
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_DUMPBIN=''
ac_cv_have_stddef_h='1'
ac_cv_have_stdint_h='1'
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='https://issues.apache.org/jira/browse/COUCHDB'
build='i386-apple-darwin11.3.0'
build_alias=''
build_cpu='i386'
build_os='darwin11.3.0'
build_vendor='apple'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='i386-apple-darwin11.3.0'
host_alias=''
host_cpu='i386'
host_os='darwin11.3.0'
host_vendor='apple'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
initdir=''
install_sh='$(SHELL) /Users/fdmanana/git/hub/couchdb7/build-aux/install-sh'
launchddir='${prefix}/Library/LaunchDaemons'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localconfdir='${prefix}/etc/couchdb'
localdatadir='${datarootdir}/couchdb'
localdocdir='${datarootdir}/doc/couchdb'
localedir='${datarootdir}/locale'
localerlanglibdir='${exec_prefix}/lib/couchdb/erlang/lib'
locallibbindir='${exec_prefix}/lib/couchdb/bin'
locallibdir='${exec_prefix}/lib/couchdb'
localstatedir='${prefix}/var'
localstatelibdir='${prefix}/var/lib/couchdb'
localstatelogdir='${prefix}/var/log/couchdb'
localstaterundir='${prefix}/var/run/couchdb'
mandir='${datarootdir}/man'
mkdir_p='$(top_builddir)/build-aux/install-sh -c -d'
msvc_redist_dir=''
msvc_redist_name=''
oldincludedir='/usr/include'
openssl_bin_dir=''
otp_release='R14B03'
package_author_address='dev@couchdb.apache.org'
package_author_name='The Apache Software Foundation'
package_identifier='couchdb'
package_name='Apache CouchDB'
package_tarname='apache-couchdb'
pdfdir='${docdir}'
prefix='/opt/couchdb6'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
version='1.3.0a-766d461-git'
version_major='1'
version_minor='3'
version_release='-766d461-git'
version_revision='0'
version_stage='a'

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

#define PACKAGE_NAME "Apache CouchDB"
#define PACKAGE_TARNAME "apache-couchdb"
#define PACKAGE_VERSION "1.3.0a-766d461-git"
#define PACKAGE_STRING "Apache CouchDB 1.3.0a-766d461-git"
#define PACKAGE_BUGREPORT "https://issues.apache.org/jira/browse/COUCHDB"
#define PACKAGE "apache-couchdb"
#define VERSION "1.3.0a-766d461-git"
#define _GNU_SOURCE 1
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#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
#define SM185 1
#define SM180 1
#define HAVE_JS_GET_STRING_CHARS_AND_LENGTH 1
#define JSSCRIPT_TYPE JSScript*
#define COUCHJS_NAME "couchjs"
#define HAVE_CURL 1

configure: exit 0