-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.log
More file actions
1763 lines (1740 loc) · 51.4 KB
/
config.log
File metadata and controls
1763 lines (1740 loc) · 51.4 KB
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
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Config, which was
generated by GNU Autoconf 2.61. Invocation command line was
$ ./Config
## --------- ##
## Platform. ##
## --------- ##
hostname = skittles
uname -m = i686
uname -r = 2.6.32-042stab076.8
uname -s = Linux
uname -v = #1 SMP Tue May 14 20:38:14 MSK 2013
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
## ----------- ##
## Core tests. ##
## ----------- ##
Config:1971: Checking for gcc
Config:1987: found /usr/bin/gcc
Config:1998: result: gcc
Config:2236: Checking for C compiler version
Config:2243: gcc --version >&5
gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
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.
Config:2246: $? = 0
Config:2253: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --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-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
Config:2256: $? = 0
Config:2263: gcc -V >&5
gcc: error: unrecognized option '-V'
gcc: fatal error: no input files
compilation terminated.
Config:2266: $? = 4
Config:2289: Checking for C compiler default output file name
Config:2316: gcc conftest.c >&5
Config:2319: $? = 0
Config:2357: result: a.out
Config:2374: Checking whether the C compiler works
Config:2384: ./a.out
Config:2387: $? = 0
Config:2404: result: yes
Config:2411: Checking whether we are cross compiling
Config:2413: result: no
Config:2416: Checking for suffix of executables
Config:2423: gcc -o conftest conftest.c >&5
Config:2426: $? = 0
Config:2450: result:
Config:2456: Checking for suffix of object files
Config:2482: gcc -c conftest.c >&5
Config:2485: $? = 0
Config:2508: result: o
Config:2512: Checking whether we are using the GNU C compiler
Config:2541: gcc -c conftest.c >&5
Config:2547: $? = 0
Config:2564: result: yes
Config:2569: Checking whether gcc accepts -g
Config:2599: gcc -c -g conftest.c >&5
Config:2605: $? = 0
Config:2704: result: yes
Config:2721: Checking for gcc option to accept ISO C89
Config:2795: gcc -c -g -O2 conftest.c >&5
Config:2801: $? = 0
Config:2824: result: none needed
Config:2845: Checking if we are using TenDRA or MIPSpro
Config:2861: result: no
Config:2867: Checking if we are using Sun WorkShop/Forte
Config:2883: result: no
Config:2888: Checking if we are using Apple GCC
Config:2897: result: no
Config:2903: Checking if your compiler supports the SVR4 Software Generation System interfaces
Config:2909: result: no
Config:2952: Checking how to generate dependancy info
Config:2965: result: assuming gcc -MM
Config:2977: Checking for library containing strerror
Config:3018: gcc -o conftest conftest.c >&5
Config:3024: $? = 0
Config:3052: result: none required
Config:3060: Checking whether make sets $(MAKE)
Config:3081: result: yes
Config:3096: Checking build system type
Config:3114: result: i686-pc-linux-gnu
Config:3136: Checking host system type
Config:3151: result: i686-pc-linux-gnu
Config:3173: Checking target system type
Config:3188: result: i686-pc-linux-gnu
Config:3219: Checking for rm
Config:3237: found /bin/rm
Config:3249: result: /bin/rm
Config:3259: Checking for cp
Config:3277: found /bin/cp
Config:3289: result: /bin/cp
Config:3299: Checking for mv
Config:3317: found /bin/mv
Config:3329: result: /bin/mv
Config:3339: Checking for ln
Config:3357: found /bin/ln
Config:3369: result: /bin/ln
Config:3379: Checking for sed
Config:3397: found /bin/sed
Config:3409: result: /bin/sed
Config:3419: Checking for ar
Config:3437: found /usr/bin/ar
Config:3449: result: /usr/bin/ar
Config:3459: Checking for ld
Config:3477: found /usr/bin/ld
Config:3489: result: /usr/bin/ld
Config:3510: Checking for a BSD-compatible install
Config:3566: result: /usr/bin/install -c
Config:3620: Checking for ranlib
Config:3636: found /usr/bin/ranlib
Config:3647: result: ranlib
Config:3673: Checking for inline
Config:3699: gcc -c conftest.c >&5
Config:3705: $? = 0
Config:3723: result: inline
Config:3752: Checking for gethostbyname in -lnsl
Config:3787: gcc -o conftest conftest.c -lnsl >&5
Config:3793: $? = 0
Config:3811: result: yes
Config:3822: Checking for res_mkquery
Config:3878: gcc -o conftest conftest.c -lnsl >&5
/tmp/ccocpTAp.o: In function `main':
conftest.c:(.text+0x7): undefined reference to `res_mkquery'
collect2: ld returned 1 exit status
Config:3884: $? = 1
Config: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_LIBNSL 1
| /* end confdefs.h. */
| /* Define res_mkquery to an innocuous variant, in case <limits.h> declares res_mkquery.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define res_mkquery innocuous_res_mkquery
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char res_mkquery (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef res_mkquery
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char res_mkquery ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_res_mkquery || defined __stub___res_mkquery
| choke me
| #endif
|
| int
| main ()
| {
| return res_mkquery ();
| ;
| return 0;
| }
Config:3901: result: no
Config:3907: Checking for res_mkquery in -lresolv
Config:3942: gcc -o conftest conftest.c -lresolv -lnsl >&5
Config:3948: $? = 0
Config:3966: result: yes
Config:3979: Checking for __res_mkquery
Config:4035: gcc -o conftest conftest.c -lresolv -lnsl >&5
Config:4041: $? = 0
Config:4058: result: yes
Config:4137: Checking for socket in -lsocket
Config:4172: gcc -o conftest conftest.c -lsocket -lresolv -lnsl >&5
/usr/bin/ld: cannot find -lsocket
collect2: ld returned 1 exit status
Config:4178: $? = 1
Config: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_LIBNSL 1
| #define HAVE_LIBRESOLV 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char socket ();
| int
| main ()
| {
| return socket ();
| ;
| return 0;
| }
Config:4196: result: no
Config:4207: Checking for crypt
Config:4263: gcc -o conftest conftest.c -lresolv -lnsl >&5
/tmp/ccuGZwMy.o: In function `main':
conftest.c:(.text+0x7): undefined reference to `crypt'
collect2: ld returned 1 exit status
Config:4269: $? = 1
Config: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_LIBNSL 1
| #define HAVE_LIBRESOLV 1
| /* end confdefs.h. */
| /* Define crypt to an innocuous variant, in case <limits.h> declares crypt.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define crypt innocuous_crypt
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char crypt (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef crypt
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char crypt ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_crypt || defined __stub___crypt
| choke me
| #endif
|
| int
| main ()
| {
| return crypt ();
| ;
| return 0;
| }
Config:4286: result: no
Config:4292: Checking for crypt in -ldescrypt
Config:4327: gcc -o conftest conftest.c -ldescrypt -lresolv -lnsl >&5
/usr/bin/ld: cannot find -ldescrypt
collect2: ld returned 1 exit status
Config:4333: $? = 1
Config: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_LIBNSL 1
| #define HAVE_LIBRESOLV 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char crypt ();
| int
| main ()
| {
| return crypt ();
| ;
| return 0;
| }
Config:4351: result: no
Config:4362: Checking for crypt in -lcrypt
Config:4397: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:4403: $? = 0
Config:4421: result: yes
Config:4442: Checking how to run the C preprocessor
Config:4482: gcc -E conftest.c
Config:4488: $? = 0
Config:4519: gcc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
Config:4525: $? = 1
Config: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_LIBNSL 1
| #define HAVE_LIBRESOLV 1
| #define HAVE_LIBCRYPT 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
Config:4558: result: gcc -E
Config:4587: gcc -E conftest.c
Config:4593: $? = 0
Config:4624: gcc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
Config:4630: $? = 1
Config: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_LIBNSL 1
| #define HAVE_LIBRESOLV 1
| #define HAVE_LIBCRYPT 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
Config:4668: Checking for grep that handles long lines and -e
Config:4742: result: /bin/grep
Config:4747: Checking for egrep
Config:4825: result: /bin/grep -E
Config:4830: Checking for ANSI C header files
Config:4860: gcc -c conftest.c >&5
Config:4866: $? = 0
Config:4965: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:4968: $? = 0
Config:4974: ./conftest
Config:4977: $? = 0
Config:4994: result: yes
Config:5018: Checking for sys/types.h
Config:5039: gcc -c conftest.c >&5
Config:5045: $? = 0
Config:5061: result: yes
Config:5018: Checking for sys/stat.h
Config:5039: gcc -c conftest.c >&5
Config:5045: $? = 0
Config:5061: result: yes
Config:5018: Checking for stdlib.h
Config:5039: gcc -c conftest.c >&5
Config:5045: $? = 0
Config:5061: result: yes
Config:5018: Checking for string.h
Config:5039: gcc -c conftest.c >&5
Config:5045: $? = 0
Config:5061: result: yes
Config:5018: Checking for memory.h
Config:5039: gcc -c conftest.c >&5
Config:5045: $? = 0
Config:5061: result: yes
Config:5018: Checking for strings.h
Config:5039: gcc -c conftest.c >&5
Config:5045: $? = 0
Config:5061: result: yes
Config:5018: Checking for inttypes.h
Config:5039: gcc -c conftest.c >&5
Config:5045: $? = 0
Config:5061: result: yes
Config:5018: Checking for stdint.h
Config:5039: gcc -c conftest.c >&5
Config:5045: $? = 0
Config:5061: result: yes
Config:5018: Checking for unistd.h
Config:5039: gcc -c conftest.c >&5
Config:5045: $? = 0
Config:5061: result: yes
Config:5093: Checking fcntl.h usability
Config:5110: gcc -c conftest.c >&5
Config:5116: $? = 0
Config:5130: result: yes
Config:5134: Checking fcntl.h presence
Config:5149: gcc -E conftest.c
Config:5155: $? = 0
Config:5169: result: yes
Config:5197: Checking for fcntl.h
Config:5205: result: yes
Config:5093: Checking limits.h usability
Config:5110: gcc -c conftest.c >&5
Config:5116: $? = 0
Config:5130: result: yes
Config:5134: Checking limits.h presence
Config:5149: gcc -E conftest.c
Config:5155: $? = 0
Config:5169: result: yes
Config:5197: Checking for limits.h
Config:5205: result: yes
Config:5093: Checking malloc.h usability
Config:5110: gcc -c conftest.c >&5
Config:5116: $? = 0
Config:5130: result: yes
Config:5134: Checking malloc.h presence
Config:5149: gcc -E conftest.c
Config:5155: $? = 0
Config:5169: result: yes
Config:5197: Checking for malloc.h
Config:5205: result: yes
Config:5093: Checking netdb.h usability
Config:5110: gcc -c conftest.c >&5
Config:5116: $? = 0
Config:5130: result: yes
Config:5134: Checking netdb.h presence
Config:5149: gcc -E conftest.c
Config:5155: $? = 0
Config:5169: result: yes
Config:5197: Checking for netdb.h
Config:5205: result: yes
Config:5093: Checking netinet/in.h usability
Config:5110: gcc -c conftest.c >&5
Config:5116: $? = 0
Config:5130: result: yes
Config:5134: Checking netinet/in.h presence
Config:5149: gcc -E conftest.c
Config:5155: $? = 0
Config:5169: result: yes
Config:5197: Checking for netinet/in.h
Config:5205: result: yes
Config:5093: Checking stddef.h usability
Config:5110: gcc -c conftest.c >&5
Config:5116: $? = 0
Config:5130: result: yes
Config:5134: Checking stddef.h presence
Config:5149: gcc -E conftest.c
Config:5155: $? = 0
Config:5169: result: yes
Config:5197: Checking for stddef.h
Config:5205: result: yes
Config:5227: Checking for stdlib.h
Config:5233: result: yes
Config:5227: Checking for string.h
Config:5233: result: yes
Config:5227: Checking for strings.h
Config:5233: result: yes
Config:5237: Checking sys/file.h usability
Config:5254: gcc -c conftest.c >&5
Config:5260: $? = 0
Config:5274: result: yes
Config:5278: Checking sys/file.h presence
Config:5293: gcc -E conftest.c
Config:5299: $? = 0
Config:5313: result: yes
Config:5341: Checking for sys/file.h
Config:5349: result: yes
Config:5237: Checking sys/ioctl.h usability
Config:5254: gcc -c conftest.c >&5
Config:5260: $? = 0
Config:5274: result: yes
Config:5278: Checking sys/ioctl.h presence
Config:5293: gcc -E conftest.c
Config:5299: $? = 0
Config:5313: result: yes
Config:5341: Checking for sys/ioctl.h
Config:5349: result: yes
Config:5381: Checking sys/param.h usability
Config:5398: gcc -c conftest.c >&5
Config:5404: $? = 0
Config:5418: result: yes
Config:5422: Checking sys/param.h presence
Config:5437: gcc -E conftest.c
Config:5443: $? = 0
Config:5457: result: yes
Config:5485: Checking for sys/param.h
Config:5493: result: yes
Config:5381: Checking sys/socket.h usability
Config:5398: gcc -c conftest.c >&5
Config:5404: $? = 0
Config:5418: result: yes
Config:5422: Checking sys/socket.h presence
Config:5437: gcc -E conftest.c
Config:5443: $? = 0
Config:5457: result: yes
Config:5485: Checking for sys/socket.h
Config:5493: result: yes
Config:5381: Checking sys/time.h usability
Config:5398: gcc -c conftest.c >&5
Config:5404: $? = 0
Config:5418: result: yes
Config:5422: Checking sys/time.h presence
Config:5437: gcc -E conftest.c
Config:5443: $? = 0
Config:5457: result: yes
Config:5485: Checking for sys/time.h
Config:5493: result: yes
Config:5381: Checking syslog.h usability
Config:5398: gcc -c conftest.c >&5
Config:5404: $? = 0
Config:5418: result: yes
Config:5422: Checking syslog.h presence
Config:5437: gcc -E conftest.c
Config:5443: $? = 0
Config:5457: result: yes
Config:5485: Checking for syslog.h
Config:5493: result: yes
Config:5371: Checking for unistd.h
Config:5377: result: yes
Config:5521: Checking utmp.h usability
Config:5538: gcc -c conftest.c >&5
Config:5544: $? = 0
Config:5558: result: yes
Config:5562: Checking utmp.h presence
Config:5577: gcc -E conftest.c
Config:5583: $? = 0
Config:5597: result: yes
Config:5625: Checking for utmp.h
Config:5633: result: yes
Config:5656: Checking for inttypes.h
Config:5662: result: yes
Config:5666: Checking sys/resource.h usability
Config:5683: gcc -c conftest.c >&5
Config:5689: $? = 0
Config:5703: result: yes
Config:5707: Checking sys/resource.h presence
Config:5722: gcc -E conftest.c
Config:5728: $? = 0
Config:5742: result: yes
Config:5770: Checking for sys/resource.h
Config:5778: result: yes
Config:5666: Checking errno.h usability
Config:5683: gcc -c conftest.c >&5
Config:5689: $? = 0
Config:5703: result: yes
Config:5707: Checking errno.h presence
Config:5722: gcc -E conftest.c
Config:5728: $? = 0
Config:5742: result: yes
Config:5770: Checking for errno.h
Config:5778: result: yes
Config:5656: Checking for stdlib.h
Config:5662: result: yes
Config:5656: Checking for stddef.h
Config:5662: result: yes
Config:5666: Checking getopt.h usability
Config:5683: gcc -c conftest.c >&5
Config:5689: $? = 0
Config:5703: result: yes
Config:5707: Checking getopt.h presence
Config:5722: gcc -E conftest.c
Config:5728: $? = 0
Config:5742: result: yes
Config:5770: Checking for getopt.h
Config:5778: result: yes
Config:5792: Checking MIN and MAX definition
Config:5814: result: yes
Config:5824: Checking whether gcc needs -traditional
Config:5866: result: no
Config:5882: Checking for alarm
Config:5938: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:5944: $? = 0
Config:5962: result: yes
Config:5882: Checking for dup2
Config:5938: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:5944: $? = 0
Config:5962: result: yes
Config:5882: Checking for gethostbyname
Config:5938: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:5944: $? = 0
Config:5962: result: yes
Config:5882: Checking for gethostname
Config:5938: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:5944: $? = 0
Config:5962: result: yes
Config:5882: Checking for getpass
Config:5938: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:5944: $? = 0
Config:5962: result: yes
Config:5882: Checking for gettimeofday
Config:5938: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:5944: $? = 0
Config:5962: result: yes
Config:5982: Checking for inet_ntoa
Config:6038: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6044: $? = 0
Config:6062: result: yes
Config:5982: Checking for isascii
Config:6038: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:75:6: warning: conflicting types for built-in function 'isascii' [enabled by default]
Config:6044: $? = 0
Config:6062: result: yes
Config:5982: Checking for memmove
Config:6038: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:76:6: warning: conflicting types for built-in function 'memmove' [enabled by default]
Config:6044: $? = 0
Config:6062: result: yes
Config:5982: Checking for memset
Config:6038: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:77:6: warning: conflicting types for built-in function 'memset' [enabled by default]
Config:6044: $? = 0
Config:6062: result: yes
Config:5982: Checking for munmap
Config:6038: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6044: $? = 0
Config:6062: result: yes
Config:5982: Checking for setenv
Config:6038: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6044: $? = 0
Config:6062: result: yes
Config:5982: Checking for socket
Config:6038: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6044: $? = 0
Config:6062: result: yes
Config:6082: Checking for strcasecmp
Config:6138: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:81:6: warning: conflicting types for built-in function 'strcasecmp' [enabled by default]
Config:6144: $? = 0
Config:6162: result: yes
Config:6082: Checking for strchr
Config:6138: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:82:6: warning: conflicting types for built-in function 'strchr' [enabled by default]
Config:6144: $? = 0
Config:6162: result: yes
Config:6082: Checking for strdup
Config:6138: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:83:6: warning: conflicting types for built-in function 'strdup' [enabled by default]
Config:6144: $? = 0
Config:6162: result: yes
Config:6082: Checking for strerror
Config:6138: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6144: $? = 0
Config:6162: result: yes
Config:6082: Checking for strncasecmp
Config:6138: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:85:6: warning: conflicting types for built-in function 'strncasecmp' [enabled by default]
Config:6144: $? = 0
Config:6162: result: yes
Config:6082: Checking for strrchr
Config:6138: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:86:6: warning: conflicting types for built-in function 'strrchr' [enabled by default]
Config:6144: $? = 0
Config:6162: result: yes
Config:6082: Checking for strtol
Config:6138: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6144: $? = 0
Config:6162: result: yes
Config:6182: Checking for strtoul
Config:6238: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6244: $? = 0
Config:6262: result: yes
Config:6182: Checking for index
Config:6238: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:89:6: warning: conflicting types for built-in function 'index' [enabled by default]
Config:6244: $? = 0
Config:6262: result: yes
Config:6182: Checking for strerror
Config:6262: result: yes
Config:6182: Checking for strtoken
Config:6238: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
/tmp/ccIfhlTB.o: In function `main':
conftest.c:(.text+0x7): undefined reference to `strtoken'
collect2: ld returned 1 exit status
Config:6244: $? = 1
Config: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_LIBNSL 1
| #define HAVE_LIBRESOLV 1
| #define HAVE_LIBCRYPT 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_MINMAX 1
| #define HAVE_ALARM 1
| #define HAVE_DUP2 1
| #define HAVE_GETHOSTBYNAME 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETPASS 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INET_NTOA 1
| #define HAVE_ISASCII 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MUNMAP 1
| #define HAVE_SETENV 1
| #define HAVE_SOCKET 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOUL 1
| #define HAVE_INDEX 1
| #define HAVE_STRERROR 1
| /* end confdefs.h. */
| /* Define strtoken to an innocuous variant, in case <limits.h> declares strtoken.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define strtoken innocuous_strtoken
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char strtoken (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef strtoken
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char strtoken ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_strtoken || defined __stub___strtoken
| choke me
| #endif
|
| int
| main ()
| {
| return strtoken ();
| ;
| return 0;
| }
Config:6262: result: no
Config:6182: Checking for strtok
Config:6238: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6244: $? = 0
Config:6262: result: yes
Config:6182: Checking for inet_addr
Config:6238: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6244: $? = 0
Config:6262: result: yes
Config:6182: Checking for inet_netof
Config:6238: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6244: $? = 0
Config:6262: result: yes
Config:6282: Checking for inet_aton
Config:6338: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6344: $? = 0
Config:6362: result: yes
Config:6282: Checking for gettimeofday
Config:6362: result: yes
Config:6282: Checking for lrand48
Config:6338: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6344: $? = 0
Config:6362: result: yes
Config:6282: Checking for sigaction
Config:6338: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6344: $? = 0
Config:6362: result: yes
Config:6282: Checking for bzero
Config:6338: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:98:6: warning: conflicting types for built-in function 'bzero' [enabled by default]
Config:6344: $? = 0
Config:6362: result: yes
Config:6282: Checking for bcmp
Config:6338: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:99:6: warning: conflicting types for built-in function 'bcmp' [enabled by default]
Config:6344: $? = 0
Config:6362: result: yes
Config:6282: Checking for bcopy
Config:6338: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:100:6: warning: conflicting types for built-in function 'bcopy' [enabled by default]
Config:6344: $? = 0
Config:6362: result: yes
Config:6382: Checking for dn_skipname
Config:6438: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
/tmp/cc1hPy6K.o: In function `main':
conftest.c:(.text+0x7): undefined reference to `dn_skipname'
collect2: ld returned 1 exit status
Config:6444: $? = 1
Config: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define HAVE_LIBNSL 1
| #define HAVE_LIBRESOLV 1
| #define HAVE_LIBCRYPT 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_GETOPT_H 1
| #define HAVE_MINMAX 1
| #define HAVE_ALARM 1
| #define HAVE_DUP2 1
| #define HAVE_GETHOSTBYNAME 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETPASS 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INET_NTOA 1
| #define HAVE_ISASCII 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MUNMAP 1
| #define HAVE_SETENV 1
| #define HAVE_SOCKET 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOUL 1
| #define HAVE_INDEX 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOK 1
| #define HAVE_INET_ADDR 1
| #define HAVE_INET_NETOF 1
| #define HAVE_INET_ATON 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LRAND48 1
| #define HAVE_SIGACTION 1
| #define HAVE_BZERO 1
| #define HAVE_BCMP 1
| #define HAVE_BCOPY 1
| /* end confdefs.h. */
| /* Define dn_skipname to an innocuous variant, in case <limits.h> declares dn_skipname.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define dn_skipname innocuous_dn_skipname
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char dn_skipname (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef dn_skipname
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char dn_skipname ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_dn_skipname || defined __stub___dn_skipname
| choke me
| #endif
|
| int
| main ()
| {
| return dn_skipname ();
| ;
| return 0;
| }
Config:6462: result: no
Config:6382: Checking for __dn_skipname
Config:6438: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6444: $? = 0
Config:6462: result: yes
Config:6382: Checking for getrusage
Config:6438: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6444: $? = 0
Config:6462: result: yes
Config:6382: Checking for times
Config:6438: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
Config:6444: $? = 0
Config:6462: result: yes
Config:6382: Checking for break
Config:6438: gcc -o conftest conftest.c -lcrypt -lresolv -lnsl >&5
conftest.c:104:6: error: expected identifier or '(' before 'break'
conftest.c: In function 'main':
conftest.c:115:8: error: expected expression before 'break'
Config:6444: $? = 1
Config: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""