File: config.log

package info (click to toggle)
paris-traceroute 0.92-dev-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 4,188 kB
  • ctags: 1,196
  • sloc: sh: 8,915; cpp: 5,740; makefile: 319; ansic: 2
file content (1215 lines) | stat: -rw-r--r-- 39,926 bytes parent folder | download | duplicates (2)
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
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by tupleroute configure 0.90-dev, which was
generated by GNU Autoconf 2.59.  Invocation command line was

  $ ./configure 

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

hostname = malm
uname -m = i386
uname -r = 8.8.1
uname -s = Darwin
uname -v = Darwin Kernel Version 8.8.1: Mon Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386

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

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
hostinfo               = Mach kernel version:
	 Darwin Kernel Version 8.8.1: Mon Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386
Kernel configured for up to 2 processors.
2 processors are physically available.
2 processors are logically available.
Processor type: i486 (Intel 80486)
Processors active: 0 1
Primary memory available: 1.00 gigabytes
Default processor set: 58 tasks, 160 threads, 2 processors
Load average: 0.59, Mach factor: 1.40
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/bin
PATH: /bin
PATH: /usr/sbin
PATH: /sbin
PATH: /usr/X11R6/bin
PATH: /usr/local/teTeX/bin/i386-apple-darwin-current
PATH: /sw/bin
PATH: /sw/sbin
PATH: /usr/local/bin
PATH: /usr/local/teTeX/bin/i386-apple-darwin-current
PATH: /sw/bin
PATH: /sw/sbin
PATH: /usr/local/bin


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

