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
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
|
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by lynx configure 2.9.1b, which was
generated by GNU Autoconf 2.52.20231210. Invocation command line was
$ ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man --with-ssl=/usr --enable-ipv6 --enable-externs --enable-nls
## ---------- ##
## Platform. ##
## ---------- ##
hostname = X220
uname -m = x86_64
uname -r = 6.16.7-artix1-1
uname -s = Linux
uname -v = #1 SMP PREEMPT_DYNAMIC Tue, 16 Sep 2025 11:45:12 +0000
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH = /usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/philip/.local/bin:/home/philip/.local/bin:/home/philip/.local/bin:/home/philip/.local/bin
## ------------ ##
## Core tests. ##
## ------------ ##
configure:1132: PATH=".;."; conftest.sh
./configure: line 1133: conftest.sh: command not found
configure:1135: $? = 127
configure:1195: checking build system type
configure:1213: result: x86_64-pc-linux-gnu
configure:1220: checking host system type
configure:1234: result: x86_64-pc-linux-gnu
configure:1242: checking target system type
configure:1256: result: x86_64-pc-linux-gnu
configure:1288: result: Configuring for linux-gnu
configure:1325: checking for DESTDIR
configure:1370: result:
configure:1424: checking for gcc
configure:1439: found /usr/bin/gcc
configure:1447: result: gcc
configure:1675: checking for C compiler version
configure:1678: gcc --version </dev/null >&5
gcc (GCC) 15.2.1 20250813
Copyright (C) 2025 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:1681: $? = 0
configure:1683: gcc -v </dev/null >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://gitea.artixlinux.org/packages/gcc/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 15.2.1 20250813 (GCC)
configure:1686: $? = 0
configure:1688: gcc -V </dev/null >&5
gcc: error: unrecognized command-line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:1691: $? = 1
configure:1711: checking for C compiler default output
configure:1714: gcc conftest.c >&5
configure:1717: $? = 0
configure:1746: result: a.out
configure:1751: checking whether the C compiler works
configure:1757: ./a.out
configure:1760: $? = 0
configure:1775: result: yes
configure:1782: checking whether we are cross compiling
configure:1784: result: no
configure:1787: checking for executable suffix
configure:1789: gcc -o conftest conftest.c >&5
configure:1792: $? = 0
configure:1814: result:
configure:1820: checking for object suffix
configure:1838: gcc -c conftest.c >&5
configure:1841: $? = 0
configure:1860: result: o
configure:1864: checking whether we are using the GNU C compiler
configure:1885: gcc -c conftest.c >&5
configure:1888: $? = 0
configure:1891: test -s conftest.o
configure:1894: $? = 0
configure:1906: result: yes
configure:1912: checking whether gcc accepts -g
configure:1930: gcc -c -g conftest.c >&5
configure:1933: $? = 0
configure:1936: test -s conftest.o
configure:1939: $? = 0
configure:1949: result: yes
configure:1976: gcc -c -g -O2 conftest.c >&5
conftest.c:2:3: error: unknown type name 'choke'
2 | choke me
| ^~~~~
conftest.c:2:3: error: expected '=', ',', ';', 'asm' or '__attribute__' at end of input
configure:1979: $? = 1
configure: failed program was:
#ifndef __cplusplus
choke me
#endif
configure:2080: checking version of gcc
configure:2084: result: 15.2.1
configure:2093: checking if this is really Intel C compiler
configure:2115: gcc -c -g -O2 -no-gcc conftest.c >&5
gcc: error: unrecognized command-line option '-no-gcc'
configure:2118: $? = 1
configure: failed program was:
#line 2098 "configure"
#include "confdefs.h"
int
main (void)
{
#ifdef __INTEL_COMPILER
#else
#error __INTEL_COMPILER is not defined
#endif
;
return 0;
}
configure:2135: result: no
configure:2144: checking if this is really Clang C compiler
configure:2165: gcc -c -g -O2 conftest.c >&5
configure: In function 'main':
configure:2156:2: error: #error __clang__ is not defined
2156 | #else
| ^~~~
configure:2168: $? = 1
configure: failed program was:
#line 2148 "configure"
#include "confdefs.h"
int
main (void)
{
#ifdef __clang__
#else
#error __clang__ is not defined
#endif
;
return 0;
}
configure:2184: result: no
configure:2265: checking for gcc option to accept ANSI C
configure:2320: gcc -c -g -O2 conftest.c >&5
configure:2323: $? = 0
configure:2326: test -s conftest.o
configure:2329: $? = 0
configure:2346: result: none needed
configure:2357: checking $CFLAGS variable
configure:2471: result: ok
configure:2476: checking $CC variable
configure:2611: result: ok
configure:2616: checking for inline
configure:2633: gcc -c -g -O2 conftest.c >&5
configure:2636: $? = 0
configure:2639: test -s conftest.o
configure:2642: $? = 0
configure:2653: result: inline
configure:2672: checking for ggrep
configure:2698: result: no
configure:2672: checking for grep
configure:2687: found /usr/bin/grep
configure:2695: result: grep
configure:2706: checking for egrep
configure:2762: result: grep -E
configure:2772: checking how to run the C preprocessor
configure:2798: gcc -E conftest.c
configure:2804: $? = 0
configure:2831: gcc -E conftest.c
configure:2828:10: fatal error: ac_nonexistent.h: No such file or directory
2828 | #include "confdefs.h"
| ^~~~~~~~~~~~
compilation terminated.
configure:2837: $? = 1
configure: failed program was:
#line 2827 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
configure:2874: result: gcc -E
configure:2889: gcc -E conftest.c
configure:2895: $? = 0
configure:2922: gcc -E conftest.c
configure:2919:10: fatal error: ac_nonexistent.h: No such file or directory
2919 | #include "confdefs.h"
| ^~~~~~~~~~~~
compilation terminated.
configure:2928: $? = 1
configure: failed program was:
#line 2918 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
configure:2968: checking if preprocessor -C option works
configure:2993: result: yes
configure:3000: checking whether ln -s works
configure:3004: result: yes
configure:3020: checking whether make sets ${MAKE}
configure:3040: result: yes
configure:3061: checking for a BSD compatible install
configure:3110: result: /usr/bin/install -c
configure:3125: checking for byacc
configure:3151: result: no
configure:3125: checking for bison
configure:3140: found /usr/bin/bison
configure:3148: result: bison -y
configure:3159: checking for egrep
configure:3215: result: grep -E
configure:3223: checking for lint
configure:3249: result: no
configure:3223: checking for cppcheck
configure:3249: result: no
configure:3223: checking for splint
configure:3249: result: no
configure:3262: checking for fgrep
configure:3318: result: grep -F
configure:3322: checking for makeflags variable
configure:3360: result:
configure:3363: checking for ".PHONY" make-support
** making always.out 1
echo 1 > always.out
** making always 1
** making once.out 1
echo 1 > once.out
** making once 1
make: Nothing to be done for 'always'.
touch once
** making always.out 2
echo 2 > always.out
** making always 2
** making once.out 2
echo 2 > once.out
** making once 2
make: Nothing to be done for 'always'.
touch once
** making always.out 3
echo 3 > always.out
** making always 3
** making once.out 3
echo 3 > once.out
** making once 3
make: Nothing to be done for 'always'.
touch once
configure:3418: result: yes
configure:3425: checking if filesystem supports mixed-case filenames
configure:3452: result: yes
configure:3463: checking for exctags
configure:3489: result: no
configure:3463: checking for ctags
configure:3489: result: no
configure:3500: checking for exetags
configure:3526: result: no
configure:3500: checking for etags
configure:3526: result: no
configure:3535: checking for ctags
configure:3559: result: no
configure:3569: checking for etags
configure:3593: result: no
configure:3659: checking for windres
configure:3688: result: none
configure:3930: checking for ranlib
configure:3945: found /usr/bin/ranlib
configure:3954: result: ranlib
configure:4004: checking for ar
configure:4019: found /usr/bin/ar
configure:4028: result: ar
configure:4040: checking for options to update archives
configure:4080: gcc -c -g -O2 conftest.c >&5
configure:4083: $? = 0
ar -curvU conftest.a conftest.o
configure:4104: result: -curvU
configure:4115: checking if you want to see long compiling messages
configure:4149: result: yes
configure:4159: checking if you want to check memory-leaks
configure:4176: result: no
configure:4186: checking if you want to enable debug-code
configure:4203: result: no
configure:4228: checking if you want to enable lynx trace code *recommended*
configure:4245: result: yes
configure:4252: checking if you want verbose trace code
configure:4269: result: no
configure:5364: checking if you want to use C11 _Noreturn feature
configure:5381: result: no
configure:5595: checking if you want to turn on gcc warnings
configure:5612: result: no
configure:5984: checking if you want to use dbmalloc for testing
configure:6006: result: no
configure:6221: checking if you want to use dmalloc for testing
configure:6243: result: no
configure:6950: checking $CFLAGS variable
configure:7064: result: ok
configure:7069: checking $CC variable
configure:7204: result: ok
configure:7209: checking for gcc option to accept ANSI C
configure:7356: gcc -c -O2 -DCC_HAS_PROTOS conftest.c >&5
configure:7359: $? = 0
configure:7362: test -s conftest.o
configure:7365: $? = 0
configure:7378: result: -DCC_HAS_PROTOS
configure:7505: checking if the POSIX test-macros are already defined
configure:7531: gcc -c -O2 conftest.c >&5
configure:7534: $? = 0
configure:7537: test -s conftest.o
configure:7540: $? = 0
configure:7551: result: no
configure:7593: checking if this is the GNU C library
configure:7619: gcc -c -O2 conftest.c >&5
configure:7622: $? = 0
configure:7625: test -s conftest.o
configure:7628: $? = 0
configure:7639: result: yes
configure:7647: checking if _DEFAULT_SOURCE can be used as a basis
configure:7678: gcc -c -O2 -D_DEFAULT_SOURCE conftest.c >&5
configure:7681: $? = 0
configure:7684: test -s conftest.o
configure:7687: $? = 0
configure:7699: result: yes
configure:7704: checking if _XOPEN_SOURCE=500 works with _DEFAULT_SOURCE
configure:7829: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:7832: $? = 0
configure:7835: test -s conftest.o
configure:7838: $? = 0
configure:7849: result: yes
configure:9104: checking if _XOPEN_SOURCE really is set
configure:9122: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:9125: $? = 0
configure:9128: test -s conftest.o
configure:9131: $? = 0
configure:9140: result: yes
configure:9160: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:9163: $? = 0
configure:9166: test -s conftest.o
configure:9169: $? = 0
configure:9427: checking for special C compiler options needed for large files
configure:9501: result: no
configure:9507: checking for _FILE_OFFSET_BITS value needed for large files
configure:9535: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:9538: $? = 0
configure:9541: test -s conftest.o
configure:9544: $? = 0
configure:9594: result: no
configure:9604: checking for _LARGE_FILES value needed for large files
configure:9632: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:9635: $? = 0
configure:9638: test -s conftest.o
configure:9641: $? = 0
configure:9691: result: no
configure:9704: checking for _LARGEFILE_SOURCE value needed for large files
configure:9727: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:9730: $? = 0
configure:9733: test -s conftest.o
configure:9736: $? = 0
configure:9781: result: no
configure:9795: checking for fseeko
configure:9815: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:9818: $? = 0
configure:9821: test -s conftest
configure:9824: $? = 0
configure:9834: result: yes
configure:9873: checking whether to use struct dirent64
configure:9907: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure: In function 'main':
configure:9896:38: error: initialization of 'struct dirent64 *' from incompatible pointer type 'struct dirent *' [-Wincompatible-pointer-types]
9896 | DIR *dp = opendir(".");
| ^~
configure:9898:27: error: invalid operands to binary - (have 'struct dirent64 *' and 'struct dirent *')
9898 | struct dirent *y = readdir(dp);
| ^
configure:9910: $? = 1
configure: failed program was:
#line 9880 "configure"
#include "confdefs.h"
#pragma GCC diagnostic error "-Wincompatible-pointer-types"
#include <sys/types.h>
#include <dirent.h>
#ifndef __REDIRECT
/* if transitional largefile support is setup, this is true */
extern struct dirent64 * readdir(DIR *);
#endif
int
main (void)
{
DIR *dp = opendir(".");
struct dirent64 *x = readdir(dp);
struct dirent *y = readdir(dp);
int z = x - y;
(void)z;
;
return 0;
}
configure:9927: result: no
configure:9936: checking for ANSI C header files
configure:9950: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c
configure:9956: $? = 0
configure:10043: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10046: $? = 0
configure:10048: ./conftest
configure:10051: $? = 0
configure:10064: result: yes
configure:10080: checking for sys/types.h
configure:10092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10095: $? = 0
configure:10098: test -s conftest.o
configure:10101: $? = 0
configure:10111: result: yes
configure:10080: checking for sys/stat.h
configure:10092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10095: $? = 0
configure:10098: test -s conftest.o
configure:10101: $? = 0
configure:10111: result: yes
configure:10080: checking for stdlib.h
configure:10092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10095: $? = 0
configure:10098: test -s conftest.o
configure:10101: $? = 0
configure:10111: result: yes
configure:10080: checking for string.h
configure:10092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10095: $? = 0
configure:10098: test -s conftest.o
configure:10101: $? = 0
configure:10111: result: yes
configure:10080: checking for memory.h
configure:10092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10095: $? = 0
configure:10098: test -s conftest.o
configure:10101: $? = 0
configure:10111: result: yes
configure:10080: checking for strings.h
configure:10092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10095: $? = 0
configure:10098: test -s conftest.o
configure:10101: $? = 0
configure:10111: result: yes
configure:10080: checking for inttypes.h
configure:10092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10095: $? = 0
configure:10098: test -s conftest.o
configure:10101: $? = 0
configure:10111: result: yes
configure:10080: checking for stdint.h
configure:10092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10095: $? = 0
configure:10098: test -s conftest.o
configure:10101: $? = 0
configure:10111: result: yes
configure:10080: checking for unistd.h
configure:10092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10095: $? = 0
configure:10098: test -s conftest.o
configure:10101: $? = 0
configure:10111: result: yes
configure:10121: checking whether exit is declared
configure:10142: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10145: $? = 0
configure:10148: test -s conftest.o
configure:10151: $? = 0
configure:10161: result: yes
configure:10167: checking for PATH separator
configure:10174: result: :
configure:10180: checking for msginit
configure:10207: result: /usr/bin/msginit
configure:10217: testing adding en.po ...
configure:10501: checking for iconv
configure:10512: testing Starting FIND_LINKAGE(iconv,) ...
configure:10536: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10539: $? = 0
configure:10542: test -s conftest
configure:10545: $? = 0
configure:10910: result: yes
configure:10919: checking if the declaration of iconv() needs const.
configure:10951: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:10954: $? = 0
configure:10957: test -s conftest.o
configure:10960: $? = 0
configure:10970: result: no
configure:11103: checking for nl_langinfo and CODESET
configure:11123: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 conftest.c >&5
configure:11126: $? = 0
configure:11129: test -s conftest
configure:11132: $? = 0
configure:11143: result: yes
configure:11201: checking whether NLS is requested
configure:11211: result: yes
configure:11219: checking for msgfmt
configure:11246: result: /usr/bin/msgfmt
configure:11255: checking for gmsgfmt
configure:11284: result: /usr/bin/msgfmt
configure:11294: checking for xgettext
configure:11321: result: /usr/bin/xgettext
configure:11717: testing Starting FIND_LINKAGE(intl,) ...
configure:11744: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK conftest.c >&5
configure:11747: $? = 0
configure:11750: test -s conftest
configure:11753: $? = 0
configure:12126: checking for libintl.h and gettext()
configure:12128: result: yes
configure:12260: checking for dcgettext
configure:12297: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK conftest.c >&5
configure:12277:6: warning: conflicting types for built-in function 'dcgettext'; expected 'char *(const char *, const char *, int)' [-Wbuiltin-declaration-mismatch]
12277 | builtin and then its argument prototype would still apply. */
| ^~~~~~~~~
configure:12300: $? = 0
configure:12303: test -s conftest
configure:12306: $? = 0
configure:12316: result: yes
configure:12386: checking for catalogs to be installed
configure:12406: result: ca cs da de eo et fi fr hu id it ja nl pt_BR ro ru sl sv tr uk vi zh_CN zh_TW en
configure:12441: checking if we should use included message-library
configure:12452: result: yes
configure:12468: checking for libintl.h
configure:12478: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK conftest.c
configure:12484: $? = 0
configure:12503: result: yes
configure:12557: checking if you want full utility pathnames
configure:12574: result: yes
configure:12581: checking for system mailer
configure:12601: result: unknown
configure:12608: checking system mail flags
configure:12624: result: -t -oi
configure:12637: checking if SIGWINCH is defined
configure:12659: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK conftest.c >&5
configure:12662: $? = 0
configure:12665: test -s conftest.o
configure:12668: $? = 0
configure:12716: result: yes
configure:12788: testing checking additions to CFLAGS ...
configure:12883: testing add to $CPPFLAGS -DLINUX ...
configure:12948: checking if you want NSS compatible SSL libraries
configure:12963: result: no
configure:12966: checking if you want ssl library
configure:12981: result: /usr
configure:12984: checking if you want gnutls support
configure:12999: result: no
configure:13003: checking if you want gnutls-openssl compat
configure:13018: result: no
configure:13021: checking if you want socks library
configure:13036: result: no
configure:13039: checking if you want socks5 library
configure:13054: result: no
configure:14323: checking for network libraries
configure:14330: result: working...
configure:14467: checking for gethostname
configure:14504: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:14507: $? = 0
configure:14510: test -s conftest
configure:14513: $? = 0
configure:14523: result: yes
configure:14667: checking for main in -linet
configure:14687: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c -linet >&5
/usr/bin/ld: cannot find -linet: No such file or directory
collect2: error: ld returned 1 exit status
configure:14690: $? = 1
configure: failed program was:
#line 14675 "configure"
#include "confdefs.h"
int
main (void)
{
main ();
;
return 0;
}
configure:14707: result: no
configure:14718: checking for socket
configure:14755: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:14758: $? = 0
configure:14761: test -s conftest
configure:14764: $? = 0
configure:14774: result: yes
configure:14923: checking for gethostbyname
configure:14960: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:14963: $? = 0
configure:14966: test -s conftest
configure:14969: $? = 0
configure:14979: result: yes
configure:15060: checking for inet_ntoa
configure:15097: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:15100: $? = 0
configure:15103: test -s conftest
configure:15106: $? = 0
configure:15116: result: yes
configure:15197: checking for gethostbyname
configure:15253: result: yes
configure:15334: checking for strcasecmp
configure:15371: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:15351:6: warning: conflicting types for built-in function 'strcasecmp'; expected 'int(const char *, const char *)' [-Wbuiltin-declaration-mismatch]
15351 | builtin and then its argument prototype would still apply. */
| ^~~~~~~~~~
configure:15374: $? = 0
configure:15377: test -s conftest
configure:15380: $? = 0
configure:15390: result: yes
configure:15503: checking for inet_aton function
configure:15546: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:15549: $? = 0
configure:15552: test -s conftest
configure:15555: $? = 0
configure:15565: result: yes
configure:15716: checking if you want to use pkg-config
configure:15726: result: yes
configure:15778: checking for pkg-config
configure:15795: found /usr/bin/pkg-config
configure:15807: result: /usr/bin/pkg-config
configure:16117: testing setting path value for ssl library to /usr ...
configure:16318: checking for dlsym in -ldl
configure:16345: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c -ldl >&5
configure:16348: $? = 0
configure:16351: test -s conftest
configure:16354: $? = 0
configure:16365: result: yes
configure:16381: testing Starting FIND_LINKAGE(ssl,openssl) ...
configure:16415: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:16396:10: fatal error: ssl.h: No such file or directory
16396 | #else
| ^
compilation terminated.
configure:16418: $? = 1
configure: failed program was:
#line 16386 "configure"
#include "confdefs.h"
#include <stdio.h>
#if defined(USE_OPENSSL_INCL)
#include <openssl/ssl.h>
#elif defined(USE_GNUTLS_FUNCS)
#include <gnutls/gnutls.h>
#elif defined(USE_GNUTLS_INCL)
#include <gnutls/openssl.h>
#else
#include <ssl.h>
#endif
int
main (void)
{
#ifdef USE_GNUTLS_FUNCS
gnutls_global_init();
#else
SSL_shutdown((SSL *)0)
#endif
;
return 0;
}
configure:16467: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c -lssl -lcrypto -ldl >&5
configure:16448:10: fatal error: ssl.h: No such file or directory
16448 | #else
| ^
compilation terminated.
configure:16470: $? = 1
configure: failed program was:
#line 16438 "configure"
#include "confdefs.h"
#include <stdio.h>
#if defined(USE_OPENSSL_INCL)
#include <openssl/ssl.h>
#elif defined(USE_GNUTLS_FUNCS)
#include <gnutls/gnutls.h>
#elif defined(USE_GNUTLS_INCL)
#include <gnutls/openssl.h>
#else
#include <ssl.h>
#endif
int
main (void)
{
#ifdef USE_GNUTLS_FUNCS
gnutls_global_init();
#else
SSL_shutdown((SSL *)0)
#endif
;
return 0;
}
configure:16493: testing find linkage for ssl library ...
configure:16495: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ...
configure:16586: testing ... testing /usr/include ...
configure:16623: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -I/usr/include conftest.c >&5
configure:16604:10: fatal error: ssl.h: No such file or directory
16604 | #else
| ^
compilation terminated.
configure:16626: $? = 1
configure: failed program was:
#line 16594 "configure"
#include "confdefs.h"
#include <stdio.h>
#if defined(USE_OPENSSL_INCL)
#include <openssl/ssl.h>
#elif defined(USE_GNUTLS_FUNCS)
#include <gnutls/gnutls.h>
#elif defined(USE_GNUTLS_INCL)
#include <gnutls/openssl.h>
#else
#include <ssl.h>
#endif
int
main (void)
{
#ifdef USE_GNUTLS_FUNCS
gnutls_global_init();
#else
SSL_shutdown((SSL *)0)
#endif
;
return 0;
}
configure:16586: testing ... testing /usr/include/openssl ...
configure:16623: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -I/usr/include/openssl conftest.c >&5
configure:16626: $? = 0
configure:16629: test -s conftest.o
configure:16632: $? = 0
configure:16637: testing ... found ssl headers in /usr/include/openssl ...
configure:16655: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ...
configure:16692: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -I/usr/include/openssl conftest.c -lssl -lcrypto -ldl >&5
configure:16695: $? = 0
configure:16698: test -s conftest
configure:16701: $? = 0
configure:16706: testing ... found ssl library in system ...
configure:17028: testing checking ssl header-path /usr/include/openssl ...
configure:17041: checking for X509 support
configure:17073: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c -lssl -lcrypto -ldl >&5
configure:17076: $? = 0
configure:17079: test -s conftest
configure:17082: $? = 0
configure:17091: result: yes
configure:20077: checking whether to enable ipv6
configure:20094: result: yes
configure:20098: checking ipv6 stack type
configure:20235: result: linux-glibc
configure:20241: checking for IPv6 library if required
configure:20271: result: none
configure:20719: checking working getaddrinfo
configure:20809: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c -lssl -lcrypto -ldl >&5
configure:20812: $? = 0
configure:20814: ./conftest
configure:20817: $? = 0
configure:20830: result: yes
configure:20862: checking for screen type
configure:20885: result: curses
configure:20891: checking for specific curses-directory
configure:20901: result: no
configure:21061: checking for extra include directories
configure:21087: result: no
configure:21097: checking if we have identified curses headers
configure:21121: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:21124: $? = 0
configure:21127: test -s conftest.o
configure:21130: $? = 0
configure:21141: result: ncurses.h
configure:21155: checking for ncurses.h
configure:21165: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:21171: $? = 0
configure:21190: result: yes
configure:21200: checking for terminfo header
configure:21233: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:21236: $? = 0
configure:21239: test -s conftest.o
configure:21242: $? = 0
configure:21258: result: term.h
configure:21290: checking for ncurses version
configure:21356: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c -lssl -lcrypto -ldl >&5
configure:21359: $? = 0
configure:21361: ./conftest
configure:21364: $? = 0
configure:21378: result: 6.5.20240427
configure:21385: checking if we have identified curses libraries
configure:21400: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c -lssl -lcrypto -ldl >&5
/usr/bin/ld: /tmp/ccKFxz4u.o: in function `main':
conftest.c:(.text.startup+0x5): undefined reference to `initscr'
/usr/bin/ld: conftest.c:(.text.startup+0xa): undefined reference to `endwin'
collect2: error: ld returned 1 exit status
configure:21403: $? = 1
configure: failed program was:
#line 21388 "configure"
#include "confdefs.h"
#include <ncurses.h>
int
main (void)
{
initscr(); endwin()
;
return 0;
}
configure:21418: result: no
configure:21737: testing adding /lib to library-path ...
configure:21816: checking for tgoto
configure:21853: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lssl -lcrypto -ldl >&5
/usr/bin/ld: /tmp/ccscFHNI.o: in function `main':
conftest.c:(.text.startup+0x5): undefined reference to `tgoto'
collect2: error: ld returned 1 exit status
configure:21856: $? = 1
configure: failed program was:
#line 21822 "configure"
#include "confdefs.h"
#define tgoto autoconf_temporary
#include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */
#undef tgoto
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char tgoto (void);
int
main (void)
{
/* The GNU C library defines stubs 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_tgoto) || defined (__stub___tgoto)
#error found stub for tgoto
#endif
return tgoto ();
;
return 0;
}
configure:21872: result: no
configure:21881: checking for tgoto in -lncurses
configure:21908: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:21911: $? = 0
configure:21914: test -s conftest
configure:21917: $? = 0
configure:21928: result: yes
configure:21951: checking if we can link with ncurses library
configure:21966: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:21969: $? = 0
configure:21972: test -s conftest
configure:21975: $? = 0
configure:21984: result: yes
configure:22068: checking for curses performance tradeoff
configure:22095: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure: In function 'main':
configure:22086:10: error: expected expression before ';' token
22086 | #else
| ^
configure:22098: $? = 1
configure: failed program was:
#line 22076 "configure"
#include "confdefs.h"
#include <ncurses.h>
int
main (void)
{
#if defined(wbkgdset) && defined(clearok) && defined(getbkgd)
int x = ERR;
#else
int x = ; /* force an error */
#endif
;
return 0;
}
configure:22152: result: no
configure:22159: checking for curses touchline function
configure:22179: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure: In function 'main':
configure:22172:24: error: macro 'touchline' passed 4 arguments, but takes just 3
22172 | {
| ^
In file included from configure:22168:
/usr/include/curses.h:1251:9: note: macro 'touchline' defined here
1251 | #define touchline(win, s, c) wtouchln((win), s, c, 1)
| ^~~~~~~~~
configure:22182: $? = 1
configure: failed program was:
#line 22166 "configure"
#include "confdefs.h"
#include <ncurses.h>
int
main (void)
{
touchline(stdscr, 1,2,3);
;
return 0;
}
configure:22208: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:22211: $? = 0
configure:22214: test -s conftest
configure:22217: $? = 0
configure:22229: result: sysv
configure:29595: checking for an rpath option
configure:29626: result: -Wl,-rpath,
configure:29825: testing will not attempt to use rpath ...
configure:29831: checking for chtype typedef
configure:29850: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:29853: $? = 0
configure:29856: test -s conftest.o
configure:29859: $? = 0
configure:29869: result: yes
configure:29877: checking if chtype is scalar or struct
configure:29896: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:29899: $? = 0
configure:29902: test -s conftest.o
configure:29905: $? = 0
configure:29915: result: scalar
configure:29926: checking if you want the wide-curses features
configure:29943: result: no
configure:29946: checking if color-style code should be used
configure:29976: result: yes
configure:29979: checking for location of style-sheet file
configure:30024: result: /etc/lynx.lss
configure:30037: checking for the default configuration-file
configure:30082: result: /etc/lynx.cfg
configure:30091: checking for the default configuration-path
configure:30136: result: /etc
configure:30146: checking if htmlized lynx.cfg should be built
configure:30163: result: no
configure:30174: checking if local doc directory should be linked to help page
configure:30191: result: no
configure:30199: checking for MIME library directory
configure:30244: result: /etc
configure:30252: checking if locale-charset selection logic should be used
configure:30269: result: yes
configure:30278: checking if you want only a few charsets
configure:30342: result: no
configure:30346: checking whether time.h and sys/time.h may both be included
configure:30368: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:30371: $? = 0
configure:30374: test -s conftest.o
configure:30377: $? = 0
configure:30387: result: yes
configure:30400: checking for dirent.h that defines DIR
configure:30421: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:30424: $? = 0
configure:30427: test -s conftest.o
configure:30430: $? = 0
configure:30440: result: yes
configure:30453: checking for opendir in -ldir
configure:30480: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -ldir -lncurses -lssl -lcrypto -ldl >&5
/usr/bin/ld: cannot find -ldir: No such file or directory
collect2: error: ld returned 1 exit status
configure:30483: $? = 1
configure: failed program was:
#line 30461 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char opendir (void);
int
main (void)
{
opendir ();
;
return 0;
}
configure:30500: result: no
configure:30580: checking for arpa/inet.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for fcntl.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for limits.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for sys/fcntl.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for sys/filio.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30587:10: fatal error: sys/filio.h: No such file or directory
30587 | #include "confdefs.h"
| ^~~~~~~~~~~~
compilation terminated.
configure:30596: $? = 1
configure: failed program was:
#line 30586 "configure"
#include "confdefs.h"
#include <sys/filio.h>
configure:30615: result: no
configure:30580: checking for sys/ioctl.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for sys/param.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for sys/timeb.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for sys/time.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for syslog.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for termio.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30587:10: fatal error: termio.h: No such file or directory
30587 | #include "confdefs.h"
| ^~~~~~~~~~
compilation terminated.
configure:30596: $? = 1
configure: failed program was:
#line 30586 "configure"
#include "confdefs.h"
#include <termio.h>
configure:30615: result: no
configure:30580: checking for termios.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30580: checking for vfork.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30587:10: fatal error: vfork.h: No such file or directory
30587 | #include "confdefs.h"
| ^~~~~~~~~
compilation terminated.
configure:30596: $? = 1
configure: failed program was:
#line 30586 "configure"
#include "confdefs.h"
#include <vfork.h>
configure:30615: result: no
configure:30580: checking for wchar.h
configure:30590: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30596: $? = 0
configure:30615: result: yes
configure:30625: checking termio.h and termios.h
configure:30651: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:30654: $? = 0
configure:30657: test -s conftest.o
configure:30660: $? = 0
configure:30671: result: yes
configure:30678: checking for sigaction and structs
configure:30705: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:30708: $? = 0
configure:30711: test -s conftest
configure:30714: $? = 0
configure:30725: result: yes
configure:30735: checking for sys/wait.h
configure:30745: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:30751: $? = 0
configure:30770: result: yes
configure:30896: checking for union wait
configure:30922: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:30925: $? = 0
configure:30928: test -s conftest
configure:30931: $? = 0
compiles ok w/o union wait
configure:30992: result: no
configure:31097: checking for uid_t in sys/types.h
configure:31117: result: yes
configure:31131: checking type of array argument to getgroups
configure:31167: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:31170: $? = 0
configure:31172: ./conftest
configure:31175: $? = 0
configure:31203: result: gid_t
configure:31210: checking for off_t
configure:31231: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:31234: $? = 0
configure:31237: test -s conftest.o
configure:31240: $? = 0
configure:31250: result: yes
configure:31262: checking for pid_t
configure:31283: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:31286: $? = 0
configure:31289: test -s conftest.o
configure:31292: $? = 0
configure:31302: result: yes
configure:31314: checking for uid_t in sys/types.h
configure:31334: result: yes
configure:31348: checking for mode_t
configure:31369: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:31372: $? = 0
configure:31375: test -s conftest.o
configure:31378: $? = 0
configure:31388: result: yes
configure:31400: checking for ssize_t
configure:31421: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:31424: $? = 0
configure:31427: test -s conftest.o
configure:31430: $? = 0
configure:31440: result: yes
configure:31456: checking for socklen_t
configure:31480: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:31483: $? = 0
configure:31486: test -s conftest.o
configure:31489: $? = 0
configure:31499: result: yes
configure:31515: checking for long long type
configure:31546: result: yes
configure:31557: checking for tm.tm_gmtoff
configure:31589: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:31592: $? = 0
configure:31595: test -s conftest.o
configure:31598: $? = 0
configure:31609: result: yes
configure:31616: checking for int
configure:31637: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:31640: $? = 0
configure:31643: test -s conftest.o
configure:31646: $? = 0
configure:31656: result: yes
configure:31659: checking size of int
configure:31823: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:31826: $? = 0
configure:31828: ./conftest
configure:31831: $? = 0
configure:31847: result: 4
configure:31874: checking for long
configure:31895: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:31898: $? = 0
configure:31901: test -s conftest.o
configure:31904: $? = 0
configure:31914: result: yes
configure:31917: checking size of long
configure:32081: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:32084: $? = 0
configure:32086: ./conftest
configure:32089: $? = 0
configure:32105: result: 8
configure:32132: checking for off_t
configure:32172: result: yes
configure:32175: checking size of off_t
configure:32339: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:32342: $? = 0
configure:32344: ./conftest
configure:32347: $? = 0
configure:32363: result: 8
configure:32390: checking for size_t
configure:32411: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:32414: $? = 0
configure:32417: test -s conftest.o
configure:32420: $? = 0
configure:32430: result: yes
configure:32433: checking size of size_t
configure:32597: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:32600: $? = 0
configure:32602: ./conftest
configure:32605: $? = 0
configure:32621: result: 8
configure:32648: checking for time_t
configure:32669: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:32672: $? = 0
configure:32675: test -s conftest.o
configure:32678: $? = 0
configure:32688: result: yes
configure:32691: checking size of time_t
configure:32855: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:32858: $? = 0
configure:32860: ./conftest
configure:32863: $? = 0
configure:32879: result: 8
configure:32906: checking for intptr_t
configure:32927: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:32930: $? = 0
configure:32933: test -s conftest.o
configure:32936: $? = 0
configure:32946: result: yes
configure:32960: checking for working alloca.h
configure:32978: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:32981: $? = 0
configure:32984: test -s conftest
configure:32987: $? = 0
configure:32997: result: yes
configure:33007: checking for alloca
configure:33045: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:33048: $? = 0
configure:33051: test -s conftest
configure:33054: $? = 0
configure:33064: result: yes
configure:33248: checking for unistd.h
configure:33283: result: yes
configure:33248: checking for vfork.h
configure:33283: result: no
configure:33296: checking for fork
configure:33333: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:33313:6: warning: conflicting types for built-in function 'fork'; expected 'int(void)' [-Wbuiltin-declaration-mismatch]
33313 | builtin and then its argument prototype would still apply. */
| ^~~~
configure:33336: $? = 0
configure:33339: test -s conftest
configure:33342: $? = 0
configure:33352: result: yes
configure:33296: checking for vfork
configure:33333: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:33336: $? = 0
configure:33339: test -s conftest
configure:33342: $? = 0
configure:33352: result: yes
configure:33364: checking for working fork
configure:33407: result: yes
configure:33426: checking for working vfork
configure:33548: result: yes
configure:33579: checking if we should use fcntl or ioctl
configure:33603: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:33606: $? = 0
configure:33609: test -s conftest
configure:33612: $? = 0
configure:33664: result: ioctl
configure:33671: checking for broken/missing definition of remove
configure:33690: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:33693: $? = 0
configure:33696: test -s conftest
configure:33699: $? = 0
configure:33743: result: no
configure:33750: checking for lstat
configure:33769: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:33772: $? = 0
configure:33775: test -s conftest
configure:33778: $? = 0
configure:33790: result: yes
configure:33800: checking for getpwuid
configure:33825: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:33828: $? = 0
configure:33831: test -s conftest
configure:33834: $? = 0
configure:33845: result: yes
configure:33860: checking for passwd.pw_gecos
configure:33884: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:33887: $? = 0
configure:33890: test -s conftest.o
configure:33893: $? = 0
configure:33903: result: yes
configure:33910: checking for vasprintf
configure:33947: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:33950: $? = 0
configure:33953: test -s conftest
configure:33956: $? = 0
configure:33966: result: yes
configure:33974: checking if vasprintf requires workaround
configure:33993: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:33996: $? = 0
configure:33999: test -s conftest.o
configure:34002: $? = 0
configure:34005: result: no
configure:34087: checking for atoll
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for ctermid
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for cuserid
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for ftime
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for getcwd
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for getgroups
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for gettimeofday
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for getuid
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for popen
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for putenv
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for readdir
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for setuid
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for truncate
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for ttyname
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for unsetenv
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for sleep
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for usleep
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34087: checking for waitpid
configure:34124: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34127: $? = 0
configure:34130: test -s conftest
configure:34133: $? = 0
configure:34143: result: yes
configure:34157: checking for mkdtemp
configure:34194: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34197: $? = 0
configure:34200: test -s conftest
configure:34203: $? = 0
configure:34213: result: yes
configure:34301: checking for mktime
configure:34338: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34341: $? = 0
configure:34344: test -s conftest
configure:34347: $? = 0
configure:34357: result: yes
configure:34301: checking for strstr
configure:34338: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34318:6: warning: conflicting types for built-in function 'strstr'; expected 'char *(const char *, const char *)' [-Wbuiltin-declaration-mismatch]
34318 | builtin and then its argument prototype would still apply. */
| ^~~~~~
configure:34310:1: note: 'strstr' is declared in header '<string.h>'
34309 | #define $ac_func autoconf_temporary
+++ |+#include <string.h>
34310 | #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */
configure:34341: $? = 0
configure:34344: test -s conftest
configure:34347: $? = 0
configure:34357: result: yes
configure:34301: checking for wcwidth
configure:34338: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34341: $? = 0
configure:34344: test -s conftest
configure:34347: $? = 0
configure:34357: result: yes
configure:34372: checking for limits.h
configure:34407: result: yes
configure:34417: checking for arc4random
configure:34454: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34457: $? = 0
configure:34460: test -s conftest
configure:34463: $? = 0
configure:34473: result: yes
configure:34549: checking for random-integer functions
configure:34586: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:34589: $? = 0
configure:34592: test -s conftest
configure:34595: $? = 0
configure:34607: result: arc4random_stir/arc4random
configure:34610: checking for range of random-integers
configure:34648: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:34651: $? = 0
configure:34654: test -s conftest.o
configure:34657: $? = 0
configure:34668: result: 0xFFFFFFFFUL
configure:34673: checking if <bsd/stdlib.h> should be included
configure:34694: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure: In function 'main':
configure:34719:7: error: conflicting types for 'arc4random'; have 'void *(int)'
34719 | main (void)
| ^~~~~
In file included from configure:34686:
/usr/include/stdlib.h:657:19: note: previous declaration of 'arc4random' with type '__uint32_t(void)' {aka 'unsigned int(void)'}
657 | extern __uint32_t arc4random (void)
| ^~~~~~~~~~
configure:34697: $? = 1
configure: failed program was:
#line 34676 "configure"
#include "confdefs.h"
#include <stdio.h>
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#if STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# if HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif
#if HAVE_STRING_H
# if !STDC_HEADERS && HAVE_MEMORY_H
# include <memory.h>
# endif
# include <string.h>
#endif
#if HAVE_STRINGS_H
# include <strings.h>
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#else
# if HAVE_STDINT_H
# include <stdint.h>
# endif
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#include <bsd/stdlib.h>
int
main (void)
{
void *arc4random(int);
void *x = arc4random(1); (void)x
;
return 0;
}
configure:34727: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:34730: $? = 0
configure:34733: test -s conftest.o
configure:34736: $? = 0
configure:34747: result: yes
configure:34871: checking for sleep declaration
configure:34900: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure: In function 'main':
configure:34925:12: error: conflicting types for 'sleep'; have 'int(void)'
34925 | {
| ^
In file included from configure:34911:
/usr/include/unistd.h:464:21: note: previous declaration of 'sleep' with type 'unsigned int(unsigned int)'
464 | extern unsigned int sleep (unsigned int __seconds);
| ^~~~~
configure:34903: $? = 1
configure: failed program was:
#line 34877 "configure"
#include "confdefs.h"
#include <stdio.h>
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#if STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# if HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif
#if HAVE_STRING_H
# if !STDC_HEADERS && HAVE_MEMORY_H
# include <memory.h>
# endif
# include <string.h>
#endif
#if HAVE_STRINGS_H
# include <strings.h>
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#else
# if HAVE_STDINT_H
# include <stdint.h>
# endif
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
int
main (void)
{
#ifndef sleep
extern int sleep(void);
#endif
;
return 0;
}
configure:34964: result: yes
configure:34983: checking for strstr declaration
configure:35005: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure: In function 'main':
configure:35030:12: error: conflicting types for 'strstr'; have 'int(void)'
35030 | _ACEOF
| ^
In file included from configure:35010:
/usr/include/string.h:350:14: note: previous declaration of 'strstr' with type 'char *(const char *, const char *)'
350 | extern char *strstr (const char *__haystack, const char *__needle)
| ^~~~~~
configure:35008: $? = 1
configure: failed program was:
#line 34989 "configure"
#include "confdefs.h"
#include <stdio.h>
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#if STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# if HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif
#if HAVE_STRING_H
# if !STDC_HEADERS && HAVE_MEMORY_H
# include <memory.h>
# endif
# include <string.h>
#endif
#if HAVE_STRINGS_H
# include <strings.h>
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#else
# if HAVE_STDINT_H
# include <stdint.h>
# endif
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
int
main (void)
{
#ifndef strstr
extern int strstr(void);
#endif
;
return 0;
}
configure:35062: result: yes
configure:35081: checking for getgrgid declaration
configure:35105: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure: In function 'main':
configure:35130:12: error: conflicting types for 'getgrgid'; have 'int(void)'
35130 | return 0;
| ^
In file included from configure:35125:
/usr/include/grp.h:101:22: note: previous declaration of 'getgrgid' with type 'struct group *(__gid_t)' {aka 'struct group *(unsigned int)'}
101 | extern struct group *getgrgid (__gid_t __gid);
| ^~~~~~~~
configure:35108: $? = 1
configure: failed program was:
#line 35087 "configure"
#include "confdefs.h"
#include <stdio.h>
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#if STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# if HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif
#if HAVE_STRING_H
# if !STDC_HEADERS && HAVE_MEMORY_H
# include <memory.h>
# endif
# include <string.h>
#endif
#if HAVE_STRINGS_H
# include <strings.h>
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#else
# if HAVE_STDINT_H
# include <stdint.h>
# endif
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <stdio.h>
#include <grp.h>
int
main (void)
{
#ifndef getgrgid
extern int getgrgid(void);
#endif
;
return 0;
}
configure:35164: result: yes
configure:35081: checking for getgrnam declaration
configure:35105: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure: In function 'main':
configure:35130:12: error: conflicting types for 'getgrnam'; have 'int(void)'
35130 | return 0;
| ^
In file included from configure:35125:
/usr/include/grp.h:107:22: note: previous declaration of 'getgrnam' with type 'struct group *(const char *)'
107 | extern struct group *getgrnam (const char *__name);
| ^~~~~~~~
configure:35108: $? = 1
configure: failed program was:
#line 35087 "configure"
#include "confdefs.h"
#include <stdio.h>
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#if STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# if HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif
#if HAVE_STRING_H
# if !STDC_HEADERS && HAVE_MEMORY_H
# include <memory.h>
# endif
# include <string.h>
#endif
#if HAVE_STRINGS_H
# include <strings.h>
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#else
# if HAVE_STDINT_H
# include <stdint.h>
# endif
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <stdio.h>
#include <grp.h>
int
main (void)
{
#ifndef getgrnam
extern int getgrnam(void);
#endif
;
return 0;
}
configure:35164: result: yes
configure:35180: checking if TRUE/FALSE are defined
configure:35201: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:35204: $? = 0
configure:35207: test -s conftest.o
configure:35210: $? = 0
configure:35221: result: yes
configure:35235: checking if external errno is declared
configure:35256: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:35259: $? = 0
configure:35262: test -s conftest.o
configure:35265: $? = 0
configure:35276: result: yes
configure:35291: checking if external errno exists
configure:35313: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
/usr/bin/ld: errno: TLS definition in /usr/lib/libc.so.6 section .tbss mismatches non-TLS reference in /tmp/ccJqCoAa.o
/usr/bin/ld: /usr/lib/libc.so.6: error adding symbols: bad value
collect2: error: ld returned 1 exit status
configure:35316: $? = 1
configure: failed program was:
#line 35298 "configure"
#include "confdefs.h"
#undef errno
extern int errno;
int
main (void)
{
errno = 2
;
return 0;
}
configure:35333: result: no
configure:35346: checking if we can set errno
configure:35400: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:35403: $? = 0
configure:35405: ./conftest
configure:35408: $? = 0
configure:35421: result: yes
configure:35428: checking for setlocale()
configure:35449: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:35452: $? = 0
configure:35455: test -s conftest
configure:35458: $? = 0
configure:35470: result: yes
configure:35481: checking for sys/param.h
configure:35516: result: yes
configure:35481: checking for limits.h
configure:35516: result: yes
configure:35526: checking if NGROUPS is defined
configure:35552: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:35555: $? = 0
configure:35558: test -s conftest.o
configure:35561: $? = 0
configure:35608: result: yes
configure:35629: checking for strerror
configure:35666: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:35669: $? = 0
configure:35672: test -s conftest
configure:35675: $? = 0
configure:35685: result: yes
configure:35922: checking for lastlog.h
configure:35932: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:35938: $? = 0
configure:35957: result: yes
configure:35922: checking for paths.h
configure:35932: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:35938: $? = 0
configure:35957: result: yes
configure:35967: checking for lastlog path
configure:35994: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:35997: $? = 0
configure:36000: test -s conftest.o
configure:36003: $? = 0
configure:36018: result: _PATH_LASTLOG
configure:36025: checking for utmp implementation
configure:36058: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:36046:18: error: conflicting types for 'getutxent'; have 'struct utmp *(void)'
36046 | main (void)
| ^
In file included from configure:36045:
/usr/include/utmpx.h:65:22: note: previous declaration of 'getutxent' with type 'struct utmpx *(void)'
65 | extern struct utmpx *getutxent (void);
| ^~~~~~~~~
configure:36061: $? = 1
configure: failed program was:
#line 36042 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <utmpx.h>
#define getutent getutxent
#ifdef USE_LASTLOG
#include <lastlog.h> /* may conflict with utmpx.h on Linux */
#endif
int
main (void)
{
struct utmpx x;
char *name = x.ut_name; /* utmp.h and compatible definitions */
(void)x;
(void)name;
;
return 0;
}
configure:36092: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:36080:18: error: conflicting types for 'getutxent'; have 'struct utmp *(void)'
36080 | main (void)
| ^
In file included from configure:36079:
/usr/include/utmpx.h:65:22: note: previous declaration of 'getutxent' with type 'struct utmpx *(void)'
65 | extern struct utmpx *getutxent (void);
| ^~~~~~~~~
configure:36095: $? = 1
configure: failed program was:
#line 36076 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <utmpx.h>
#define getutent getutxent
#ifdef USE_LASTLOG
#include <lastlog.h> /* may conflict with utmpx.h on Linux */
#endif
int
main (void)
{
struct utmpx x;
char *name = x.ut_user; /* utmpx.h must declare this */
(void)x;
(void)name;
;
return 0;
}
configure:36058: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:36061: $? = 0
configure:36064: test -s conftest.o
configure:36067: $? = 0
configure:36116: result: utmp
configure:36131: checking if utmp.ut_host is declared
configure:36155: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:36158: $? = 0
configure:36161: test -s conftest.o
configure:36164: $? = 0
configure:36176: result: yes
configure:36186: checking if utmp.ut_syslen is declared
configure:36210: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure: In function 'main':
configure:36201:12: error: 'struct utmp' has no member named 'ut_syslen'
36201 | struct $cf_cv_have_utmp x;
| ^
configure:36213: $? = 1
configure: failed program was:
#line 36193 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <utmp.h>
int
main (void)
{
struct utmp x;
int y = x.ut_syslen;
(void)x;
(void)y
;
return 0;
}
configure:36231: result: no
configure:36241: checking if utmp.ut_name is declared
configure:36274: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:36277: $? = 0
configure:36280: test -s conftest.o
configure:36283: $? = 0
configure:36295: result: ut_name
configure:36315: checking for exit-status in utmp
configure:36345: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure: In function 'main':
configure:36336:22: error: 'struct exit_status' has no member named '__e_exit'; did you mean 'e_exit'?
36336 | struct $cf_cv_have_utmp x;
| ^~~~~
| e_exit
configure:36348: $? = 1
configure: failed program was:
#line 36328 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <utmp.h>
int
main (void)
{
struct utmp x;
long y = x.ut_exit.__e_exit = 0;
(void)x;
(void)y
;
return 0;
}
configure:36345: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:36348: $? = 0
configure:36351: test -s conftest.o
configure:36354: $? = 0
configure:36367: result: ut_exit.e_exit
configure:36383: checking if utmp.ut_xtime is declared
configure:36407: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:36410: $? = 0
configure:36413: test -s conftest.o
configure:36416: $? = 0
configure:36463: result: yes
configure:36482: checking if utmp.ut_session is declared
configure:36506: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:36509: $? = 0
configure:36512: test -s conftest.o
configure:36515: $? = 0
configure:36526: result: yes
configure:36537: checking if utmp is SYSV flavor
configure:36564: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
configure:36567: $? = 0
configure:36570: test -s conftest
configure:36573: $? = 0
configure:36584: result: yes
configure:36593: checking if external h_errno exists
configure:36615: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
/usr/bin/ld: /tmp/cchFesFC.o: warning: relocation against `h_errno' in read-only section `.text.startup'
/usr/bin/ld: /tmp/cchFesFC.o: in function `main':
conftest.c:(.text.startup+0x2): undefined reference to `h_errno'
/usr/bin/ld: warning: creating DT_TEXTREL in a PIE
collect2: error: ld returned 1 exit status
configure:36618: $? = 1
configure: failed program was:
#line 36600 "configure"
#include "confdefs.h"
#undef h_errno
extern int h_errno;
int
main (void)
{
h_errno = 2
;
return 0;
}
configure:36635: result: no
configure:36648: checking if bibp: URLs should be supported
configure:36665: result: yes
configure:36672: checking if configuration info should be browsable
configure:36689: result: yes
configure:36696: checking if new-style forms-based options screen should be used
configure:36713: result: yes
configure:36720: checking if old-style options menu should be used
configure:36737: result: yes
configure:36744: checking if sessions code should be used
configure:36761: result: yes
configure:36772: checking if session-caching code should be used
configure:36789: result: yes
configure:36799: checking if address-list page should be used
configure:36816: result: yes
configure:36823: checking if support for CJK should be used
configure:36840: result: yes
configure:37106: checking for iconv
configure:37515: result: yes
configure:37524: checking if the declaration of iconv() needs const.
configure:37575: result: no
configure:37711: checking if experimental support for Chinese UTF-8 should be used
configure:37728: result: yes
configure:37739: checking if support for Japanese UTF-8 should be used
configure:37756: result: yes
configure:37781: checking if experimental wcwidth/UTF-8 logic should be used
configure:37798: result: no
configure:37813: checking if you want to use default-colors
configure:37830: result: no
configure:37839: checking if experimental keyboard-layout logic should be used
configure:37856: result: no
configure:37863: checking if experimental nested-table logic should be used
configure:37880: result: no
configure:37887: checking if alternative line-edit bindings should be used
configure:37904: result: yes
configure:37911: checking if ascii case-conversion should be used
configure:37928: result: yes
configure:37935: checking if you want to use extended HTML DTD logic
configure:37952: result: yes
configure:37959: checking if file-upload logic should be used
configure:37976: result: yes
configure:37983: checking if IDNA support should be used
configure:38000: result: yes
configure:38261: testing Starting FIND_LINKAGE(idn2,) ...
configure:38285: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lncurses -lssl -lcrypto -ldl >&5
/usr/bin/ld: /tmp/ccEvZwj6.o: in function `main':
conftest.c:(.text.startup+0x2c): undefined reference to `idn2_to_ascii_8z'
collect2: error: ld returned 1 exit status
configure:38288: $? = 1
configure: failed program was:
#line 38266 "configure"
#include "confdefs.h"
#include <stdio.h>
#include <idn2.h>
int
main (void)
{
char *output = 0;
int code = idn2_to_ascii_8z("name", &output, IDN2_USE_STD3_ASCII_RULES);
(void) code;
;
return 0;
}
configure:38327: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:38330: $? = 0
configure:38333: test -s conftest
configure:38336: $? = 0
configure:38789: testing found idn2 library ...
configure:39339: checking if element-justification logic should be used
configure:39356: result: yes
configure:39363: checking if partial-display should be used
configure:39380: result: yes
configure:39387: checking if persistent-cookie logic should be used
configure:39404: result: yes
configure:39411: checking if html source should be colorized
configure:39428: result: yes
configure:39435: checking if progress-bar code should be used
configure:39452: result: yes
configure:39459: checking if read-progress message should show ETA
configure:39476: result: yes
configure:39483: checking if source caching should be used
configure:39500: result: yes
configure:39507: checking if scrollbar code should be used
configure:39524: result: yes
configure:39527: checking if charset-selection logic should be used
configure:39544: result: no
configure:39551: checking if you want to use external commands
configure:39568: result: yes
configure:39579: checking if you want to use setfont support
configure:39596: result: no
configure:39738: checking if you want cgi-link support
configure:39755: result: no
configure:39758: checking if you want change-exec support
configure:39775: result: no
configure:39782: checking if you want exec-links support
configure:39799: result: no
configure:39806: checking if you want exec-scripts support
configure:39823: result: no
configure:39830: checking if you want internal-links feature
configure:39847: result: no
configure:39854: checking if you want to fork NSL requests
configure:39871: result: no
configure:39892: checking if you want to log URL requests via syslog
configure:39909: result: no
configure:39916: checking if you want to underline links
configure:39933: result: no
configure:39945: checking if help files should be gzip'ed
configure:39962: result: no
configure:39965: checking if you want to use libbz2 for decompression of some bzip2 files
configure:39975: result: yes
configure:40236: testing Starting FIND_LINKAGE(bz2,bzlib) ...
configure:40258: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lidn2 -lncurses -lssl -lcrypto -ldl >&5
/usr/bin/ld: /tmp/ccevVISo.o: in function `main':
conftest.c:(.text.startup+0x13): undefined reference to `BZ2_bzopen'
collect2: error: ld returned 1 exit status
configure:40261: $? = 1
configure: failed program was:
#line 40241 "configure"
#include "confdefs.h"
#include <stdio.h>
#include <bzlib.h>
int
main (void)
{
BZ2_bzopen("name","mode")
;
return 0;
}
configure:40298: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:40301: $? = 0
configure:40304: test -s conftest
configure:40307: $? = 0
configure:40803: checking if you want to use zlib for decompression of some gzip files
configure:40813: result: yes
configure:41074: testing Starting FIND_LINKAGE(z,zlib) ...
configure:41095: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
/usr/bin/ld: /tmp/cchRR7sn.o: in function `main':
conftest.c:(.text.startup+0x13): undefined reference to `gzopen'
collect2: error: ld returned 1 exit status
configure:41098: $? = 1
configure: failed program was:
#line 41079 "configure"
#include "confdefs.h"
#include <zlib.h>
int
main (void)
{
gzopen("name","mode")
;
return 0;
}
configure:41134: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:41137: $? = 0
configure:41140: test -s conftest
configure:41143: $? = 0
configure:41634: checking for zError
configure:41671: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:41674: $? = 0
configure:41677: test -s conftest
configure:41680: $? = 0
configure:41690: result: yes
configure:41707: checking if you want to use brotli decompression
configure:41717: result: yes
configure:41978: testing Starting FIND_LINKAGE(brotlidec,brotlilib) ...
configure:42006: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
/usr/bin/ld: /tmp/ccqZcUJc.o: in function `main':
conftest.c:(.text.startup+0x13): undefined reference to `BrotliDecoderDecompressStream'
collect2: error: ld returned 1 exit status
configure:42009: $? = 1
configure: failed program was:
#line 41983 "configure"
#include "confdefs.h"
#include <brotli/decode.h>
int
main (void)
{
BrotliDecoderDecompressStream(
NULL, /* BrotliDecoderState* state */
NULL, /* size_t* available_in */
NULL, /* const uint8_t** next_in */
NULL, /* size_t* available_out */
NULL, /* uint8_t** next_out */
NULL /* size_t* total_out */
);
;
return 0;
}
configure:42052: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:42055: $? = 0
configure:42058: test -s conftest
configure:42061: $? = 0
configure:42575: checking if you want to exclude FINGER code
configure:42592: result: no
configure:42599: checking if you want to exclude GOPHER code
configure:42616: result: no
configure:42623: checking if you want to exclude NEWS code
configure:42640: result: no
configure:42647: checking if you want to exclude FTP code
configure:42664: result: no
configure:42671: checking if you want to include WAIS code
configure:42688: result: no
configure:42949: checking if directory-editor code should be used
configure:42966: result: yes
configure:42976: checking if you wish to allow extracting from archives via DirEd
configure:42993: result: yes
configure:42996: checking if DirEd mode should override keys
configure:43020: result: yes
configure:43023: checking if you wish to allow permissions commands via DirEd
configure:43047: result: yes
configure:43050: checking if you wish to allow executable-permission commands via DirEd
configure:43067: result: yes
configure:43070: checking if you wish to allow "tar" commands from DirEd
configure:43094: result: yes
configure:43097: checking if you wish to allow "uudecode" commands from DirEd
configure:43121: result: yes
configure:43124: checking if you wish to allow "zip" and "unzip" commands from DirEd
configure:43148: result: yes
configure:43151: checking if you wish to allow "gzip" and "gunzip" commands from DirEd
configure:43175: result: yes
configure:43179: checking if you want long-directory listings
configure:43203: result: yes
configure:43206: checking if parent-directory references are permitted
configure:43223: result: yes
configure:43231: checking for telnet
configure:43248: found /usr/bin/telnet
configure:43259: result: /usr/bin/telnet
configure:43321: testing defining path for /usr/bin/telnet ...
configure:43339: checking for tn3270
configure:43370: result: no
configure:43339: checking for tn3270
configure:43370: result: no
configure:43447: checking for rlogin
configure:43464: found /usr/bin/rlogin
configure:43475: result: /usr/bin/rlogin
configure:43537: testing defining path for /usr/bin/rlogin ...
configure:43555: checking for mv
configure:43572: found /usr/bin/mv
configure:43583: result: /usr/bin/mv
configure:43645: testing defining path for /usr/bin/mv ...
configure:43663: checking for gzip
configure:43680: found /usr/bin/gzip
configure:43691: result: /usr/bin/gzip
configure:43753: testing defining path for /usr/bin/gzip ...
configure:43771: checking for gunzip
configure:43788: found /usr/bin/gunzip
configure:43799: result: /usr/bin/gunzip
configure:43861: testing defining path for /usr/bin/gunzip ...
configure:43879: checking for unzip
configure:43896: found /usr/bin/unzip
configure:43907: result: /usr/bin/unzip
configure:43969: testing defining path for /usr/bin/unzip ...
configure:43987: checking for bzip2
configure:44004: found /usr/bin/bzip2
configure:44015: result: /usr/bin/bzip2
configure:44077: testing defining path for /usr/bin/bzip2 ...
configure:44095: checking for brotli
configure:44112: found /usr/bin/brotli
configure:44123: result: /usr/bin/brotli
configure:44185: testing defining path for /usr/bin/brotli ...
configure:44203: checking for tar
configure:44220: found /usr/bin/tar
configure:44231: result: /usr/bin/tar
configure:44293: testing defining path for /usr/bin/tar ...
configure:44351: checking for compress
configure:44382: result: no
configure:44351: checking for compress
configure:44382: result: no
configure:44459: checking for rm
configure:44476: found /usr/bin/rm
configure:44487: result: /usr/bin/rm
configure:44549: testing defining path for /usr/bin/rm ...
configure:44567: checking for uudecode
configure:44598: result: no
configure:44567: checking for uudecode
configure:44598: result: no
configure:44675: checking for zcat
configure:44692: found /usr/bin/zcat
configure:44703: result: /usr/bin/zcat
configure:44765: testing defining path for /usr/bin/zcat ...
configure:44783: checking for zip
configure:44814: result: no
configure:44783: checking for zip
configure:44814: result: no
configure:44901: checking for /usr/bin/install
configure:44929: result: /usr/bin/install -c
configure:44991: testing defining path for /usr/bin/install ...
configure:48388: checking if we can include termio.h with curses
configure:48412: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -DHAVE_CONFIG_H -I. -I. -I./src -I./WWW/Library/Implementation conftest.c >&5
configure:48401:10: fatal error: termio.h: No such file or directory
48401 | #include <LYCurses.h>
| ^~~~~~~~~~
compilation terminated.
configure:48415: $? = 1
configure: failed program was:
#line 48398 "configure"
#include "confdefs.h"
#include <LYCurses.h>
#include <termio.h>
int
main (void)
{
putchar(0x0a)
;
return 0;
}
configure:48434: result: no
configure:48451: checking for curses/term.h
configure:48461: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:48458:10: fatal error: curses/term.h: No such file or directory
48458 | #include "confdefs.h"
| ^~~~~~~~~~~~
compilation terminated.
configure:48467: $? = 1
configure: failed program was:
#line 48457 "configure"
#include "confdefs.h"
#include <curses/term.h>
configure:48486: result: no
configure:48451: checking for term.h
configure:48461: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:48467: $? = 0
configure:48486: result: yes
configure:48498: checking if curses supports alternate-character set
configure:48521: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:48524: $? = 0
configure:48527: test -s conftest
configure:48530: $? = 0
configure:48544: result: acs_map
configure:48551: checking if curses supports fancy attributes
configure:48576: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:48579: $? = 0
configure:48582: test -s conftest
configure:48585: $? = 0
configure:48597: result: yes
configure:48604: checking for function curses_version
configure:48630: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:48633: $? = 0
configure:48635: ./conftest
configure:48638: $? = 0
configure:48653: result: yes
configure:48661: checking for obsolete/broken version of ncurses
configure:48687: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:48690: $? = 0
configure:48693: test -s conftest.o
configure:48696: $? = 0
configure:48708: result: no
configure:48721: checking if curses supports color attributes
configure:48749: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:48752: $? = 0
configure:48755: test -s conftest
configure:48758: $? = 0
configure:48770: result: yes
configure:48794: checking for termio.h
configure:48829: result: no
configure:48794: checking for termios.h
configure:48829: result: yes
configure:48794: checking for unistd.h
configure:48829: result: yes
configure:48794: checking for sys/ioctl.h
configure:48829: result: yes
configure:48794: checking for sys/termio.h
configure:48804: gcc -E -C -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c
configure:48801:10: fatal error: sys/termio.h: No such file or directory
48801 | #include "confdefs.h"
| ^~~~~~~~~~~~
compilation terminated.
configure:48810: $? = 1
configure: failed program was:
#line 48800 "configure"
#include "confdefs.h"
#include <sys/termio.h>
configure:48829: result: no
configure:48846: checking whether termios.h needs _POSIX_SOURCE
configure:48861: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:48864: $? = 0
configure:48867: test -s conftest.o
configure:48870: $? = 0
configure:48917: result: no
configure:48922: checking declaration of size-change
configure:48993: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX conftest.c >&5
configure:48996: $? = 0
configure:48999: test -s conftest.o
configure:49002: $? = 0
size-change succeeded ()
configure:49021: result: yes
configure:49039: checking if ttytype is declared in curses library
configure:49058: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49061: $? = 0
configure:49064: test -s conftest
configure:49067: $? = 0
configure:49079: result: yes
configure:49240: checking definition to turn on extended curses functions
configure:49281: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure: In function 'main':
configure:49295:2: error: #error prefer to fall-through on the second checks
49295 | cat "conftest.$ac_ext" >&5
| ^~~~~
configure:49284: $? = 1
configure: failed program was:
#line 49248 "configure"
#include "confdefs.h"
#include <stdio.h>
#if HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#if HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#if STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# if HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif
#if HAVE_STRING_H
# if !STDC_HEADERS && HAVE_MEMORY_H
# include <memory.h>
# endif
# include <string.h>
#endif
#if HAVE_STRINGS_H
# include <strings.h>
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#else
# if HAVE_STDINT_H
# include <stdint.h>
# endif
#endif
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <ncurses.h>
int
main (void)
{
#if defined(NCURSES_VERSION_PATCH)
#if (NCURSES_VERSION_PATCH < 20100501) && (NCURSES_VERSION_PATCH >= 20100403)
#error disallow ncurses versions between 2020/04/03 and 2010/05/01
#endif
#endif
#ifdef NCURSES_WIDECHAR
#error prefer to fall-through on the second checks
#endif
static char dummy[10];
cchar_t check;
int check2 = curs_set((int)sizeof(check));
long x = winnstr(stdscr, dummy, 5);
int x1, y1;
(void)check2;
getbegyx(stdscr, y1, x1);
(void)x;
(void)y1;
(void)x1;
;
return 0;
}
configure:49326: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49329: $? = 0
configure:49332: test -s conftest
configure:49335: $? = 0
configure:49349: result: _XOPEN_SOURCE_EXTENDED
configure:49361: checking for term.h
configure:49466: result: term.h
configure:49493: checking for unctrl.h
configure:49528: gcc -c -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED conftest.c >&5
configure:49531: $? = 0
configure:49534: test -s conftest.o
configure:49537: $? = 0
configure:49550: result: unctrl.h
configure:49611: checking for assume_default_colors
configure:49614: testing assume_default_colors ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for cbreak
configure:49614: testing cbreak ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for define_key
configure:49614: testing define_key ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for delscreen
configure:49614: testing delscreen ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for getattrs
configure:49614: testing getattrs ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for getbegx
configure:49614: testing getbegx ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for getbegy
configure:49614: testing getbegy ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for keypad
configure:49614: testing keypad ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for napms
configure:49614: testing napms ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for newpad
configure:49614: testing newpad ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for newterm
configure:49614: testing newterm ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for pnoutrefresh
configure:49614: testing pnoutrefresh ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for resizeterm
configure:49614: testing resizeterm ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for touchline
configure:49614: testing touchline ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for touchwin
configure:49614: testing touchwin ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for use_default_colors
configure:49614: testing use_default_colors ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for use_legacy_coding
configure:49614: testing use_legacy_coding ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for wattr_get
configure:49614: testing wattr_get ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for wborder
configure:49614: testing wborder ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for wredrawln
configure:49614: testing wredrawln ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49611: checking for wresize
configure:49614: testing wresize ...
configure:49656: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49659: $? = 0
configure:49662: test -s conftest
configure:49665: $? = 0
configure:49681: result: yes
configure:49698: checking for curses_exit
configure:49735: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
/usr/bin/ld: /tmp/ccNrvDvG.o: in function `main':
conftest.c:(.text.startup+0x5): undefined reference to `curses_exit'
collect2: error: ld returned 1 exit status
configure:49738: $? = 1
configure: failed program was:
#line 49704 "configure"
#include "confdefs.h"
#define curses_exit autoconf_temporary
#include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */
#undef curses_exit
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char curses_exit (void);
int
main (void)
{
/* The GNU C library defines stubs 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_curses_exit) || defined (__stub___curses_exit)
#error found stub for curses_exit
#endif
return curses_exit ();
;
return 0;
}
configure:49754: result: no
configure:49698: checking for _nc_free_and_exit
configure:49735: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49738: $? = 0
configure:49741: test -s conftest
configure:49744: $? = 0
configure:49754: result: yes
configure:49698: checking for _nc_freeall
configure:49735: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49738: $? = 0
configure:49741: test -s conftest
configure:49744: $? = 0
configure:49754: result: yes
configure:49794: checking if rpath-hack should be disabled
configure:49812: result: no
configure:49817: checking for updated LDFLAGS
configure:49820: result: maybe
configure:49827: checking for ldd
configure:49842: found /usr/bin/ldd
configure:49850: result: ldd
configure:49879: gcc -o conftest -O2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -DIGNORE_MSGFMT_HACK -DLINUX -D_XOPEN_SOURCE_EXTENDED -L/lib conftest.c -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl >&5
configure:49882: $? = 0
configure:49885: test -s conftest
configure:49888: $? = 0
configure:49928: testing ...checking EXTRA_LDFLAGS ...
configure:49932: testing ...checking LDFLAGS -L/lib ...
configure:49969: testing ...Filter -L/lib ->-Wl,-rpath,/lib ...
configure:49982: testing ...checked LDFLAGS -L/lib ...
configure:49986: testing ...checking LIBS -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl ...
configure:50036: testing ...checked LIBS -lbrotlidec -lz -lbz2 -lidn2 -lncurses -lssl -lcrypto -ldl ...
configure:50040: testing ...checked EXTRA_LDFLAGS -Wl,-rpath,/lib ...
configure:50158: creating ./config.status
## ----------------------- ##
## Running config.status. ##
## ----------------------- ##
This file was extended by config.status (lynx 2.9.1b) 2.52.20231210, executed with
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
> "./config.status "
on X220
config.status:50764: creating makefile
config.status:50764: creating WWW/Library/Implementation/makefile
config.status:50764: creating src/makefile
config.status:50764: creating src/chrtrans/makefile
config.status:50764: creating po/makefile.in
config.status:50925: creating lynx_cfg.h
## ----------------- ##
## Cache variables. ##
## ----------------- ##
ac_cv_build=x86_64-pc-linux-gnu
ac_cv_build_alias=x86_64-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_c_inline=inline
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_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func__nc_free_and_exit=yes
ac_cv_func__nc_freeall=yes
ac_cv_func_alloca_works=yes
ac_cv_func_arc4random=yes
ac_cv_func_atoll=yes
ac_cv_func_ctermid=yes
ac_cv_func_curses_exit=no
ac_cv_func_cuserid=yes
ac_cv_func_dcgettext=yes
ac_cv_func_decl_getgrgid=yes
ac_cv_func_decl_getgrnam=yes
ac_cv_func_decl_sleep=yes
ac_cv_func_decl_strstr=yes
ac_cv_func_fork=yes
ac_cv_func_fork_works=yes
ac_cv_func_fseeko=yes
ac_cv_func_ftime=yes
ac_cv_func_getcwd=yes
ac_cv_func_getgroups=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_gethostname=yes
ac_cv_func_getpwuid=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_getuid=yes
ac_cv_func_inet_ntoa=yes
ac_cv_func_lstat=yes
ac_cv_func_mkdtemp=yes
ac_cv_func_mktime=yes
ac_cv_func_popen=yes
ac_cv_func_putenv=yes
ac_cv_func_readdir=yes
ac_cv_func_setuid=yes
ac_cv_func_sleep=yes
ac_cv_func_socket=yes
ac_cv_func_strcasecmp=yes
ac_cv_func_strerror=yes
ac_cv_func_strstr=yes
ac_cv_func_tgoto=no
ac_cv_func_truncate=yes
ac_cv_func_ttyname=yes
ac_cv_func_unsetenv=yes
ac_cv_func_usleep=yes
ac_cv_func_vasprintf=yes
ac_cv_func_vfork=yes
ac_cv_func_vfork_works=yes
ac_cv_func_waitpid=yes
ac_cv_func_wcwidth=yes
ac_cv_func_zError=yes
ac_cv_have_decl_exit=yes
ac_cv_header_arpa_inet_h=yes
ac_cv_header_curses_term_h=no
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_lastlog_h=yes
ac_cv_header_libintl_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_ncurses_h=yes
ac_cv_header_paths_h=yes
ac_cv_header_pwd_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_fcntl_h=yes
ac_cv_header_sys_filio_h=no
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_termio_h=no
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_timeb_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_syslog_h=yes
ac_cv_header_term_h=yes
ac_cv_header_termio_h=no
ac_cv_header_termios_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_header_vfork_h=no
ac_cv_header_wchar_h=yes
ac_cv_host=x86_64-pc-linux-gnu
ac_cv_host_alias=x86_64-pc-linux-gnu
ac_cv_lib_dir_opendir=no
ac_cv_lib_dl_dlsym=yes
ac_cv_lib_inet_main=no
ac_cv_lib_ncurses___tgoto=yes
ac_cv_objext=o
ac_cv_path_BROTLI=/usr/bin/brotli
ac_cv_path_BZIP2=/usr/bin/bzip2
ac_cv_path_EGREP='grep -E'
ac_cv_path_FGREP='grep -F'
ac_cv_path_GMSGFMT=/usr/bin/msgfmt
ac_cv_path_GZIP=/usr/bin/gzip
ac_cv_path_INSTALL='/usr/bin/install -c'
ac_cv_path_MSGFMT=/usr/bin/msgfmt
ac_cv_path_MSGINIT=/usr/bin/msginit
ac_cv_path_MV=/usr/bin/mv
ac_cv_path_RLOGIN=/usr/bin/rlogin
ac_cv_path_RM=/usr/bin/rm
ac_cv_path_TAR=/usr/bin/tar
ac_cv_path_TELNET=/usr/bin/telnet
ac_cv_path_UNCOMPRESS=/usr/bin/gunzip
ac_cv_path_UNZIP=/usr/bin/unzip
ac_cv_path_XGETTEXT=/usr/bin/xgettext
ac_cv_path_ZCAT=/usr/bin/zcat
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_ac_pt_WINDRES=none
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_GREP=grep
ac_cv_prog_MAKE_LOWER_TAGS=no
ac_cv_prog_MAKE_UPPER_TAGS=no
ac_cv_prog_YACC='bison -y'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cf_ldd_prog=ldd
ac_cv_prog_make_make_set=yes
ac_cv_sizeof_int=4
ac_cv_sizeof_long=8
ac_cv_sizeof_off_t=8
ac_cv_sizeof_size_t=8
ac_cv_sizeof_time_t=8
ac_cv_sys_file_offset_bits=no
ac_cv_sys_large_files=no
ac_cv_sys_largefile_CC=no
ac_cv_sys_largefile_source=no
ac_cv_target=x86_64-pc-linux-gnu
ac_cv_target_alias=x86_64-pc-linux-gnu
ac_cv_type_getgroups=gid_t
ac_cv_type_int=yes
ac_cv_type_intptr_t=yes
ac_cv_type_long=yes
ac_cv_type_mode_t=yes
ac_cv_type_off_t=yes
ac_cv_type_pid_t=yes
ac_cv_type_size_t=yes
ac_cv_type_socklen_t=yes
ac_cv_type_ssize_t=yes
ac_cv_type_time_t=yes
ac_cv_type_uid_t=yes
ac_cv_working_alloca_h=yes
am_cv_func_iconv=yes
am_cv_langinfo_codeset=yes
am_cv_proto_iconv_arg1=
am_cv_proto_iconv_const=no
cf_cv_SYSTEM_MAIL=unknown
cf_cv_alt_char_set=acs_map
cf_cv_ansi_cc=-DCC_HAS_PROTOS
cf_cv_ar_flags=-curvU
cf_cv_baddef_remove=no
cf_cv_bool_defs=yes
cf_cv_c11_noreturn=no,
cf_cv_chtype_decl=yes
cf_cv_chtype_type=scalar
cf_cv_color_curses=yes
cf_cv_curs_performance=no
cf_cv_curs_touchline=sysv
cf_cv_curses_dir=no
cf_cv_curses_incdir=no
cf_cv_dcl_errno=yes
cf_cv_define_sigwinch=yes
cf_cv_fancy_curses=yes
cf_cv_find_linkage_brotlidec=yes
cf_cv_find_linkage_bz2=yes
cf_cv_find_linkage_iconv=yes
cf_cv_find_linkage_idn2=yes
cf_cv_find_linkage_intl=yes
cf_cv_find_linkage_ssl=yes
cf_cv_find_linkage_z=yes
cf_cv_fionbio=ioctl
cf_cv_func_assume_default_colors=yes
cf_cv_func_cbreak=yes
cf_cv_func_curses_version=yes
cf_cv_func_define_key=yes
cf_cv_func_delscreen=yes
cf_cv_func_getattrs=yes
cf_cv_func_getbegx=yes
cf_cv_func_getbegy=yes
cf_cv_func_gettext=yes
cf_cv_func_keypad=yes
cf_cv_func_napms=yes
cf_cv_func_newpad=yes
cf_cv_func_newterm=yes
cf_cv_func_pnoutrefresh=yes
cf_cv_func_resizeterm=yes
cf_cv_func_sigaction=yes
cf_cv_func_touchline=yes
cf_cv_func_touchwin=yes
cf_cv_func_use_default_colors=yes
cf_cv_func_use_legacy_coding=yes
cf_cv_func_wattr_get=yes
cf_cv_func_wborder=yes
cf_cv_func_wredrawln=yes
cf_cv_func_wresize=yes
cf_cv_getaddrinfo=yes
cf_cv_gnu_dftsrc_219=yes
cf_cv_gnu_library=yes
cf_cv_gnu_library_219=yes
cf_cv_gnutls_compat=no
cf_cv_have_errno=no
cf_cv_have_h_errno=no
cf_cv_have_inet_aton=yes
cf_cv_have_ssl=yes
cf_cv_have_ttytype=yes
cf_cv_have_utmp=utmp
cf_cv_have_utmp_ut_host=yes
cf_cv_have_utmp_ut_name=ut_name
cf_cv_have_utmp_ut_session=yes
cf_cv_have_utmp_ut_syslen=no
cf_cv_have_utmp_ut_xstatus=ut_exit.e_exit
cf_cv_have_utmp_ut_xtime=yes
cf_cv_header_path_brotlidec=/usr/include
cf_cv_header_path_bz2=/usr/include
cf_cv_header_path_iconv=/usr/include
cf_cv_header_path_idn2=/usr/include
cf_cv_header_path_intl=/usr/include
cf_cv_header_path_ssl=/usr/include/openssl
cf_cv_header_path_z=/usr/include
cf_cv_ipv6type=linux-glibc
cf_cv_library_file_brotlidec=-lbrotlidec
cf_cv_library_file_bz2=-lbz2
cf_cv_library_file_idn2=-lidn2
cf_cv_library_file_z=-lz
cf_cv_library_path_brotlidec=/usr/lib
cf_cv_library_path_bz2=/usr/lib
cf_cv_library_path_iconv=/usr/lib
cf_cv_library_path_idn2=/usr/lib
cf_cv_library_path_intl=/usr/lib
cf_cv_library_path_ssl=
cf_cv_library_path_z=/usr/lib
cf_cv_locale=yes
cf_cv_make_PHONY=yes
cf_cv_makeflags=
cf_cv_mixedcase=yes
cf_cv_ncurses_broken=no
cf_cv_ncurses_header=ncurses.h
cf_cv_ncurses_version=6.5.20240427
cf_cv_need_xopen_extension=_XOPEN_SOURCE_EXTENDED
cf_cv_netlibs=
cf_cv_ngroups=yes
cf_cv_path_lastlog=_PATH_LASTLOG
cf_cv_pkg_config_ssl=no
cf_cv_posix_visible=no
cf_cv_prog_cpp_comments=yes
cf_cv_pw_gecos=yes
cf_cv_rand_max=0xFFFFFFFFUL
cf_cv_screen=curses
cf_cv_set_errno=yes
cf_cv_sizechange=yes
cf_cv_sizeof=8
cf_cv_srand_func=arc4random_stir/arc4random
cf_cv_struct_dirent64=no
cf_cv_system_mail_flags='-t -oi'
cf_cv_system_name=linux-gnu
cf_cv_sysv_utmp=yes
cf_cv_term_header=term.h
cf_cv_termio_and_curses=no
cf_cv_termio_and_termios=yes
cf_cv_tm_gmtoff=yes
cf_cv_type_long_long=yes
cf_cv_type_unionwait=no
cf_cv_unctrl_header=unctrl.h
cf_cv_use_libgnutls=no
cf_cv_use_libnss_compat=no
cf_cv_use_libsocks=no
cf_cv_use_libsocks5=no
cf_cv_use_libssl=/usr
nls_cv_header_intl=
nls_cv_header_libgt=
## ------------ ##
## confdefs.h. ##
## ------------ ##
#define SYSTEM_NAME "linux-gnu"
#define MIXEDCASE_FILENAMES 1
#define UNIX 1
#define CC_HAS_PROTOS 1
#define HAVE_FSEEKO 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_ICONV 1
#define ICONV_CONST
#define HAVE_LANGINFO_CODESET 1
#define HAVE_LIBINTL_H 1
#define HAVE_GETTEXT 1
#define HAVE_DCGETTEXT 1
#define ENABLE_NLS 1
#define NLS_TEXTDOMAIN "lynx"
#define HAVE_LIBINTL_H 1
#define SYSTEM_MAIL "unknown"
#define SYSTEM_MAIL_FLAGS "-t -oi"
#define HAVE_GETHOSTNAME 1
#define HAVE_SOCKET 1
#define HAVE_GETHOSTBYNAME 1
#define HAVE_INET_NTOA 1
#define HAVE_GETHOSTBYNAME 1
#define HAVE_STRCASECMP 1
#define HAVE_INET_ATON 1
#define USE_SSL 1
#define USE_OPENSSL_INCL 1
#define USE_X509_SUPPORT 1
#define ENABLE_IPV6 1
#define HAVE_GAI_STRERROR 1
#define HAVE_GETADDRINFO 1
#define HAVE_NCURSES_H 1
#define HAVE_TERM_H 1
#define NCURSES 1
#define HAVE_SYSV_TOUCHLINE 1
#define HAVE_TYPE_CHTYPE 1
#define TYPE_CHTYPE_IS_SCALAR 1
#define USE_COLOR_STYLE 1
#define LYNX_LSS_FILE "/etc/lynx.lss"
#define LYNX_CFG_FILE "/etc/lynx.cfg"
#define LYNX_CFG_PATH "/etc"
#define MIME_LIBDIR "/etc/"
#define USE_LOCALE_CHARSET 1
#define TIME_WITH_SYS_TIME 1
#define HAVE_DIRENT_H 1
#define HAVE_ARPA_INET_H 1
#define HAVE_FCNTL_H 1
#define HAVE_LIMITS_H 1
#define HAVE_SYS_FCNTL_H 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_TIMEB_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYSLOG_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_WCHAR_H 1
#define HAVE_SIGACTION 1
#define HAVE_SYS_WAIT_H 1
#define GETGROUPS_T gid_t
#define HAVE_LONG_LONG 1
#define SIZEOF_INT 4
#define SIZEOF_LONG 8
#define SIZEOF_OFF_T 8
#define SIZEOF_SIZE_T 8
#define SIZEOF_TIME_T 8
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAVE_UNISTD_H 1
#define HAVE_FORK 1
#define HAVE_VFORK 1
#define HAVE_WORKING_VFORK 1
#define HAVE_WORKING_FORK 1
#define HAVE_LSTAT 1
#define HAVE_PWD_H 1
#define HAVE_GETPWUID 1
#define HAVE_VASPRINTF 1
#define HAVE_ATOLL 1
#define HAVE_CTERMID 1
#define HAVE_CUSERID 1
#define HAVE_FTIME 1
#define HAVE_GETCWD 1
#define HAVE_GETGROUPS 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_GETUID 1
#define HAVE_POPEN 1
#define HAVE_PUTENV 1
#define HAVE_READDIR 1
#define HAVE_SETUID 1
#define HAVE_TRUNCATE 1
#define HAVE_TTYNAME 1
#define HAVE_UNSETENV 1
#define HAVE_SLEEP 1
#define HAVE_USLEEP 1
#define HAVE_WAITPID 1
#define HAVE_MKDTEMP 1
#define HAVE_MKTIME 1
#define HAVE_STRSTR 1
#define HAVE_WCWIDTH 1
#define HAVE_LIMITS_H 1
#define HAVE_BSD_STDLIB_H 1
#define lynx_srand (void)
#define lynx_rand arc4random
#define LYNX_RAND_MAX 0xFFFFFFFFUL
#define CAN_SET_ERRNO 1
#define LOCALE 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_LIMITS_H 1
#define HAVE_STRERROR 1
#define HAVE_LASTLOG_H 1
#define HAVE_PATHS_H 1
#define USE_LASTLOG 1
#define HAVE_UTMP 1
#define HAVE_UTMP_UT_HOST 1
#define HAVE_UTMP_UT_XSTATUS 1
#define ut_xstatus ut_exit.e_exit
#define HAVE_UTMP_UT_XTIME 1
#define HAVE_UTMP_UT_SESSION 1
#define USE_SYSV_UTMP 1
#define USE_SESSIONS 1
#define USE_CACHEJAR 1
#define USE_ADDRLIST_PAGE 1
#define CJK_EX 1
#define HAVE_ICONV 1
#define ICONV_CONST
#define EXP_CHINESEUTF8_SUPPORT 1
#define USE_JAPANESEUTF8_SUPPORT 1
#define USE_ALT_BINDINGS 1
#define USE_ASCII_CTYPES 1
#define USE_FILE_UPLOAD 1
#define USE_IDN2 1
#define USE_JUSTIFY_ELTS 1
#define DISP_PARTIAL 1
#define USE_PERSISTENT_COOKIES 1
#define USE_PRETTYSRC 1
#define USE_PROGRESSBAR 1
#define USE_READPROGRESS 1
#define USE_SOURCE_CACHE 1
#define USE_EXTERNALS 1
#define UNDERLINE_LINKS 0
#define USE_BZLIB 1
#define HAVE_ZERROR 1
#define USE_ZLIB 1
#define USE_BROTLI 1
#define DIRED_SUPPORT 1
#define OK_OVERRIDE 1
#define OK_PERMIT 1
#define OK_TAR 1
#define OK_UUDECODE 1
#define OK_ZIP 1
#define OK_GZIP 1
#define LONG_LIST 1
#define TELNET_PATH "/usr/bin/telnet"
#define RLOGIN_PATH "/usr/bin/rlogin"
#define MV_PATH "/usr/bin/mv"
#define GZIP_PATH "/usr/bin/gzip"
#define UNCOMPRESS_PATH "/usr/bin/gunzip"
#define UNZIP_PATH "/usr/bin/unzip"
#define BZIP2_PATH "/usr/bin/bzip2"
#define BROTLI_PATH "/usr/bin/brotli"
#define TAR_PATH "/usr/bin/tar"
#define TAR_UP_OPTIONS "-cf"
#define TAR_DOWN_OPTIONS "-xf"
#define TAR_FILE_OPTIONS ""
#define TAR_PIPE_OPTIONS "-"
#define RM_PATH "/usr/bin/rm"
#define ZCAT_PATH "/usr/bin/zcat"
#define INSTALL_PATH "/usr/bin/install"
#define INSTALL_ARGS "-c"
#define HAVE_TERM_H 1
#define ALT_CHAR_SET acs_map
#define FANCY_CURSES 1
#define HAVE_CURSES_VERSION 1
#define COLOR_CURSES 1
#define HAVE_GETBKGD 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_SIZECHANGE 1
#define HAVE_TTYTYPE 1
#define HAVE_TERM_H 1
#define HAVE_UNCTRL_H 1
#define HAVE_ASSUME_DEFAULT_COLORS 1
#define HAVE_CBREAK 1
#define HAVE_DEFINE_KEY 1
#define HAVE_DELSCREEN 1
#define HAVE_GETATTRS 1
#define HAVE_GETBEGX 1
#define HAVE_GETBEGY 1
#define HAVE_KEYPAD 1
#define HAVE_NAPMS 1
#define HAVE_NEWPAD 1
#define HAVE_NEWTERM 1
#define HAVE_PNOUTREFRESH 1
#define HAVE_RESIZETERM 1
#define HAVE_TOUCHLINE 1
#define HAVE_TOUCHWIN 1
#define HAVE_USE_DEFAULT_COLORS 1
#define HAVE_USE_LEGACY_CODING 1
#define HAVE_WATTR_GET 1
#define HAVE_WBORDER 1
#define HAVE_WREDRAWLN 1
#define HAVE_WRESIZE 1
#define HAVE__NC_FREE_AND_EXIT 1
#define HAVE__NC_FREEALL 1
#define USE_SCROLLBAR 1
#define HOMEPAGE_URL "https://lynx.invisible-island.net/"
configure: exit 0
|