File: config.log

package info (click to toggle)
mtr 0.85-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,008 kB
  • ctags: 837
  • sloc: ansic: 6,077; sh: 1,058; makefile: 107
file content (1279 lines) | stat: -rw-r--r-- 46,164 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by mtr configure 0.85, which was
generated by GNU Autoconf 2.68.  Invocation command line was

  $ ./configure 

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

hostname = getafix
uname -m = x86_64
uname -r = 3.0.0-28-generic
uname -s = Linux
uname -v = #45-Ubuntu SMP Wed Nov 14 21:57:26 UTC 2012

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

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

PATH: /home/hdr/bin
PATH: /home/hdr/cross/bin
PATH: /home/wolff/bin
PATH: /home/wolff/sat
PATH: /home/wolff/bb
PATH: /opt/msp430-gcc-4.4.3/bin
PATH: /usr/quartus/bin
PATH: /home/wolff/sat/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games


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

configure:2470: checking for a BSD-compatible install
configure:2538: result: /usr/bin/install -c
configure:2549: checking whether build environment is sane
configure:2599: result: yes
configure:2740: checking for a thread-safe mkdir -p
configure:2779: result: /bin/mkdir -p
configure:2792: checking for gawk
configure:2808: found /usr/bin/gawk
configure:2819: result: gawk
configure:2830: checking whether make sets $(MAKE)
configure:2852: result: yes
configure:2990: checking for gcc
configure:3006: found /usr/bin/gcc
configure:3017: result: gcc
configure:3246: checking for C compiler version
configure:3255: gcc --version >&5
gcc (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:3266: $? = 0
configure:3255: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6.1/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.1-9ubuntu3' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) 
configure:3266: $? = 0
configure:3255: gcc -V >&5
gcc: error: unrecognized option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3266: $? = 4
configure:3255: gcc -qversion >&5
gcc: error: unrecognized option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:3266: $? = 4
configure:3286: checking whether the C compiler works
configure:3308: gcc    conftest.c  >&5
configure:3312: $? = 0
configure:3360: result: yes
configure:3363: checking for C compiler default output file name
configure:3365: result: a.out
configure:3371: checking for suffix of executables
configure:3378: gcc -o conftest    conftest.c  >&5
configure:3382: $? = 0
configure:3404: result: 
configure:3426: checking whether we are cross compiling
configure:3434: gcc -o conftest    conftest.c  >&5
configure:3438: $? = 0
configure:3445: ./conftest
configure:3449: $? = 0
configure:3464: result: no
configure:3469: checking for suffix of object files
configure:3491: gcc -c   conftest.c >&5
configure:3495: $? = 0
configure:3516: result: o
configure:3520: checking whether we are using the GNU C compiler
configure:3539: gcc -c   conftest.c >&5
configure:3539: $? = 0
configure:3548: result: yes
configure:3557: checking whether gcc accepts -g
configure:3577: gcc -c -g  conftest.c >&5
configure:3577: $? = 0
configure:3618: result: yes
configure:3635: checking for gcc option to accept ISO C89
configure:3699: gcc  -c -g -O2  conftest.c >&5
configure:3699: $? = 0
configure:3712: result: none needed
configure:3743: checking for style of include used by make
configure:3771: result: GNU
configure:3796: checking dependency style of gcc
configure:3906: result: gcc3
configure:3928: checking how to run the C preprocessor
configure:3959: gcc -E  conftest.c
configure:3959: $? = 0
configure:3973: gcc -E  conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:3973: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3998: result: gcc -E
configure:4018: gcc -E  conftest.c
configure:4018: $? = 0
configure:4032: gcc -E  conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:4032: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4061: checking for grep that handles long lines and -e
configure:4119: result: /bin/grep
configure:4124: checking for egrep
configure:4186: result: /bin/grep -E
configure:4191: checking for ANSI C header files
configure:4211: gcc -c -g -O2  conftest.c >&5
configure:4211: $? = 0
configure:4284: gcc -o conftest -g -O2   conftest.c  >&5
configure:4284: $? = 0
configure:4284: ./conftest
configure:4284: $? = 0
configure:4295: result: yes
configure:4308: checking for sys/types.h
configure:4308: gcc -c -g -O2  conftest.c >&5
configure:4308: $? = 0
configure:4308: result: yes
configure:4308: checking for sys/stat.h
configure:4308: gcc -c -g -O2  conftest.c >&5
configure:4308: $? = 0
configure:4308: result: yes
configure:4308: checking for stdlib.h
configure:4308: gcc -c -g -O2  conftest.c >&5
configure:4308: $? = 0
configure:4308: result: yes
configure:4308: checking for string.h
configure:4308: gcc -c -g -O2  conftest.c >&5
configure:4308: $? = 0
configure:4308: result: yes
configure:4308: checking for memory.h
configure:4308: gcc -c -g -O2  conftest.c >&5
configure:4308: $? = 0
configure:4308: result: yes
configure:4308: checking for strings.h
configure:4308: gcc -c -g -O2  conftest.c >&5
configure:4308: $? = 0
configure:4308: result: yes
configure:4308: checking for inttypes.h
configure:4308: gcc -c -g -O2  conftest.c >&5
configure:4308: $? = 0
configure:4308: result: yes
configure:4308: checking for stdint.h
configure:4308: gcc -c -g -O2  conftest.c >&5
configure:4308: $? = 0
configure:4308: result: yes
configure:4308: checking for unistd.h
configure:4308: gcc -c -g -O2  conftest.c >&5
configure:4308: $? = 0
configure:4308: result: yes
configure:4324: checking size of unsigned char
configure:4329: gcc -o conftest -g -O2   conftest.c  >&5
configure:4329: $? = 0
configure:4329: ./conftest
configure:4329: $? = 0
configure:4343: result: 1
configure:4357: checking size of unsigned short
configure:4362: gcc -o conftest -g -O2   conftest.c  >&5
configure:4362: $? = 0
configure:4362: ./conftest
configure:4362: $? = 0
configure:4376: result: 2
configure:4390: checking size of unsigned int
configure:4395: gcc -o conftest -g -O2   conftest.c  >&5
configure:4395: $? = 0
configure:4395: ./conftest
configure:4395: $? = 0
configure:4409: result: 4
configure:4423: checking size of unsigned long
configure:4428: gcc -o conftest -g -O2   conftest.c  >&5
configure:4428: $? = 0
configure:4428: ./conftest
configure:4428: $? = 0
configure:4442: result: 8
configure:4456: checking ncurses.h usability
configure:4456: gcc -c -g -O2  conftest.c >&5
configure:4456: $? = 0
configure:4456: result: yes
configure:4456: checking ncurses.h presence
configure:4456: gcc -E  conftest.c
configure:4456: $? = 0
configure:4456: result: yes
configure:4456: checking for ncurses.h
configure:4456: result: yes
configure:4456: checking ncurses/curses.h usability
configure:4456: gcc -c -g -O2  conftest.c >&5
conftest.c:59:28: fatal error: ncurses/curses.h: No such file or directory
compilation terminated.
configure:4456: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <ncurses/curses.h>
configure:4456: result: no
configure:4456: checking ncurses/curses.h presence
configure:4456: gcc -E  conftest.c
conftest.c:26:28: fatal error: ncurses/curses.h: No such file or directory
compilation terminated.
configure:4456: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| /* end confdefs.h.  */
| #include <ncurses/curses.h>
configure:4456: result: no
configure:4456: checking for ncurses/curses.h
configure:4456: result: no
configure:4456: checking curses.h usability
configure:4456: gcc -c -g -O2  conftest.c >&5
configure:4456: $? = 0
configure:4456: result: yes
configure:4456: checking curses.h presence
configure:4456: gcc -E  conftest.c
configure:4456: $? = 0
configure:4456: result: yes
configure:4456: checking for curses.h
configure:4456: result: yes
configure:4456: checking cursesX.h usability
configure:4456: gcc -c -g -O2  conftest.c >&5
conftest.c:60:21: fatal error: cursesX.h: No such file or directory
compilation terminated.
configure:4456: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <cursesX.h>
configure:4456: result: no
configure:4456: checking cursesX.h presence
configure:4456: gcc -E  conftest.c
conftest.c:27:21: fatal error: cursesX.h: No such file or directory
compilation terminated.
configure:4456: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| /* end confdefs.h.  */
| #include <cursesX.h>
configure:4456: result: no
configure:4456: checking for cursesX.h
configure:4456: result: no
configure:4456: checking for sys/types.h
configure:4456: result: yes
configure:4456: checking fcntl.h usability
configure:4456: gcc -c -g -O2  conftest.c >&5
configure:4456: $? = 0
configure:4456: result: yes
configure:4456: checking fcntl.h presence
configure:4456: gcc -E  conftest.c
configure:4456: $? = 0
configure:4456: result: yes
configure:4456: checking for fcntl.h
configure:4456: result: yes
configure:4469: checking socket.h usability
configure:4469: gcc -c -g -O2  conftest.c >&5
conftest.c:62:20: fatal error: socket.h: No such file or directory
compilation terminated.
configure:4469: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_FCNTL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <socket.h>
configure:4469: result: no
configure:4469: checking socket.h presence
configure:4469: gcc -E  conftest.c
conftest.c:29:20: fatal error: socket.h: No such file or directory
compilation terminated.
configure:4469: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_FCNTL_H 1
| /* end confdefs.h.  */
| #include <socket.h>
configure:4469: result: no
configure:4469: checking for socket.h
configure:4469: result: no
configure:4469: checking sys/socket.h usability
configure:4469: gcc -c -g -O2  conftest.c >&5
configure:4469: $? = 0
configure:4469: result: yes
configure:4469: checking sys/socket.h presence
configure:4469: gcc -E  conftest.c
configure:4469: $? = 0
configure:4469: result: yes
configure:4469: checking for sys/socket.h
configure:4469: result: yes
configure:4469: checking sys/xti.h usability
configure:4469: gcc -c -g -O2  conftest.c >&5
conftest.c:63:21: fatal error: sys/xti.h: No such file or directory
compilation terminated.
configure:4469: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_SYS_SOCKET_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/xti.h>
configure:4469: result: no
configure:4469: checking sys/xti.h presence
configure:4469: gcc -E  conftest.c
conftest.c:30:21: fatal error: sys/xti.h: No such file or directory
compilation terminated.
configure:4469: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_SYS_SOCKET_H 1
| /* end confdefs.h.  */
| #include <sys/xti.h>
configure:4469: result: no
configure:4469: checking for sys/xti.h
configure:4469: result: no
configure:4469: checking arpa/nameser_compat.h usability
configure:4469: gcc -c -g -O2  conftest.c >&5
configure:4469: $? = 0
configure:4469: result: yes
configure:4469: checking arpa/nameser_compat.h presence
configure:4469: gcc -E  conftest.c
configure:4469: $? = 0
configure:4469: result: yes
configure:4469: checking for arpa/nameser_compat.h
configure:4469: result: yes
configure:4483: checking for tgetent in -ltermcap
configure:4508: gcc -o conftest -g -O2   conftest.c -ltermcap   >&5
configure:4508: $? = 0
configure:4517: result: yes
configure:4528: checking for tgetent in -ltinfo
configure:4553: gcc -o conftest -g -O2   conftest.c -ltinfo  -ltermcap  >&5
configure:4553: $? = 0
configure:4562: result: yes
configure:4574: checking for initscr
configure:4574: gcc -o conftest -g -O2   conftest.c -ltinfo -ltermcap  >&5
configure:4574: $? = 0
configure:4574: result: yes
configure:4728: checking for attron
configure:4728: gcc -o conftest -g -O2   conftest.c -ltinfo -ltermcap  >&5
configure:4728: $? = 0
configure:4728: result: yes
configure:4728: checking for fcntl
configure:4728: gcc -o conftest -g -O2   conftest.c -ltinfo -ltermcap  >&5
configure:4728: $? = 0
configure:4728: result: yes
configure:4738: checking for floor in -lm
configure:4763: gcc -o conftest -g -O2   conftest.c -lm  -ltinfo -ltermcap  >&5
conftest.c:42:6: warning: conflicting types for built-in function 'floor' [enabled by default]
configure:4763: $? = 0
configure:4772: result: yes
configure:4861: checking for pkg-config
configure:4879: found /usr/bin/pkg-config
configure:4892: result: /usr/bin/pkg-config
configure:4914: checking for GTK+ - version >= 2.6.0
configure:5024: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm -ltinfo -ltermcap  >&5
configure:5024: $? = 0
configure:5024: ./conftest
configure:5024: $? = 0
configure:5038: result: yes (version 2.24.6)
configure:5327: checking for socket
configure:5327: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm >&5
configure:5327: $? = 0
configure:5327: result: yes
configure:5381: checking for gethostbyname
configure:5381: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm >&5
configure:5381: $? = 0
configure:5381: result: yes
configure:5441: checking for seteuid
configure:5441: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm >&5
configure:5441: $? = 0
configure:5441: result: yes
configure:5461: checking whether library required for res_mkquery
configure:5482: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm >&5
/tmp/ccMn2aaQ.o: In function `main':
/home/wolff/mtr/conftest.c:47: undefined reference to `__res_mkquery'
collect2: ld returned 1 exit status
configure:5482: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_ARPA_NAMESER_COMPAT_H 1
| #define HAVE_LIBTERMCAP 1
| #define HAVE_LIBTINFO 1
| #define HAVE_ATTRON 1
| #define HAVE_FCNTL 1
| #define HAVE_LIBM 1
| #define HAVE_SETEUID 1
| /* end confdefs.h.  */
| 
| 
| #include <netinet/in.h>
| #include <resolv.h>
| 
| int
| main ()
| {
| 
| int (*res_mkquery_func)(int,...) = (int (*)(int,...))res_mkquery;
| (void)(*res_mkquery_func)(0);
| 
|   ;
|   return 0;
| }
configure:5487: result: yes
configure:5493: checking for res_mkquery in -lbind
configure:5515: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm -lbind >&5
/usr/bin/ld: cannot find -lbind
collect2: ld returned 1 exit status
configure:5515: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_ARPA_NAMESER_COMPAT_H 1
| #define HAVE_LIBTERMCAP 1
| #define HAVE_LIBTINFO 1
| #define HAVE_ATTRON 1
| #define HAVE_FCNTL 1
| #define HAVE_LIBM 1
| #define HAVE_SETEUID 1
| /* end confdefs.h.  */
| 
| 
| #include <netinet/in.h>
| #include <resolv.h>
| 
| int
| main ()
| {
| 
| int (*res_mkquery_func)(int,...) = (int (*)(int,...))res_mkquery;
| (void)(*res_mkquery_func)(0);
| 
|   ;
|   return 0;
| }
configure:5520: result: no
configure:5526: checking for res_mkquery in -lresolv
configure:5547: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm -lresolv >&5
configure:5547: $? = 0
configure:5548: result: yes
configure:5562: checking for herror
configure:5562: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm >&5
configure:5562: $? = 0
configure:5562: result: yes
configure:5571: checking for strerror
configure:5571: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm >&5
configure:5571: $? = 0
configure:5571: result: yes
configure:5582: checking for getaddrinfo
configure:5582: gcc -o conftest -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12     conftest.c -lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm >&5
configure:5582: $? = 0
configure:5582: result: yes
configure:5596: checking whether __res_state_ext needs to be defined
configure:5621: gcc -c -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12    conftest.c >&5
configure:5621: $? = 0
configure:5622: result: no
configure:5680: checking whether errno is declared
configure:5680: gcc -c -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12    conftest.c >&5
configure:5680: $? = 0
configure:5680: result: yes
configure:5696: checking for socklen_t
configure:5696: gcc -c -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12    conftest.c >&5
configure:5696: $? = 0
configure:5696: gcc -c -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12    conftest.c >&5
conftest.c: In function 'main':
conftest.c:52:24: error: expected expression before ')' token
configure:5696: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_ARPA_NAMESER_COMPAT_H 1
| #define HAVE_LIBTERMCAP 1
| #define HAVE_LIBTINFO 1
| #define HAVE_ATTRON 1
| #define HAVE_FCNTL 1
| #define HAVE_LIBM 1
| #define HAVE_SETEUID 1
| #define ENABLE_IPV6 /**/
| #define HAVE_DECL_ERRNO 1
| /* end confdefs.h.  */
| 
| #include <netinet/in.h>
| #ifdef HAVE_SOCKET_H
| #include <socket.h>
| #endif
| #ifdef HAVE_SYS_SOCKET_H
| #include <sys/socket.h>
| #endif
| 
| 
| int
| main ()
| {
| if (sizeof ((socklen_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:5696: result: yes
configure:5713: checking for struct in_addr
configure:5713: gcc -c -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12    conftest.c >&5
configure:5713: $? = 0
configure:5713: gcc -c -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12    conftest.c >&5
conftest.c: In function 'main':
conftest.c:47:29: error: expected expression before ')' token
configure:5713: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "mtr"
| #define PACKAGE_TARNAME "mtr"
| #define PACKAGE_VERSION "0.85"
| #define PACKAGE_STRING "mtr 0.85"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "mtr"
| #define VERSION "0.85"
| #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 SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_LONG 8
| #define HAVE_NCURSES_H 1
| #define HAVE_CURSES_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_ARPA_NAMESER_COMPAT_H 1
| #define HAVE_LIBTERMCAP 1
| #define HAVE_LIBTINFO 1
| #define HAVE_ATTRON 1
| #define HAVE_FCNTL 1
| #define HAVE_LIBM 1
| #define HAVE_SETEUID 1
| #define ENABLE_IPV6 /**/
| #define HAVE_DECL_ERRNO 1
| #define HAVE_SOCKLEN_T /**/
| /* end confdefs.h.  */
| 
| #include <netinet/in.h>
| 
| 
| int
| main ()
| {
| if (sizeof ((struct in_addr)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:5713: result: yes
configure:5724: checking for C flags to get more warnings
configure:5736: gcc -c -g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12   -Wno-pointer-sign  conftest.c >&5
configure:5736: $? = 0
configure:5794: result: -Wall -Wno-pointer-sign
configure:5939: creating ./config.status

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

This file was extended by mtr config.status 0.85, which was
generated by GNU Autoconf 2.68.  Invocation command line was

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

on getafix

config.status:899: creating version.h.tmp
config.status:899: creating Makefile
config.status:899: creating img/Makefile
config.status:899: creating config.h
config.status:1128: executing depfiles commands

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

ac_cv_c_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_GLIB_CFLAGS_set=
ac_cv_env_GLIB_CFLAGS_value=
ac_cv_env_GLIB_LIBS_set=
ac_cv_env_GLIB_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_attron=yes
ac_cv_func_fcntl=yes
ac_cv_func_getaddrinfo=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_herror=yes
ac_cv_func_initscr=yes
ac_cv_func_seteuid=yes
ac_cv_func_socket=yes
ac_cv_func_strerror=yes
ac_cv_have_decl_errno=yes
ac_cv_header_arpa_nameser_compat_h=yes
ac_cv_header_cursesX_h=no
ac_cv_header_curses_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_ncurses_curses_h=no
ac_cv_header_ncurses_h=yes
ac_cv_header_socket_h=no
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_socket_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_xti_h=no
ac_cv_header_unistd_h=yes
ac_cv_lib_m_floor=yes
ac_cv_lib_termcap_tgetent=yes
ac_cv_lib_tinfo_tgetent=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_sizeof_unsigned_char=1
ac_cv_sizeof_unsigned_int=4
ac_cv_sizeof_unsigned_long=8
ac_cv_sizeof_unsigned_short=2
ac_cv_type_socklen_t=yes
ac_cv_type_struct_in_addr=yes
am_cv_CC_dependencies_compiler_type=gcc3

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

ACLOCAL='${SHELL} /home/wolff/mtr/missing --run aclocal-1.11'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/wolff/mtr/missing --run tar'
AUTOCONF='${SHELL} /home/wolff/mtr/missing --run autoconf'
AUTOHEADER='${SHELL} /home/wolff/mtr/missing --run autoheader'
AUTOMAKE='${SHELL} /home/wolff/mtr/missing --run automake-1.11'
AWK='gawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12   -Wall -Wno-pointer-sign'
CPP='gcc -E'
CPPFLAGS=''
CURSES_OBJ='curses.o'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
GLIB_CFLAGS=''
GLIB_LIBS=''
GREP='/bin/grep'
GTK_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12  '
GTK_LIBS='-pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0  '
GTK_OBJ='gtk.o'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
IPINFO_FALSE='#'
IPINFO_TRUE=''
LDFLAGS=''
LIBOBJS=''
LIBS='-lm -ltinfo -ltermcap  -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0   -lm'
LTLIBOBJS=''
MAKEINFO='${SHELL} /home/wolff/mtr/missing --run makeinfo'
MKDIR_P='/bin/mkdir -p'
OBJEXT='o'
PACKAGE='mtr'
PACKAGE_BUGREPORT=''
PACKAGE_NAME='mtr'
PACKAGE_STRING='mtr 0.85'
PACKAGE_TARNAME='mtr'
PACKAGE_URL=''
PACKAGE_VERSION='0.85'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
RESOLV_LIBS='-lresolv'
SET_MAKE=''
SHELL='/bin/bash'
STRIP=''
VERSION='0.85'
ac_ct_CC='gcc'
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build_alias=''
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host_alias=''
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/wolff/mtr/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

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

/* confdefs.h */
#define PACKAGE_NAME "mtr"
#define PACKAGE_TARNAME "mtr"
#define PACKAGE_VERSION "0.85"
#define PACKAGE_STRING "mtr 0.85"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define PACKAGE "mtr"
#define VERSION "0.85"
#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 SIZEOF_UNSIGNED_CHAR 1
#define SIZEOF_UNSIGNED_SHORT 2
#define SIZEOF_UNSIGNED_INT 4
#define SIZEOF_UNSIGNED_LONG 8
#define HAVE_NCURSES_H 1
#define HAVE_CURSES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_FCNTL_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_ARPA_NAMESER_COMPAT_H 1
#define HAVE_LIBTERMCAP 1
#define HAVE_LIBTINFO 1
#define HAVE_ATTRON 1
#define HAVE_FCNTL 1
#define HAVE_LIBM 1
#define HAVE_SETEUID 1
#define ENABLE_IPV6 /**/
#define HAVE_DECL_ERRNO 1
#define HAVE_SOCKLEN_T /**/
#define HAVE_STRUCT_INADDR /**/

configure: exit 0