configure:1556: checking for a BSD-compatible install
configure:1611: result: /usr/bin/install -c
configure:1622: checking whether build environment is sane
configure:1665: result: yes
configure:1730: checking for gawk
configure:1759: result: no
configure:1730: checking for mawk
configure:1759: result: no
configure:1730: checking for nawk
configure:1759: result: no
configure:1730: checking for awk
configure:1746: found /usr/bin/awk
configure:1756: result: awk
configure:1766: checking whether make sets $(MAKE)
configure:1786: result: yes
configure:2008: checking for g++
configure:2024: found /usr/bin/g++
configure:2034: result: g++
configure:2050: checking for C++ compiler version
configure:2053: g++ --version </dev/null >&5
i686-apple-darwin8-g++-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build 5250)
Copyright (C) 2005 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:2056: $? = 0
configure:2058: g++ -v </dev/null >&5
Using built-in specs.
Target: i686-apple-darwin8
Configured with: /private/var/tmp/gcc/gcc-5250.obj~20/src/configure --disable-checking -enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.0/ --with-gxx-include-dir=/include/c++/4.0.0 --build=powerpc-apple-darwin8 --with-arch=pentium-m --with-tune=prescott --program-prefix= --host=i686-apple-darwin8 --target=i686-apple-darwin8
Thread model: posix
gcc version 4.0.1 (Apple Computer, Inc. build 5250)
configure:2061: $? = 0
configure:2063: g++ -V </dev/null >&5
g++: argument to `-V' is missing
configure:2066: $? = 1
configure:2089: checking for C++ compiler default output file name
configure:2092: g++    conftest.cc  >&5
configure:2095: $? = 0
configure:2141: result: a.out
configure:2146: checking whether the C++ compiler works
configure:2152: ./a.out
configure:2155: $? = 0
configure:2172: result: yes
configure:2179: checking whether we are cross compiling
configure:2181: result: no
configure:2184: checking for suffix of executables
configure:2186: g++ -o conftest    conftest.cc  >&5
configure:2189: $? = 0
configure:2214: result: 
configure:2220: checking for suffix of object files
configure:2241: g++ -c   conftest.cc >&5
configure:2244: $? = 0
configure:2266: result: o
configure:2270: checking whether we are using the GNU C++ compiler
configure:2294: g++ -c   conftest.cc >&5
configure:2300: $? = 0
configure:2304: test -z 
			 || test ! -s conftest.err
configure:2307: $? = 0
configure:2310: test -s conftest.o
configure:2313: $? = 0
configure:2326: result: yes
configure:2332: checking whether g++ accepts -g
configure:2353: g++ -c -g  conftest.cc >&5
configure:2359: $? = 0
configure:2363: test -z 
			 || test ! -s conftest.err
configure:2366: $? = 0
configure:2369: test -s conftest.o
configure:2372: $? = 0
configure:2383: result: yes
configure:2425: g++ -c -g -O2  conftest.cc >&5
configure:2431: $? = 0
configure:2435: test -z 
			 || test ! -s conftest.err
configure:2438: $? = 0
configure:2441: test -s conftest.o
configure:2444: $? = 0
configure:2470: g++ -c -g -O2  conftest.cc >&5
conftest.cc: In function 'int main()':
conftest.cc:15: error: 'exit' was not declared in this scope
configure:2476: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "tupleroute"
| #define PACKAGE_TARNAME "tupleroute"
| #define PACKAGE_VERSION "0.90-dev"
| #define PACKAGE_STRING "tupleroute 0.90-dev"
| #define PACKAGE_BUGREPORT "bugreports@paris-traceroute.net"
| #define PACKAGE "tupleroute"
| #define VERSION "0.90-dev"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:2425: g++ -c -g -O2  conftest.cc >&5
/usr/include/stdlib.h:158: error: declaration of 'void std::exit(int)' throws different exceptions
conftest.cc:11: error: than previous declaration 'void std::exit(int) throw ()'
configure:2431: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "tupleroute"
| #define PACKAGE_TARNAME "tupleroute"
| #define PACKAGE_VERSION "0.90-dev"
| #define PACKAGE_STRING "tupleroute 0.90-dev"
| #define PACKAGE_BUGREPORT "bugreports@paris-traceroute.net"
| #define PACKAGE "tupleroute"
| #define VERSION "0.90-dev"
| /* end confdefs.h.  */
| extern "C" void std::exit (int) throw (); using std::exit;
| #include <stdlib.h>
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:2425: g++ -c -g -O2  conftest.cc >&5
configure:2431: $? = 0
configure:2435: test -z 
			 || test ! -s conftest.err
configure:2438: $? = 0
configure:2441: test -s conftest.o
configure:2444: $? = 0
configure:2470: g++ -c -g -O2  conftest.cc >&5
configure:2476: $? = 0
configure:2480: test -z 
			 || test ! -s conftest.err
configure:2483: $? = 0
configure:2486: test -s conftest.o
configure:2489: $? = 0
configure:2523: checking for style of include used by make
configure:2551: result: GNU
configure:2579: checking dependency style of g++
configure:2669: result: gcc3
configure:2699: checking for a BSD-compatible install
configure:2754: result: /usr/bin/install -c
configure:2806: checking for ranlib
configure:2822: found /usr/bin/ranlib
configure:2833: result: ranlib
configure:2924: checking build system type
configure:2942: result: i386-apple-darwin8.8.1
configure:2950: checking host system type
configure:2964: result: i386-apple-darwin8.8.1
configure:3018: checking for gcc
configure:3034: found /usr/bin/gcc
configure:3044: result: gcc
configure:3288: checking for C compiler version
configure:3291: gcc --version </dev/null >&5
i686-apple-darwin8-gcc-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build 5250)
Copyright (C) 2005 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:3294: $? = 0
configure:3296: gcc -v </dev/null >&5
Using built-in specs.
Target: i686-apple-darwin8
Configured with: /private/var/tmp/gcc/gcc-5250.obj~20/src/configure --disable-checking -enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.0/ --with-gxx-include-dir=/include/c++/4.0.0 --build=powerpc-apple-darwin8 --with-arch=pentium-m --with-tune=prescott --program-prefix= --host=i686-apple-darwin8 --target=i686-apple-darwin8
Thread model: posix
gcc version 4.0.1 (Apple Computer, Inc. build 5250)
configure:3299: $? = 0
configure:3301: gcc -V </dev/null >&5
gcc: argument to `-V' is missing
configure:3304: $? = 1
configure:3307: checking whether we are using the GNU C compiler
configure:3331: gcc -c   conftest.c >&5
configure:3337: $? = 0
configure:3341: test -z 
			 || test ! -s conftest.err
configure:3344: $? = 0
configure:3347: test -s conftest.o
configure:3350: $? = 0
configure:3363: result: yes
configure:3369: checking whether gcc accepts -g
configure:3390: gcc -c -g  conftest.c >&5
configure:3396: $? = 0
configure:3400: test -z 
			 || test ! -s conftest.err
configure:3403: $? = 0
configure:3406: test -s conftest.o
configure:3409: $? = 0
configure:3420: result: yes
configure:3437: checking for gcc option to accept ANSI C
configure:3507: gcc  -c -g -O2  conftest.c >&5
configure:3513: $? = 0
configure:3517: test -z 
			 || test ! -s conftest.err
