forked from Yuffster/CircleMUD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.log
1337 lines (1160 loc) · 40.9 KB
/
config.log
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.
configure:540: checking for less
configure:573: checking for gcc
configure:686: checking whether the C compiler (gcc ) works
configure:702: gcc -o conftest conftest.c 1>&5
configure:728: checking whether the C compiler (gcc ) is a cross-compiler
configure:733: checking whether we are using GNU C
configure:742: gcc -E conftest.c
configure:761: checking whether gcc accepts -g
configure:796: checking whether gcc -Wall also needs -Wno-char-subscripts
configure:815: gcc -c -g -O2 -Wall -Werror conftest.c 1>&5
configure:832: checking whether gcc accepts -Wno-char-subscripts
configure:847: gcc -c -g -O2 -Wno-char-subscripts conftest.c 1>&5
configure:864: checking whether gcc accepts -fno-builtin
configure:879: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:912: checking for gethostbyaddr
configure:940: gcc -o conftest -g -O2 conftest.c 1>&5
configure:1001: checking for socket
configure:1029: gcc -o conftest -g -O2 conftest.c 1>&5
configure:1090: checking for malloc
configure:1118: gcc -o conftest -g -O2 conftest.c 1>&5
configure:1102: warning: conflicting types for built-in function 'malloc'
configure:1186: checking for crypt
configure:1214: gcc -o conftest -g -O2 conftest.c 1>&5
/tmp/ccN9jLlz.o: In function `main':
/home/jamie/circle-3.1/configure:1208: undefined reference to `crypt'
collect2: ld returned 1 exit status
configure: failed program was:
#line 1191 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char crypt(); below. */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char crypt();
int main() {
/* 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
#else
crypt();
#endif
; return 0; }
configure:1235: checking for crypt in -lcrypt
configure:1254: gcc -o conftest -g -O2 conftest.c -lcrypt 1>&5
configure:1282: checking how to run the C preprocessor
configure:1303: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1362: checking for ANSI C header files
configure:1375: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1442: gcc -o conftest -g -O2 conftest.c 1>&5
configure: In function 'main':
configure:1437: warning: incompatible implicit declaration of built-in function 'exit'
configure:1466: checking for sys/wait.h that is POSIX.1 compatible
configure:1487: gcc -c -g -O2 conftest.c 1>&5
configure:1511: checking for fcntl.h
configure:1521: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1511: checking for sys/fcntl.h
configure:1521: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1511: checking for errno.h
configure:1521: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1511: checking for net/errno.h
configure:1521: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1517:23: error: net/errno.h: No such file or directory
configure: failed program was:
#line 1516 "configure"
#include "confdefs.h"
#include <net/errno.h>
configure:1511: checking for string.h
configure:1521: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1511: checking for strings.h
configure:1521: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1551: checking for limits.h
configure:1561: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1551: checking for sys/time.h
configure:1561: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1551: checking for sys/select.h
configure:1561: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1551: checking for sys/types.h
configure:1561: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1551: checking for unistd.h
configure:1561: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1591: checking for memory.h
configure:1601: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1591: checking for crypt.h
configure:1601: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1591: checking for assert.h
configure:1601: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1591: checking for arpa/telnet.h
configure:1601: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1591: checking for arpa/inet.h
configure:1601: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1631: checking for sys/stat.h
configure:1641: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1631: checking for sys/socket.h
configure:1641: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1631: checking for sys/resource.h
configure:1641: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1631: checking for netinet/in.h
configure:1641: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1631: checking for netdb.h
configure:1641: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1671: checking for signal.h
configure:1681: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1671: checking for sys/uio.h
configure:1681: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1671: checking for mcheck.h
configure:1681: gcc -E conftest.c >/dev/null 2>conftest.out
configure:1710: checking whether crypt needs over 10 characters
configure:1749: gcc -o conftest -g -O2 conftest.c -lcrypt 1>&5
configure: In function 'main':
configure:1742: warning: incompatible implicit declaration of built-in function 'exit'
configure: failed program was:
#line 1726 "configure"
#include "confdefs.h"
#define _XOPEN_SOURCE
#include <string.h>
#include <unistd.h>
#include <crypt.h>
int main(void)
{
char pwd[11], pwd2[11];
strncpy(pwd, (char *)crypt("FooBar", "BazQux"), 10);
pwd[10] = '\0';
strncpy(pwd2, (char *)crypt("xyzzy", "BazQux"), 10);
pwd2[10] = '\0';
if (strcmp(pwd, pwd2) == 0)
exit(0);
exit(1);
}
configure:1776: checking for working const
configure:1830: gcc -c -g -O2 conftest.c 1>&5
configure:1851: checking for pid_t
configure:1884: checking for size_t
configure:1917: checking for ssize_t
configure:1950: checking whether time.h and sys/time.h may both be included
configure:1964: gcc -c -g -O2 conftest.c 1>&5
configure:1999: checking for struct in_addr
configure:2011: gcc -c -g -O2 conftest.c 1>&5
configure:2038: checking for typedef socklen_t
configure:2050: gcc -c -g -O2 conftest.c 1>&5
configure:2074: checking return type of signal handlers
configure:2096: gcc -c -g -O2 conftest.c 1>&5
configure:2115: checking for vprintf
configure:2143: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2127: warning: conflicting types for built-in function 'vprintf'
configure:2222: checking for gettimeofday
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2222: checking for select
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2222: checking for snprintf
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2234: warning: conflicting types for built-in function 'snprintf'
configure:2222: checking for strcasecmp
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2234: warning: conflicting types for built-in function 'strcasecmp'
configure:2222: checking for strdup
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2234: warning: conflicting types for built-in function 'strdup'
configure:2222: checking for strerror
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2222: checking for stricmp
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
/tmp/cc9NvZ2A.o: In function `main':
/home/jamie/circle-3.1/configure:2244: undefined reference to `stricmp'
collect2: ld returned 1 exit status
configure: failed program was:
#line 2227 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char stricmp(); below. */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char stricmp();
int main() {
/* 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_stricmp) || defined (__stub___stricmp)
choke me
#else
stricmp();
#endif
; return 0; }
configure:2222: checking for strlcpy
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
/tmp/ccfFTwzD.o: In function `main':
/home/jamie/circle-3.1/configure:2244: undefined reference to `strlcpy'
collect2: ld returned 1 exit status
configure: failed program was:
#line 2227 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char strlcpy(); below. */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char strlcpy();
int main() {
/* 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_strlcpy) || defined (__stub___strlcpy)
choke me
#else
strlcpy();
#endif
; return 0; }
configure:2222: checking for strncasecmp
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2234: warning: conflicting types for built-in function 'strncasecmp'
configure:2222: checking for strnicmp
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
/tmp/ccIss3II.o: In function `main':
/home/jamie/circle-3.1/configure:2244: undefined reference to `strnicmp'
collect2: ld returned 1 exit status
configure: failed program was:
#line 2227 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char strnicmp(); below. */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char strnicmp();
int main() {
/* 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_strnicmp) || defined (__stub___strnicmp)
choke me
#else
strnicmp();
#endif
; return 0; }
configure:2222: checking for strstr
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2234: warning: conflicting types for built-in function 'strstr'
configure:2222: checking for vsnprintf
configure:2250: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2234: warning: conflicting types for built-in function 'vsnprintf'
configure:2280: checking for inet_addr
configure:2308: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2280: checking for inet_aton
configure:2308: gcc -o conftest -g -O2 conftest.c 1>&5
configure:2338: checking if accept is prototyped
configure:2364: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2357: error: conflicting types for 'accept'
/usr/include/sys/socket.h:214: note: previous declaration of 'accept' was here
configure: failed program was:
#line 2348 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef accept
error - already defined!
#endif
void accept(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2395: checking if atoi is prototyped
configure:2421: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2414: error: conflicting types for 'atoi'
/usr/include/stdlib.h:284: note: previous definition of 'atoi' was here
configure: failed program was:
#line 2405 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef atoi
error - already defined!
#endif
void atoi(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2452: checking if atol is prototyped
configure:2478: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2471: error: conflicting types for 'atol'
/usr/include/stdlib.h:289: note: previous definition of 'atol' was here
configure: failed program was:
#line 2462 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef atol
error - already defined!
#endif
void atol(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2509: checking if bind is prototyped
configure:2535: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2528: error: conflicting types for 'bind'
/usr/include/sys/socket.h:115: note: previous declaration of 'bind' was here
configure: failed program was:
#line 2519 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef bind
error - already defined!
#endif
void bind(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2566: checking if bzero is prototyped
configure:2592: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2585: error: conflicting types for 'bzero'
/usr/include/string.h:457: note: previous declaration of 'bzero' was here
configure: failed program was:
#line 2576 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef bzero
error - already defined!
#endif
void bzero(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2623: checking if chdir is prototyped
configure:2649: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2642: error: conflicting types for 'chdir'
/usr/include/unistd.h:493: note: previous declaration of 'chdir' was here
configure: failed program was:
#line 2633 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef chdir
error - already defined!
#endif
void chdir(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2680: checking if close is prototyped
configure:2706: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2699: error: conflicting types for 'close'
/usr/include/unistd.h:350: note: previous declaration of 'close' was here
configure: failed program was:
#line 2690 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef close
error - already defined!
#endif
void close(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2737: checking if crypt is prototyped
configure:2763: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2756: error: conflicting types for 'crypt'
/usr/include/crypt.h:33: note: previous declaration of 'crypt' was here
configure: failed program was:
#line 2747 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef crypt
error - already defined!
#endif
void crypt(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2794: checking if fclose is prototyped
configure:2820: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2813: error: conflicting types for 'fclose'
/usr/include/stdio.h:214: note: previous declaration of 'fclose' was here
configure: failed program was:
#line 2804 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fclose
error - already defined!
#endif
void fclose(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2851: checking if fcntl is prototyped
configure:2877: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2870: error: conflicting types for 'fcntl'
/usr/include/fcntl.h:64: note: previous declaration of 'fcntl' was here
configure: failed program was:
#line 2861 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fcntl
error - already defined!
#endif
void fcntl(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2908: checking if fflush is prototyped
configure:2934: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2927: error: conflicting types for 'fflush'
/usr/include/stdio.h:219: note: previous declaration of 'fflush' was here
configure: failed program was:
#line 2918 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fflush
error - already defined!
#endif
void fflush(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:2965: checking if fprintf is prototyped
configure:2991: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:2984: error: conflicting types for 'fprintf'
/usr/include/stdio.h:333: note: previous declaration of 'fprintf' was here
configure: failed program was:
#line 2975 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fprintf
error - already defined!
#endif
void fprintf(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3022: checking if fputc is prototyped
configure:3048: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3041: error: conflicting types for 'fputc'
/usr/include/stdio.h:555: note: previous declaration of 'fputc' was here
configure: failed program was:
#line 3032 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fputc
error - already defined!
#endif
void fputc(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3079: checking if fputs is prototyped
configure:3105: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3098: error: conflicting types for 'fputs'
/usr/include/stdio.h:662: note: previous declaration of 'fputs' was here
configure: failed program was:
#line 3089 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fputs
error - already defined!
#endif
void fputs(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3136: checking if fread is prototyped
configure:3162: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3155: error: conflicting types for 'fread'
/usr/include/stdio.h:682: note: previous declaration of 'fread' was here
configure: failed program was:
#line 3146 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fread
error - already defined!
#endif
void fread(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3193: checking if fscanf is prototyped
configure:3219: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3212: error: conflicting types for 'fscanf'
/usr/include/stdio.h:425: note: previous declaration of 'fscanf' was here
configure: failed program was:
#line 3203 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fscanf
error - already defined!
#endif
void fscanf(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3250: checking if fseek is prototyped
configure:3276: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3269: error: conflicting types for 'fseek'
/usr/include/stdio.h:722: note: previous declaration of 'fseek' was here
configure: failed program was:
#line 3260 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fseek
error - already defined!
#endif
void fseek(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3307: checking if fwrite is prototyped
configure:3333: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3326: error: conflicting types for 'fwrite'
/usr/include/stdio.h:688: note: previous declaration of 'fwrite' was here
configure: failed program was:
#line 3317 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef fwrite
error - already defined!
#endif
void fwrite(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3364: checking if getpeername is prototyped
configure:3390: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3383: error: conflicting types for 'getpeername'
/usr/include/sys/socket.h:133: note: previous declaration of 'getpeername' was here
configure: failed program was:
#line 3374 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef getpeername
error - already defined!
#endif
void getpeername(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3421: checking if getpid is prototyped
configure:3447: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3440: error: conflicting types for 'getpid'
/usr/include/unistd.h:623: note: previous declaration of 'getpid' was here
configure: failed program was:
#line 3431 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef getpid
error - already defined!
#endif
void getpid(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3478: checking if getrlimit is prototyped
configure:3504: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3497: error: conflicting types for 'getrlimit'
/usr/include/sys/resource.h:51: note: previous declaration of 'getrlimit' was here
configure: failed program was:
#line 3488 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef getrlimit
error - already defined!
#endif
void getrlimit(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3535: checking if getsockname is prototyped
configure:3561: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3554: error: conflicting types for 'getsockname'
/usr/include/sys/socket.h:119: note: previous declaration of 'getsockname' was here
configure: failed program was:
#line 3545 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef getsockname
error - already defined!
#endif
void getsockname(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3592: checking if gettimeofday is prototyped
configure:3618: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3611: error: conflicting types for 'gettimeofday'
/usr/include/sys/time.h:73: note: previous declaration of 'gettimeofday' was here
configure: failed program was:
#line 3602 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef gettimeofday
error - already defined!
#endif
void gettimeofday(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3649: checking if htonl is prototyped
configure:3675: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3666: error: expected '=', ',', ';', 'asm' or '__attribute__' before '-' token
configure:3668:70: error: macro "htonl" passed 8 arguments, but takes just 1
configure: failed program was:
#line 3659 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef htonl
error - already defined!
#endif
void htonl(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3706: checking if htons is prototyped
configure:3732: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3723: error: expected '=', ',', ';', 'asm' or '__attribute__' before '-' token
configure:3725:70: error: macro "htons" passed 8 arguments, but takes just 1
configure: failed program was:
#line 3716 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef htons
error - already defined!
#endif
void htons(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3763: checking if inet_addr is prototyped
configure:3789: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3782: error: conflicting types for 'inet_addr'
/usr/include/arpa/inet.h:35: note: previous declaration of 'inet_addr' was here
configure: failed program was:
#line 3773 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef inet_addr
error - already defined!
#endif
void inet_addr(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3820: checking if inet_aton is prototyped
configure:3846: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3839: error: conflicting types for 'inet_aton'
/usr/include/arpa/inet.h:74: note: previous declaration of 'inet_aton' was here
configure: failed program was:
#line 3830 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef inet_aton
error - already defined!
#endif
void inet_aton(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3877: checking if inet_ntoa is prototyped
configure:3903: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3896: error: conflicting types for 'inet_ntoa'
/usr/include/arpa/inet.h:54: note: previous declaration of 'inet_ntoa' was here
configure: failed program was:
#line 3887 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef inet_ntoa
error - already defined!
#endif
void inet_ntoa(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3934: checking if listen is prototyped
configure:3960: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:3953: error: conflicting types for 'listen'
/usr/include/sys/socket.h:204: note: previous declaration of 'listen' was here
configure: failed program was:
#line 3944 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef listen
error - already defined!
#endif
void listen(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:3991: checking if ntohl is prototyped
configure:4017: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:4008: error: expected '=', ',', ';', 'asm' or '__attribute__' before '-' token
configure:4010:70: error: macro "ntohl" passed 8 arguments, but takes just 1
configure: failed program was:
#line 4001 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef ntohl
error - already defined!
#endif
void ntohl(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:4048: checking if perror is prototyped
configure:4074: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:4067: error: conflicting types for 'perror'
/usr/include/stdio.h:819: note: previous declaration of 'perror' was here
configure: failed program was:
#line 4058 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef perror
error - already defined!
#endif
void perror(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:4105: checking if printf is prototyped
configure:4131: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:4124: error: conflicting types for 'printf'
/usr/include/stdio.h:339: note: previous declaration of 'printf' was here
configure: failed program was:
#line 4115 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef printf
error - already defined!
#endif
void printf(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:4162: checking if qsort is prototyped
configure:4188: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:4181: error: conflicting types for 'qsort'
/usr/include/stdlib.h:756: note: previous declaration of 'qsort' was here
configure: failed program was:
#line 4172 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef qsort
error - already defined!
#endif
void qsort(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:4219: checking if read is prototyped
configure:4245: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:4238: error: conflicting types for 'read'
/usr/include/unistd.h:357: note: previous declaration of 'read' was here
configure: failed program was:
#line 4229 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef read
error - already defined!
#endif
void read(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:4276: checking if remove is prototyped
configure:4302: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:4295: error: conflicting types for 'remove'
/usr/include/stdio.h:155: note: previous declaration of 'remove' was here
configure: failed program was:
#line 4286 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef remove
error - already defined!
#endif
void remove(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:4333: checking if rewind is prototyped
configure:4359: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:4352: error: conflicting types for 'rewind'
/usr/include/stdio.h:732: note: previous declaration of 'rewind' was here
configure: failed program was:
#line 4343 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES
#define __COMM_C__
#define __ACT_OTHER_C__
#include "src/sysdep.h"
#ifdef rewind
error - already defined!
#endif
void rewind(int a, char b, int c, char d, int e, char f, int g, char h);
int main() {
; return 0; }
configure:4390: checking if select is prototyped
configure:4416: gcc -c -g -O2 -fno-builtin conftest.c 1>&5
configure:4409: error: conflicting types for 'select'
/usr/include/sys/select.h:109: note: previous declaration of 'select' was here
configure: failed program was:
#line 4400 "configure"
#include "confdefs.h"
#define NO_LIBRARY_PROTOTYPES