configure:3520: $? = 0
configure:3523: test -s conftest.o
configure:3526: $? = 0
configure:3544: result: none needed
configure:3562: gcc -c -g -O2  conftest.c >&5
conftest.c:2: error: parse error before 'me'
configure:3568: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:3703: checking dependency style of gcc
configure:3793: result: gcc3
configure:3810: checking for a sed that does not truncate output
configure:3864: result: /usr/bin/sed
configure:3867: checking for egrep
configure:3877: result: grep -E
configure:3893: checking for ld used by gcc
configure:3960: result: /usr/bin/ld
configure:3969: checking if the linker (/usr/bin/ld) is GNU ld
configure:3984: result: no
configure:3989: checking for /usr/bin/ld option to reload object files
configure:3996: result: -r
configure:4014: checking for BSD-compatible nm
configure:4063: result: /usr/bin/nm -p
configure:4067: checking whether ln -s works
configure:4071: result: yes
configure:4078: checking how to recognise dependent libraries
configure:4254: result: pass_all
configure:4491: checking how to run the C preprocessor
configure:4526: gcc -E  conftest.c
configure:4532: $? = 0
configure:4564: gcc -E  conftest.c
conftest.c:14:28: error: ac_nonexistent.h: No such file or directory
configure:4570: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "tupleroute"
| #define PACKAGE_TARNAME "tupleroute"
| #define PACKAGE_VERSION "0.90-dev"
| #define PACKAGE_STRING "tupleroute 0.90-dev"
| #define PACKAGE_BUGREPORT "bugreports@paris-traceroute.net"
| #define PACKAGE "tupleroute"
| #define VERSION "0.90-dev"
| #ifdef __cplusplus
| extern "C" void std::exit (int); using std::exit;
| #endif
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4609: result: gcc -E
configure:4633: gcc -E  conftest.c
configure:4639: $? = 0
configure:4671: gcc -E  conftest.c
conftest.c:14:28: error: ac_nonexistent.h: No such file or directory
configure:4677: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "tupleroute"
| #define PACKAGE_TARNAME "tupleroute"
| #define PACKAGE_VERSION "0.90-dev"
| #define PACKAGE_STRING "tupleroute 0.90-dev"
| #define PACKAGE_BUGREPORT "bugreports@paris-traceroute.net"
| #define PACKAGE "tupleroute"
| #define VERSION "0.90-dev"
| #ifdef __cplusplus
| extern "C" void std::exit (int); using std::exit;
| #endif
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4721: checking for ANSI C header files
configure:4746: gcc -c -g -O2  conftest.c >&5
configure:4752: $? = 0
configure:4756: test -z 
			 || test ! -s conftest.err
configure:4759: $? = 0
configure:4762: test -s conftest.o
configure:4765: $? = 0
configure:4851: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c: In function 'main':
conftest.c:31: warning: incompatible implicit declaration of built-in function 'exit'
configure:4854: $? = 0
configure:4856: ./conftest
configure:4859: $? = 0
configure:4874: result: yes
configure:4898: checking for sys/types.h
configure:4914: gcc -c -g -O2  conftest.c >&5
configure:4920: $? = 0
configure:4924: test -z 
			 || test ! -s conftest.err
configure:4927: $? = 0
configure:4930: test -s conftest.o
configure:4933: $? = 0
configure:4944: result: yes
configure:4898: checking for sys/stat.h
configure:4914: gcc -c -g -O2  conftest.c >&5
configure:4920: $? = 0
configure:4924: test -z 
			 || test ! -s conftest.err
configure:4927: $? = 0
configure:4930: test -s conftest.o
configure:4933: $? = 0
configure:4944: result: yes
configure:4898: checking for stdlib.h
configure:4914: gcc -c -g -O2  conftest.c >&5
configure:4920: $? = 0
configure:4924: test -z 
			 || test ! -s conftest.err
configure:4927: $? = 0
configure:4930: test -s conftest.o
configure:4933: $? = 0
configure:4944: result: yes
configure:4898: checking for string.h
configure:4914: gcc -c -g -O2  conftest.c >&5
configure:4920: $? = 0
configure:4924: test -z 
			 || test ! -s conftest.err
configure:4927: $? = 0
configure:4930: test -s conftest.o
configure:4933: $? = 0
configure:4944: result: yes
configure:4898: checking for memory.h
configure:4914: gcc -c -g -O2  conftest.c >&5
configure:4920: $? = 0
configure:4924: test -z 
			 || test ! -s conftest.err
configure:4927: $? = 0
configure:4930: test -s conftest.o
configure:4933: $? = 0
configure:4944: result: yes
configure:4898: checking for strings.h
configure:4914: gcc -c -g -O2  conftest.c >&5
configure:4920: $? = 0
configure:4924: test -z 
			 || test ! -s conftest.err
configure:4927: $? = 0
configure:4930: test -s conftest.o
configure:4933: $? = 0
configure:4944: result: yes
configure:4898: checking for inttypes.h
configure:4914: gcc -c -g -O2  conftest.c >&5
configure:4920: $? = 0
configure:4924: test -z 
			 || test ! -s conftest.err
configure:4927: $? = 0
configure:4930: test -s conftest.o
configure:4933: $? = 0
configure:4944: result: yes
configure:4898: checking for stdint.h
configure:4914: gcc -c -g -O2  conftest.c >&5
configure:4920: $? = 0
configure:4924: test -z 
			 || test ! -s conftest.err
configure:4927: $? = 0
configure:4930: test -s conftest.o
configure:4933: $? = 0
configure:4944: result: yes
configure:4898: checking for unistd.h
configure:4914: gcc -c -g -O2  conftest.c >&5
configure:4920: $? = 0
configure:4924: test -z 
			 || test ! -s conftest.err
configure:4927: $? = 0
configure:4930: test -s conftest.o
configure:4933: $? = 0
configure:4944: result: yes
configure:4970: checking dlfcn.h usability
configure:4982: gcc -c -g -O2  conftest.c >&5
configure:4988: $? = 0
configure:4992: test -z 
			 || test ! -s conftest.err
configure:4995: $? = 0
configure:4998: test -s conftest.o
configure:5001: $? = 0
configure:5011: result: yes
configure:5015: checking dlfcn.h presence
configure:5025: gcc -E  conftest.c
configure:5031: $? = 0
configure:5051: result: yes
configure:5086: checking for dlfcn.h
configure:5093: result: yes
configure:5116: checking how to run the C++ preprocessor
configure:5147: g++ -E  conftest.cc
configure:5153: $? = 0
configure:5185: g++ -E  conftest.cc
conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory
configure:5191: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "tupleroute"
| #define PACKAGE_TARNAME "tupleroute"
| #define PACKAGE_VERSION "0.90-dev"
| #define PACKAGE_STRING "tupleroute 0.90-dev"
| #define PACKAGE_BUGREPORT "bugreports@paris-traceroute.net"
| #define PACKAGE "tupleroute"
| #define VERSION "0.90-dev"
| #ifdef __cplusplus
| extern "C" void std::exit (int); using std::exit;
| #endif
| #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
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:5230: result: g++ -E
configure:5254: g++ -E  conftest.cc
configure:5260: $? = 0
configure:5292: g++ -E  conftest.cc
conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory
configure:5298: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "tupleroute"
| #define PACKAGE_TARNAME "tupleroute"
| #define PACKAGE_VERSION "0.90-dev"
| #define PACKAGE_STRING "tupleroute 0.90-dev"
| #define PACKAGE_BUGREPORT "bugreports@paris-traceroute.net"
| #define PACKAGE "tupleroute"
| #define VERSION "0.90-dev"
| #ifdef __cplusplus
| extern "C" void std::exit (int); using std::exit;
| #endif
| #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
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:5395: checking for g77
configure:5424: result: no
configure:5395: checking for f77
configure:5424: result: no
configure:5395: checking for xlf
configure:5424: result: no
configure:5395: checking for frt
configure:5424: result: no
configure:5395: checking for pgf77
configure:5424: result: no
configure:5395: checking for fort77
configure:5424: result: no
configure:5395: checking for fl32
configure:5424: result: no
configure:5395: checking for af77
configure:5424: result: no
configure:5395: checking for f90
configure:5424: result: no
configure:5395: checking for xlf90
configure:5424: result: no
configure:5395: checking for pgf90
configure:5424: result: no
configure:5395: checking for epcf90
configure:5424: result: no
configure:5395: checking for f95
configure:5424: result: no
configure:5395: checking for fort
configure:5424: result: no
configure:5395: checking for xlf95
configure:5424: result: no
configure:5395: checking for ifc
configure:5424: result: no
configure:5395: checking for efc
configure:5424: result: no
configure:5395: checking for pgf95
configure:5424: result: no
configure:5395: checking for lf95
configure:5424: result: no
configure:5395: checking for gfortran
configure:5424: result: no
configure:5439: checking for Fortran 77 compiler version
configure:5439:  --version </dev/null >&5
./configure: line 1: --version: command not found
configure:5442: $? = 127
configure:5444:  -v </dev/null >&5
./configure: line 1: -v: command not found
configure:5447: $? = 127
configure:5449:  -V </dev/null >&5
./configure: line 1: -V: command not found
configure:5452: $? = 127
configure:5460: checking whether we are using the GNU Fortran 77 compiler
configure:5474:  -c  conftest.F >&5
./configure: line 1: -c: command not found
configure:5480: $? = 127
configure: failed program was:
|       program main
| #ifndef __GNUC__
|        choke me
| #endif
| 
|       end
configure:5506: result: no
configure:5512: checking whether  accepts -g
configure:5524:  -c -g conftest.f >&5
./configure: line 1: -c: command not found
configure:5530: $? = 127
configure: failed program was:
|       program main
| 
|       end
configure:5555: result: no
configure:5585: checking the maximum length of command line arguments
configure:5694: result: 196608
configure:5705: checking command to parse /usr/bin/nm -p output from gcc object
configure:5810: gcc -c -g -O2  conftest.c >&5
configure:5813: $? = 0
configure:5817: /usr/bin/nm -p conftest.o \| sed -n -e 's/^.*[ 	]\([BCDEGRST][BCDEGRST]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:5820: $? = 0
cannot find nm_test_var in conftest.nm
configure:5810: gcc -c -g -O2  conftest.c >&5
configure:5813: $? = 0
configure:5817: /usr/bin/nm -p conftest.o \| sed -n -e 's/^.*[ 	]\([BCDEGRST][BCDEGRST]*\)[ 	][ 	]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' \> conftest.nm
configure:5820: $? = 0
configure:5872: gcc -o conftest -g -O2   conftest.c conftstm.o >&5
configure:5875: $? = 0
configure:5913: result: ok
configure:5917: checking for objdir
configure:5932: result: .libs
configure:6022: checking for ar
configure:6038: found /usr/bin/ar
configure:6049: result: ar
configure:6102: checking for ranlib
configure:6129: result: ranlib
configure:6182: checking for strip
configure:6198: found /usr/bin/strip
configure:6209: result: strip
configure:6432: checking for correct ltmain.sh version
configure:6482: result: yes
configure:6542: checking if gcc supports -fno-rtti -fno-exceptions
configure:6563: 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:6567: $? = 0
configure:6577: result: no
configure:6592: checking for gcc option to produce PIC
configure:6802: result: -fno-common
configure:6810: checking if gcc PIC flag -fno-common works
configure:6831: gcc -c -g -O2  -fno-common -DPIC conftest.c >&5
configure:6835: $? = 0
configure:6845: result: yes
configure:6873: checking if gcc static flag -static works
configure:6901: result: no
configure:6911: checking if gcc supports -c -o file.o
configure:6935: gcc -c -g -O2  -o out/conftest2.o conftest.c >&5
configure:6939: $? = 0
configure:6958: result: yes
configure:6984: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
configure:7942: result: yes
configure:8009: checking dynamic linker characteristics
configure:8634: result: darwin8.8.1 dyld
configure:8643: checking how to hardcode library paths into programs
configure:8668: result: immediate
configure:8682: checking whether stripping libraries is possible
configure:8695: result: yes
configure:9521: checking if libtool supports shared libraries
configure:9523: result: yes
configure:9526: checking whether to build shared libraries
configure:9547: result: no
configure:9550: checking whether to build static libraries
configure:9554: result: yes
configure:9646: creating libtool
configure:10234: checking for ld used by g++
configure:10301: result: /usr/bin/ld
configure:10310: checking if the linker (/usr/bin/ld) is GNU ld
configure:10325: result: no
configure:10376: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:11314: result: yes
configure:11332: g++ -c -g -O2  conftest.cpp >&5
configure:11335: $? = 0
configure:11454: checking for g++ option to produce PIC
configure:11728: result: -fno-common
configure:11736: checking if g++ PIC flag -fno-common works
configure:11757: g++ -c -g -O2  -fno-common -DPIC conftest.cpp >&5
configure:11761: $? = 0
configure:11771: result: yes
configure:11799: checking if g++ static flag -static works
configure:11827: result: no
configure:11837: checking if g++ supports -c -o file.o
configure:11861: g++ -c -g -O2  -o out/conftest2.o conftest.cpp >&5
configure:11865: $? = 0
configure:11884: result: yes
configure:11910: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:11935: result: yes
configure:12002: checking dynamic linker characteristics
configure:12627: result: darwin8.8.1 dyld
configure:12636: checking how to hardcode library paths into programs
configure:12661: result: immediate
configure:18885: checking whether make sets $(MAKE)
configure:18905: result: yes
configure:18915: checking for an ANSI C-conforming const
configure:18982: gcc -c -g -O2  conftest.c >&5
configure:18988: $? = 0
configure:18992: test -z 
			 || test ! -s conftest.err
configure:18995: $? = 0
configure:18998: test -s conftest.o
configure:19001: $? = 0
configure:19012: result: yes
configure:19022: checking for inline
configure:19043: gcc -c -g -O2  conftest.c >&5
configure:19049: $? = 0
configure:19053: test -z 
			 || test ! -s conftest.err
configure:19056: $? = 0
configure:19059: test -s conftest.o
configure:19062: $? = 0
configure:19074: result: inline
configure:19093: checking for ANSI C header files
configure:19246: result: yes
configure:19256: checking for stdbool.h that conforms to C99
configure:19309: gcc -c -g -O2  conftest.c >&5
configure:19315: $? = 0
configure:19319: test -z 
			 || test ! -s conftest.err
configure:19322: $? = 0
configure:19325: test -s conftest.o
configure:19328: $? = 0
configure:19339: result: yes
configure:19341: checking for _Bool
configure:19365: gcc -c -g -O2  conftest.c >&5
configure:19371: $? = 0
configure:19375: test -z 
			 || test ! -s conftest.err
configure:19378: $? = 0
configure:19381: test -s conftest.o
configure:19384: $? = 0
configure:19395: result: yes
configure:19414: checking whether time.h and sys/time.h may both be included
configure:19439: gcc -c -g -O2  conftest.c >&5
configure:19445: $? = 0
configure:19449: test -z 
			 || test ! -s conftest.err
configure:19452: $? = 0
configure:19455: test -s conftest.o
configure:19458: $? = 0
configure:19469: result: yes
configure:19479: checking for pid_t
configure:19503: gcc -c -g -O2  conftest.c >&5
configure:19509: $? = 0
configure:19513: test -z 
			 || test ! -s conftest.err
configure:19516: $? = 0
configure:19519: test -s conftest.o
configure:19522: $? = 0
configure:19533: result: yes
configure:19569: checking arpa/inet.h usability
configure:19581: gcc -c -g -O2  conftest.c >&5
configure:19587: $? = 0
configure:19591: test -z 
			 || test ! -s conftest.err
configure:19594: $? = 0
configure:19597: test -s conftest.o
configure:19600: $? = 0
configure:19610: result: yes
configure:19614: checking arpa/inet.h presence
configure:19624: gcc -E  conftest.c
configure:19630: $? = 0
configure:19650: result: yes
configure:19685: checking for arpa/inet.h
configure:19692: result: yes
configure:19569: checking netdb.h usability
configure:19581: gcc -c -g -O2  conftest.c >&5
configure:19587: $? = 0
configure:19591: test -z 
			 || test ! -s conftest.err
configure:19594: $? = 0
configure:19597: test -s conftest.o
configure:19600: $? = 0
configure:19610: result: yes
configure:19614: checking netdb.h presence
configure:19624: gcc -E  conftest.c
configure:19630: $? = 0
configure:19650: result: yes
configure:19685: checking for netdb.h
configure:19692: result: yes
configure:19569: checking netinet/in.h usability
configure:19581: gcc -c -g -O2  conftest.c >&5
configure:19587: $? = 0
configure:19591: test -z 
			 || test ! -s conftest.err
configure:19594: $? = 0
configure:19597: test -s conftest.o
configure:19600: $? = 0
configure:19610: result: yes
configure:19614: checking netinet/in.h presence
configure:19624: gcc -E  conftest.c
configure:19630: $? = 0
configure:19650: result: yes
configure:19685: checking for netinet/in.h
configure:19692: result: yes
configure:19560: checking for stdlib.h
configure:19565: result: yes
configure:19560: checking for string.h
configure:19565: result: yes
configure:19569: checking sys/socket.h usability
configure:19581: gcc -c -g -O2  conftest.c >&5
configure:19587: $? = 0
configure:19591: test -z 
			 || test ! -s conftest.err
configure:19594: $? = 0
configure:19597: test -s conftest.o
configure:19600: $? = 0
configure:19610: result: yes
configure:19614: checking sys/socket.h presence
configure:19624: gcc -E  conftest.c
configure:19630: $? = 0
configure:19650: result: yes
configure:19685: checking for sys/socket.h
configure:19692: result: yes
configure:19560: checking for unistd.h
configure:19565: result: yes
configure:19569: checking sys/time.h usability
configure:19581: gcc -c -g -O2  conftest.c >&5
configure:19587: $? = 0
configure:19591: test -z 
			 || test ! -s conftest.err
configure:19594: $? = 0
configure:19597: test -s conftest.o
configure:19600: $? = 0
configure:19610: result: yes
configure:19614: checking sys/time.h presence
configure:19624: gcc -E  conftest.c
configure:19630: $? = 0
configure:19650: result: yes
configure:19685: checking for sys/time.h
configure:19692: result: yes
configure:19569: checking fcntl.h usability
configure:19581: gcc -c -g -O2  conftest.c >&5
configure:19587: $? = 0
configure:19591: test -z 
			 || test ! -s conftest.err
configure:19594: $? = 0
configure:19597: test -s conftest.o
configure:19600: $? = 0
configure:19610: result: yes
configure:19614: checking fcntl.h presence
configure:19624: gcc -E  conftest.c
configure:19630: $? = 0
configure:19650: result: yes
configure:19685: checking for fcntl.h
configure:19692: result: yes
configure:19569: checking sys/ioctl.h usability
configure:19581: gcc -c -g -O2  conftest.c >&5
configure:19587: $? = 0
configure:19591: test -z 
			 || test ! -s conftest.err
configure:19594: $? = 0
configure:19597: test -s conftest.o
configure:19600: $? = 0
configure:19610: result: yes
configure:19614: checking sys/ioctl.h presence
configure:19624: gcc -E  conftest.c
configure:19630: $? = 0
configure:19650: result: yes
configure:19685: checking for sys/ioctl.h
configure:19692: result: yes
configure:19569: checking syslog.h usability
configure:19581: gcc -c -g -O2  conftest.c >&5
configure:19587: $? = 0
configure:19591: test -z 
			 || test ! -s conftest.err
configure:19594: $? = 0
configure:19597: test -s conftest.o
configure:19600: $? = 0
configure:19610: result: yes
configure:19614: checking syslog.h presence
configure:19624: gcc -E  conftest.c
configure:19630: $? = 0
configure:19650: result: yes
configure:19685: checking for syslog.h
configure:19692: result: yes
configure:19711: checking for main in -lpthread
configure:19735: gcc -o conftest -g -O2   conftest.c -lpthread   >&5
configure:19741: $? = 0
configure:19745: test -z 
			 || test ! -s conftest.err
configure:19748: $? = 0
configure:19751: test -s conftest
configure:19754: $? = 0
configure:19767: result: yes
configure:19790: checking for memset
configure:19847: gcc -o conftest -g -O2   conftest.c -lpthread  >&5
conftest.c:65: warning: conflicting types for built-in function 'memset'
configure:19853: $? = 0
configure:19857: test -z 
			 || test ! -s conftest.err
configure:19860: $? = 0
configure:19863: test -s conftest
configure:19866: $? = 0
configure:19878: result: yes
configure:19790: checking for socket
configure:19847: gcc -o conftest -g -O2   conftest.c -lpthread  >&5
configure:19853: $? = 0
configure:19857: test -z 
			 || test ! -s conftest.err
configure:19860: $? = 0
configure:19863: test -s conftest
configure:19866: $? = 0
configure:19878: result: yes
configure:19790: checking for strdup
configure:19847: gcc -o conftest -g -O2   conftest.c -lpthread  >&5
conftest.c:67: warning: conflicting types for built-in function 'strdup'
configure:19853: $? = 0
configure:19857: test -z 
			 || test ! -s conftest.err
configure:19860: $? = 0
configure:19863: test -s conftest
configure:19866: $? = 0
configure:19878: result: yes
configure:19790: checking for gettimeofday
configure:19847: gcc -o conftest -g -O2   conftest.c -lpthread  >&5
configure:19853: $? = 0
configure:19857: test -z 
			 || test ! -s conftest.err
configure:19860: $? = 0
configure:19863: test -s conftest
configure:19866: $? = 0
configure:19878: result: yes
configure:19790: checking for inet_ntoa
configure:19847: gcc -o conftest -g -O2   conftest.c -lpthread  >&5
configure:19853: $? = 0
configure:19857: test -z 
			 || test ! -s conftest.err
configure:19860: $? = 0
configure:19863: test -s conftest
configure:19866: $? = 0
configure:19878: result: yes
configure:19790: checking for strerror
configure:19847: gcc -o conftest -g -O2   conftest.c -lpthread  >&5
configure:19853: $? = 0
configure:19857: test -z 
			 || test ! -s conftest.err
configure:19860: $? = 0
configure:19863: test -s conftest
configure:19866: $? = 0
configure:19878: result: yes
configure:19790: checking for gethostbyaddr
configure:19847: gcc -o conftest -g -O2   conftest.c -lpthread  >&5
configure:19853: $? = 0
configure:19857: test -z 
			 || test ! -s conftest.err
configure:19860: $? = 0
configure:19863: test -s conftest
configure:19866: $? = 0
configure:19878: result: yes
configure:19790: checking for gethostbyname
configure:19847: gcc -o conftest -g -O2   conftest.c -lpthread  >&5
configure:19853: $? = 0
configure:19857: test -z 
			 || test ! -s conftest.err
configure:19860: $? = 0
configure:19863: test -s conftest
configure:19866: $? = 0
configure:19878: result: yes
configure:20023: creating ./config.status

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

This file was extended by tupleroute config.status 0.90-dev, which was
generated by GNU Autoconf 2.59.  Invocation command line was

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

on malm

config.status:716: creating Makefile
config.status:716: creating src/Makefile
config.status:716: creating doc/Makefile
config.status:820: creating config.h
config.status:996: config.h is unchanged
config.status:1176: executing depfiles commands

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

ac_cv_build=i386-apple-darwin8.8.1
ac_cv_build_alias=i386-apple-darwin8.8.1
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
ac_cv_cxx_compiler_gnu=yes
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_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_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_exeext=
ac_cv_f77_compiler_gnu=no
ac_cv_func_gethostbyaddr=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_inet_ntoa=yes
ac_cv_func_memset=yes
ac_cv_func_socket=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_header_arpa_inet_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_netdb_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_stdbool_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_syslog_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i386-apple-darwin8.8.1
ac_cv_host_alias=i386-apple-darwin8.8.1
ac_cv_lib_pthread_main=yes
ac_cv_objext=o
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_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=yes
ac_cv_prog_egrep='grep -E'
ac_cv_prog_f77_g=no
ac_cv_prog_make_make_set=yes
ac_cv_type__Bool=yes
ac_cv_type_pid_t=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
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_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -p'
lt_cv_path_SED=/usr/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=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\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/  {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_max_cmd_len=196608
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ 	]\\([BCDEGRST][BCDEGRST]*\\)[ 	][ 	]*_\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 _\\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'

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

ACLOCAL='${SHELL} /Users/brice/paris-traceroute-current/missing --run aclocal-1.9'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /Users/brice/paris-traceroute-current/missing --run tar'
AR='ar'
AUTOCONF='${SHELL} /Users/brice/paris-traceroute-current/missing --run autoconf'
AUTOHEADER='${SHELL} /Users/brice/paris-traceroute-current/missing --run autoheader'
AUTOMAKE='${SHELL} /Users/brice/paris-traceroute-current/missing --run automake-1.9'
AWK='awk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
F77=''
FFLAGS=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
LDFLAGS=''
LIBOBJS=''
LIBS='-lpthread '
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /Users/brice/paris-traceroute-current/missing --run makeinfo'
OBJEXT='o'
PACKAGE='tupleroute'
PACKAGE_BUGREPORT='bugreports@paris-traceroute.net'
PACKAGE_NAME='tupleroute'
PACKAGE_STRING='tupleroute 0.90-dev'
PACKAGE_TARNAME='tupleroute'
PACKAGE_VERSION='0.90-dev'
PATH_SEPARATOR=':'
RANLIB='ranlib'
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
VERSION='0.90-dev'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_F77=''
ac_ct_RANLIB='ranlib'
ac_ct_STRIP='strip'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i386-apple-darwin8.8.1'
build_alias=''
build_cpu='i386'
build_os='darwin8.8.1'
build_vendor='apple'
datadir='${prefix}/share'
exec_prefix='${prefix}'
host='i386-apple-darwin8.8.1'
host_alias=''
host_cpu='i386'
host_os='darwin8.8.1'
host_vendor='apple'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/Users/brice/paris-traceroute-current/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
mkdir_p='$(install_sh) -d'
oldincludedir='/usr/include'
prefix='/usr/local'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

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

#define DEBUG 1
#define HAVE_ARPA_INET_H 1
#define HAVE_DLFCN_H 1
#define HAVE_FCNTL_H 1
#define HAVE_GETHOSTBYADDR 1
#define HAVE_GETHOSTBYNAME 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_INET_NTOA 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIBPTHREAD 1
#define HAVE_MEMORY_H 1
#define HAVE_MEMSET 1
#define HAVE_NETDB_H 1
#define HAVE_NETINET_IN_H 1
#define HAVE_SOCKET 1
#define HAVE_STDBOOL_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRDUP 1
#define HAVE_STRERROR 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRING_H 1
#define HAVE_SYSLOG_H 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE__BOOL 1
#define PACKAGE "tupleroute"
#define PACKAGE_BUGREPORT "bugreports@paris-traceroute.net"
#define PACKAGE_NAME "tupleroute"
#define PACKAGE_STRING "tupleroute 0.90-dev"
#define PACKAGE_TARNAME "tupleroute"
#define PACKAGE_VERSION "0.90-dev"
#define STDC_HEADERS 1
#define STDC_HEADERS 1
#define TIME_WITH_SYS_TIME 1
#define VERSION "0.90-dev"
#endif
#ifdef __cplusplus
extern "C" void std::exit (int); using std::exit;

configure: exit 0