File: config.log

package info (click to toggle)
libmcrypt 2.5.8-3.3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 6,864 kB
  • ctags: 2,054
  • sloc: ansic: 15,868; sh: 8,579; makefile: 176
file content (2140 lines) | stat: -rw-r--r-- 69,045 bytes parent folder | download | duplicates (4)
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
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.59.  Invocation command line was

  $ ./configure --prefix=/usr --enable-static --enable-shared

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

hostname = localhost.localdomain
uname -m = i686
uname -r = 2.6.19-1.2895.fc6
uname -s = Linux
uname -v = #1 SMP Wed Jan 10 19:28:18 EST 2007

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

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

PATH: /usr/lib/qt-3.3/bin
PATH: /usr/kerberos/sbin
PATH: /usr/kerberos/bin
PATH: /usr/lib/ccache
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /sbin
PATH: /bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /usr/X11R6/bin
PATH: /root/bin


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

configure:1546: checking build system type
configure:1564: result: i686-redhat-linux-gnu
configure:1572: checking host system type
configure:1586: result: i686-redhat-linux-gnu
configure:1594: checking target system type
configure:1608: result: i686-redhat-linux-gnu
configure:1636: checking for a BSD-compatible install
configure:1691: result: /usr/bin/install -c
configure:1702: checking whether build environment is sane
configure:1745: result: yes
configure:1810: checking for gawk
configure:1826: found /bin/gawk
configure:1836: result: gawk
configure:1846: checking whether make sets $(MAKE)
configure:1866: result: yes
configure:2037: checking whether to enable maintainer-specific portions of Makefiles
configure:2046: result: no
configure:2062: checking whether make sets $(MAKE)
configure:2082: result: yes
configure:2144: checking for g++
configure:2160: found /usr/lib/ccache/g++
configure:2170: result: g++
configure:2186: checking for C++ compiler version
configure:2189: g++ --version </dev/null >&5
g++ (GCC) 4.1.1 20070105 (Red Hat 4.1.1-51)
Copyright (C) 2006 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:2192: $? = 0
configure:2194: g++ -v </dev/null >&5
Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=i386-redhat-linux
Thread model: posix
gcc version 4.1.1 20070105 (Red Hat 4.1.1-51)
configure:2197: $? = 0
configure:2199: g++ -V </dev/null >&5
g++: '-V' option must have argument
configure:2202: $? = 1
configure:2225: checking for C++ compiler default output file name
configure:2228: g++    conftest.cc  >&5
configure:2231: $? = 0
configure:2277: result: a.out
configure:2282: checking whether the C++ compiler works
configure:2288: ./a.out
configure:2291: $? = 0
configure:2308: result: yes
configure:2315: checking whether we are cross compiling
configure:2317: result: no
configure:2320: checking for suffix of executables
configure:2322: g++ -o conftest    conftest.cc  >&5
configure:2325: $? = 0
configure:2350: result: 
configure:2356: checking for suffix of object files
configure:2377: g++ -c   conftest.cc >&5
configure:2380: $? = 0
configure:2402: result: o
configure:2406: checking whether we are using the GNU C++ compiler
configure:2430: g++ -c   conftest.cc >&5
configure:2436: $? = 0
configure:2440: test -z 
			 || test ! -s conftest.err
configure:2443: $? = 0
configure:2446: test -s conftest.o
configure:2449: $? = 0
configure:2462: result: yes
configure:2468: checking whether g++ accepts -g
configure:2489: g++ -c -g  conftest.cc >&5
configure:2495: $? = 0
configure:2499: test -z 
			 || test ! -s conftest.err
configure:2502: $? = 0
configure:2505: test -s conftest.o
configure:2508: $? = 0
configure:2519: result: yes
configure:2561: g++ -c -g -O2  conftest.cc >&5
configure:2567: $? = 0
configure:2571: test -z 
			 || test ! -s conftest.err
configure:2574: $? = 0
configure:2577: test -s conftest.o
configure:2580: $? = 0
configure:2606: g++ -c -g -O2  conftest.cc >&5
conftest.cc: In function 'int main()':
conftest.cc:15: error: 'exit' was not declared in this scope
configure:2612: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:2561: g++ -c -g -O2  conftest.cc >&5
configure:2567: $? = 0
configure:2571: test -z 
			 || test ! -s conftest.err
configure:2574: $? = 0
configure:2577: test -s conftest.o
configure:2580: $? = 0
configure:2606: g++ -c -g -O2  conftest.cc >&5
configure:2612: $? = 0
configure:2616: test -z 
			 || test ! -s conftest.err
configure:2619: $? = 0
configure:2622: test -s conftest.o
configure:2625: $? = 0
configure:2659: checking for style of include used by make
configure:2687: result: GNU
configure:2715: checking dependency style of g++
configure:2805: result: gcc3
configure:2868: checking for gcc
configure:2884: found /usr/lib/ccache/gcc
configure:2894: result: gcc
configure:3138: checking for C compiler version
configure:3141: gcc --version </dev/null >&5
gcc (GCC) 4.1.1 20070105 (Red Hat 4.1.1-51)
Copyright (C) 2006 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:3144: $? = 0
configure:3146: gcc -v </dev/null >&5
Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=i386-redhat-linux
Thread model: posix
gcc version 4.1.1 20070105 (Red Hat 4.1.1-51)
configure:3149: $? = 0
configure:3151: gcc -V </dev/null >&5
gcc: '-V' option must have argument
configure:3154: $? = 1
configure:3157: checking whether we are using the GNU C compiler
configure:3181: gcc -c   conftest.c >&5
configure:3187: $? = 0
configure:3191: test -z 
			 || test ! -s conftest.err
configure:3194: $? = 0
configure:3197: test -s conftest.o
configure:3200: $? = 0
configure:3213: result: yes
configure:3219: checking whether gcc accepts -g
configure:3240: gcc -c -g  conftest.c >&5
configure:3246: $? = 0
configure:3250: test -z 
			 || test ! -s conftest.err
configure:3253: $? = 0
configure:3256: test -s conftest.o
configure:3259: $? = 0
configure:3270: result: yes
configure:3287: checking for gcc option to accept ANSI C
configure:3357: gcc  -c -g -O2  conftest.c >&5
configure:3363: $? = 0
configure:3367: test -z 
			 || test ! -s conftest.err
configure:3370: $? = 0
configure:3373: test -s conftest.o
configure:3376: $? = 0
configure:3394: result: none needed
configure:3412: gcc -c -g -O2  conftest.c >&5
conftest.c:2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'me'
configure:3418: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:3553: checking dependency style of gcc
configure:3643: result: gcc3
configure:3665: checking how to run the C preprocessor
configure:3700: gcc -E  conftest.c
configure:3706: $? = 0
configure:3738: gcc -E  conftest.c
conftest.c:14:28: error: ac_nonexistent.h: No such file or directory
configure:3744: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3783: result: gcc -E
configure:3807: gcc -E  conftest.c
configure:3813: $? = 0
configure:3845: gcc -E  conftest.c
conftest.c:14:28: error: ac_nonexistent.h: No such file or directory
configure:3851: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3907: checking for a BSD-compatible install
configure:3962: result: /usr/bin/install -c
configure:3973: checking whether ln -s works
configure:3977: result: yes
configure:3984: checking whether make sets $(MAKE)
configure:4004: result: yes
configure:4054: checking for a BSD-compatible install
configure:4109: result: /usr/bin/install -c
configure:4120: checking whether ln -s works
configure:4124: result: yes
configure:4134: checking whether in maintanance mode
configure:4141: result: no
configure:4145: checking whether in dmalloc mode
configure:4152: result: no
configure:4240: checking whether to enable dynamic module loading
configure:4247: result: no
configure:4502: checking which algorithms to include into library
configure:4528: result: cbc cfb ctr ecb ncfb nofb ofb stream threeway cast-128 gost rijndael-128 safer-sk64 twofish  arcfour cast-256 loki97 rijndael-192 saferplus wake  blowfish-compat des rijndael-256 serpent xtea  blowfish enigma rc2 safer-sk128 tripledes
configure:4560: checking for dirent.h that defines DIR
configure:4584: gcc -c -g -O2  conftest.c >&5
configure:4590: $? = 0
configure:4594: test -z 
			 || test ! -s conftest.err
configure:4597: $? = 0
configure:4600: test -s conftest.o
configure:4603: $? = 0
configure:4614: result: yes
configure:4627: checking for library containing opendir
configure:4657: gcc -o conftest -g -O2   conftest.c  >&5
configure:4663: $? = 0
configure:4667: test -z 
			 || test ! -s conftest.err
configure:4670: $? = 0
configure:4673: test -s conftest
configure:4676: $? = 0
configure:4746: result: none required
configure:4883: checking for egrep
configure:4893: result: grep -E
configure:4898: checking for ANSI C header files
configure:4923: gcc -c -g -O2  conftest.c >&5
configure:4929: $? = 0
configure:4933: test -z 
			 || test ! -s conftest.err
configure:4936: $? = 0
configure:4939: test -s conftest.o
configure:4942: $? = 0
configure:5031: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c: In function 'main':
conftest.c:32: warning: incompatible implicit declaration of built-in function 'exit'
configure:5034: $? = 0
configure:5036: ./conftest
configure:5039: $? = 0
configure:5054: result: yes
configure:5064: checking for inline
configure:5085: gcc -c -g -O2  conftest.c >&5
configure:5091: $? = 0
configure:5095: test -z 
			 || test ! -s conftest.err
configure:5098: $? = 0
configure:5101: test -s conftest.o
configure:5104: $? = 0
configure:5116: result: inline
configure:5135: checking for an ANSI C-conforming const
configure:5202: gcc -c -g -O2  conftest.c >&5
configure:5208: $? = 0
configure:5212: test -z 
			 || test ! -s conftest.err
configure:5215: $? = 0
configure:5218: test -s conftest.o
configure:5221: $? = 0
configure:5232: result: yes
configure:5257: checking for sys/types.h
configure:5273: gcc -c -g -O2  conftest.c >&5
configure:5279: $? = 0
configure:5283: test -z 
			 || test ! -s conftest.err
configure:5286: $? = 0
configure:5289: test -s conftest.o
configure:5292: $? = 0
configure:5303: result: yes
configure:5257: checking for sys/stat.h
configure:5273: gcc -c -g -O2  conftest.c >&5
configure:5279: $? = 0
configure:5283: test -z 
			 || test ! -s conftest.err
configure:5286: $? = 0
configure:5289: test -s conftest.o
configure:5292: $? = 0
configure:5303: result: yes
configure:5257: checking for stdlib.h
configure:5273: gcc -c -g -O2  conftest.c >&5
configure:5279: $? = 0
configure:5283: test -z 
			 || test ! -s conftest.err
configure:5286: $? = 0
configure:5289: test -s conftest.o
configure:5292: $? = 0
configure:5303: result: yes
configure:5257: checking for string.h
configure:5273: gcc -c -g -O2  conftest.c >&5
configure:5279: $? = 0
configure:5283: test -z 
			 || test ! -s conftest.err
configure:5286: $? = 0
configure:5289: test -s conftest.o
configure:5292: $? = 0
configure:5303: result: yes
configure:5257: checking for memory.h
configure:5273: gcc -c -g -O2  conftest.c >&5
configure:5279: $? = 0
configure:5283: test -z 
			 || test ! -s conftest.err
configure:5286: $? = 0
configure:5289: test -s conftest.o
configure:5292: $? = 0
configure:5303: result: yes
configure:5257: checking for strings.h
configure:5273: gcc -c -g -O2  conftest.c >&5
configure:5279: $? = 0
configure:5283: test -z 
			 || test ! -s conftest.err
configure:5286: $? = 0
configure:5289: test -s conftest.o
configure:5292: $? = 0
configure:5303: result: yes
configure:5257: checking for inttypes.h
configure:5273: gcc -c -g -O2  conftest.c >&5
configure:5279: $? = 0
configure:5283: test -z 
			 || test ! -s conftest.err
configure:5286: $? = 0
configure:5289: test -s conftest.o
configure:5292: $? = 0
configure:5303: result: yes
configure:5257: checking for stdint.h
configure:5273: gcc -c -g -O2  conftest.c >&5
configure:5279: $? = 0
configure:5283: test -z 
			 || test ! -s conftest.err
configure:5286: $? = 0
configure:5289: test -s conftest.o
configure:5292: $? = 0
configure:5303: result: yes
configure:5257: checking for unistd.h
configure:5273: gcc -c -g -O2  conftest.c >&5
configure:5279: $? = 0
configure:5283: test -z 
			 || test ! -s conftest.err
configure:5286: $? = 0
configure:5289: test -s conftest.o
configure:5292: $? = 0
configure:5303: result: yes
configure:5335: checking argz.h usability
configure:5347: gcc -c -g -O2  conftest.c >&5
configure:5353: $? = 0
configure:5357: test -z 
			 || test ! -s conftest.err
configure:5360: $? = 0
configure:5363: test -s conftest.o
configure:5366: $? = 0
configure:5376: result: yes
configure:5380: checking argz.h presence
configure:5390: gcc -E  conftest.c
configure:5396: $? = 0
configure:5416: result: yes
configure:5451: checking for argz.h
configure:5458: result: yes
configure:5335: checking byteswap.h usability
configure:5347: gcc -c -g -O2  conftest.c >&5
configure:5353: $? = 0
configure:5357: test -z 
			 || test ! -s conftest.err
configure:5360: $? = 0
configure:5363: test -s conftest.o
configure:5366: $? = 0
configure:5376: result: yes
configure:5380: checking byteswap.h presence
configure:5390: gcc -E  conftest.c
configure:5396: $? = 0
configure:5416: result: yes
configure:5451: checking for byteswap.h
configure:5458: result: yes
configure:5335: checking dirent.h usability
configure:5347: gcc -c -g -O2  conftest.c >&5
configure:5353: $? = 0
configure:5357: test -z 
			 || test ! -s conftest.err
configure:5360: $? = 0
configure:5363: test -s conftest.o
configure:5366: $? = 0
configure:5376: result: yes
configure:5380: checking dirent.h presence
configure:5390: gcc -E  conftest.c
configure:5396: $? = 0
configure:5416: result: yes
configure:5451: checking for dirent.h
configure:5458: result: yes
configure:5335: checking dlfcn.h usability
configure:5347: gcc -c -g -O2  conftest.c >&5
configure:5353: $? = 0
configure:5357: test -z 
			 || test ! -s conftest.err
configure:5360: $? = 0
configure:5363: test -s conftest.o
configure:5366: $? = 0
configure:5376: result: yes
configure:5380: checking dlfcn.h presence
configure:5390: gcc -E  conftest.c
configure:5396: $? = 0
configure:5416: result: yes
configure:5451: checking for dlfcn.h
configure:5458: result: yes
configure:5335: checking endian.h usability
configure:5347: gcc -c -g -O2  conftest.c >&5
configure:5353: $? = 0
configure:5357: test -z 
			 || test ! -s conftest.err
configure:5360: $? = 0
configure:5363: test -s conftest.o
configure:5366: $? = 0
configure:5376: result: yes
configure:5380: checking endian.h presence
configure:5390: gcc -E  conftest.c
configure:5396: $? = 0
configure:5416: result: yes
configure:5451: checking for endian.h
configure:5458: result: yes
configure:5335: checking malloc.h usability
configure:5347: gcc -c -g -O2  conftest.c >&5
configure:5353: $? = 0
configure:5357: test -z 
			 || test ! -s conftest.err
configure:5360: $? = 0
configure:5363: test -s conftest.o
configure:5366: $? = 0
configure:5376: result: yes
configure:5380: checking malloc.h presence
configure:5390: gcc -E  conftest.c
configure:5396: $? = 0
configure:5416: result: yes
configure:5451: checking for malloc.h
configure:5458: result: yes
configure:5326: checking for memory.h
configure:5331: result: yes
configure:5478: checking for stdlib.h
configure:5483: result: yes
configure:5478: checking for string.h
configure:5483: result: yes
configure:5478: checking for strings.h
configure:5483: result: yes
configure:5639: checking sys/endian.h usability
configure:5651: gcc -c -g -O2  conftest.c >&5
conftest.c:69:24: error: sys/endian.h: No such file or directory
configure:5657: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| /* end 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 <sys/endian.h>
configure:5680: result: no
configure:5684: checking sys/endian.h presence
configure:5694: gcc -E  conftest.c
conftest.c:35:24: error: sys/endian.h: No such file or directory
configure:5700: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| /* end confdefs.h.  */
| #include <sys/endian.h>
configure:5720: result: no
configure:5755: checking for sys/endian.h
configure:5762: result: no
configure:5630: checking for sys/types.h
configure:5635: result: yes
configure:5639: checking sys/mman.h usability
configure:5651: gcc -c -g -O2  conftest.c >&5
configure:5657: $? = 0
configure:5661: test -z 
			 || test ! -s conftest.err
configure:5664: $? = 0
configure:5667: test -s conftest.o
configure:5670: $? = 0
configure:5680: result: yes
configure:5684: checking sys/mman.h presence
configure:5694: gcc -E  conftest.c
configure:5700: $? = 0
configure:5720: result: yes
configure:5755: checking for sys/mman.h
configure:5762: result: yes
configure:5790: checking limits.h usability
configure:5802: gcc -c -g -O2  conftest.c >&5
configure:5808: $? = 0
configure:5812: test -z 
			 || test ! -s conftest.err
configure:5815: $? = 0
configure:5818: test -s conftest.o
configure:5821: $? = 0
configure:5831: result: yes
configure:5835: checking limits.h presence
configure:5845: gcc -E  conftest.c
configure:5851: $? = 0
configure:5871: result: yes
configure:5906: checking for limits.h
configure:5913: result: yes
configure:5781: checking for unistd.h
configure:5786: result: yes
configure:5927: checking whether closedir returns void
configure:5956: gcc -o conftest -g -O2   conftest.c  >&5
configure:5959: $? = 0
configure:5961: ./conftest
configure:5964: $? = 0
configure:5978: result: no
configure:5993: checking for stdlib.h
configure:5998: result: yes
configure:6138: checking for GNU libc compatible malloc
configure:6167: gcc -o conftest -g -O2   conftest.c  >&5
configure:6170: $? = 0
configure:6172: ./conftest
configure:6175: $? = 0
configure:6189: result: yes
configure:6219: checking for working memcmp
configure:6267: gcc -o conftest -g -O2   conftest.c  >&5
configure:6270: $? = 0
configure:6272: ./conftest
configure:6275: $? = 0
configure:6289: result: yes
configure:6305: checking for stdlib.h
configure:6310: result: yes
configure:6450: checking for GNU libc compatible realloc
configure:6479: gcc -o conftest -g -O2   conftest.c  >&5
configure:6482: $? = 0
configure:6484: ./conftest
configure:6487: $? = 0
configure:6501: result: yes
configure:6543: checking for bzero
configure:6600: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:67: warning: conflicting types for built-in function 'bzero'
configure:6606: $? = 0
configure:6610: test -z 
			 || test ! -s conftest.err
configure:6613: $? = 0
configure:6616: test -s conftest
configure:6619: $? = 0
configure:6631: result: yes
configure:6543: checking for memmove
configure:6600: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:68: warning: conflicting types for built-in function 'memmove'
configure:6606: $? = 0
configure:6610: test -z 
			 || test ! -s conftest.err
configure:6613: $? = 0
configure:6616: test -s conftest
configure:6619: $? = 0
configure:6631: result: yes
configure:6543: checking for memset
configure:6600: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:69: warning: conflicting types for built-in function 'memset'
configure:6606: $? = 0
configure:6610: test -z 
			 || test ! -s conftest.err
configure:6613: $? = 0
configure:6616: test -s conftest
configure:6619: $? = 0
configure:6631: result: yes
configure:6543: checking for mlock
configure:6600: gcc -o conftest -g -O2   conftest.c  >&5
configure:6606: $? = 0
configure:6610: test -z 
			 || test ! -s conftest.err
configure:6613: $? = 0
configure:6616: test -s conftest
configure:6619: $? = 0
configure:6631: result: yes
configure:6543: checking for readdir_r
configure:6600: gcc -o conftest -g -O2   conftest.c  >&5
configure:6606: $? = 0
configure:6610: test -z 
			 || test ! -s conftest.err
configure:6613: $? = 0
configure:6616: test -s conftest
configure:6619: $? = 0
configure:6631: result: yes
configure:6543: checking for strchr
configure:6600: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:72: warning: conflicting types for built-in function 'strchr'
configure:6606: $? = 0
configure:6610: test -z 
			 || test ! -s conftest.err
configure:6613: $? = 0
configure:6616: test -s conftest
configure:6619: $? = 0
configure:6631: result: yes
configure:6543: checking for strdup
configure:6600: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:73: warning: conflicting types for built-in function 'strdup'
configure:6606: $? = 0
configure:6610: test -z 
			 || test ! -s conftest.err
configure:6613: $? = 0
configure:6616: test -s conftest
configure:6619: $? = 0
configure:6631: result: yes
configure:6543: checking for strrchr
configure:6600: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:74: warning: conflicting types for built-in function 'strrchr'
configure:6606: $? = 0
configure:6610: test -z 
			 || test ! -s conftest.err
configure:6613: $? = 0
configure:6616: test -s conftest
configure:6619: $? = 0
configure:6631: result: yes
configure:6645: checking for readdir,,
configure:6702: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:53:16: warning: missing whitespace after the macro name
conftest.c:66:15: warning: extra tokens at end of #undef directive
conftest.c:75: error: expected identifier or '(' before ',' token
conftest.c:79:28: error: missing ')' after "defined"
conftest.c:79:30: error: operator ',' has no right operand
conftest.c:82: warning: initialization makes pointer from integer without a cast
conftest.c:82: error: initializer element is not constant
conftest.c:82: error: expected identifier or '(' before ',' token
conftest.c: In function 'main':
conftest.c:91: warning: comparison between pointer and integer
conftest.c:91: error: expected expression before ',' token
configure:6708: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define HAVE_BZERO 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MLOCK 1
| #define HAVE_READDIR_R 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRRCHR 1
| /* end confdefs.h.  */
| /* Define readdir,, to an innocuous variant, in case <limits.h> declares readdir,,.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define readdir,, innocuous_readdir,,
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char readdir,, (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef readdir,,
| 
| /* 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 readdir,, ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_readdir,,) || defined (__stub___readdir,,)
| choke me
| #else
| char (*f) () = readdir,,;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != readdir,,;
|   ;
|   return 0;
| }
configure:6733: result: no
configure:6747: checking for bcopy,,
configure:6804: gcc -o conftest -g -O2   conftest.c  >&5
conftest.c:53:14: warning: missing whitespace after the macro name
conftest.c:66:13: warning: extra tokens at end of #undef directive
conftest.c:75: warning: built-in function 'bcopy' declared as non-function
conftest.c:75: error: expected identifier or '(' before ',' token
conftest.c:79:26: error: missing ')' after "defined"
conftest.c:79:28: error: operator ',' has no right operand
conftest.c:82: warning: initialization makes pointer from integer without a cast
conftest.c:82: error: initializer element is not constant
conftest.c:82: error: expected identifier or '(' before ',' token
conftest.c: In function 'main':
conftest.c:91: warning: comparison between pointer and integer
conftest.c:91: error: expected expression before ',' token
configure:6810: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define HAVE_BZERO 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MLOCK 1
| #define HAVE_READDIR_R 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRRCHR 1
| /* end confdefs.h.  */
| /* Define bcopy,, to an innocuous variant, in case <limits.h> declares bcopy,,.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define bcopy,, innocuous_bcopy,,
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char bcopy,, (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef bcopy,,
| 
| /* 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 bcopy,, ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_bcopy,,) || defined (__stub___bcopy,,)
| choke me
| #else
| char (*f) () = bcopy,,;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != bcopy,,;
|   ;
|   return 0;
| }
configure:6835: result: no
configure:6846: checking whether byte ordering is bigendian
configure:6873: gcc -c -g -O2  conftest.c >&5
configure:6879: $? = 0
configure:6883: test -z 
			 || test ! -s conftest.err
configure:6886: $? = 0
configure:6889: test -s conftest.o
configure:6892: $? = 0
configure:6916: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:58: error: 'not' undeclared (first use in this function)
conftest.c:58: error: (Each undeclared identifier is reported only once
conftest.c:58: error: for each function it appears in.)
conftest.c:58: error: expected ';' before 'big'
configure:6922: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define HAVE_BZERO 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MLOCK 1
| #define HAVE_READDIR_R 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRRCHR 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/param.h>
| 
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
|  not big endian
| #endif
| 
|   ;
|   return 0;
| }
configure:7057: result: no
configure:7076: checking for unsigned long int
configure:7100: gcc -c -g -O2  conftest.c >&5
configure:7106: $? = 0
configure:7110: test -z 
			 || test ! -s conftest.err
configure:7113: $? = 0
configure:7116: test -s conftest.o
configure:7119: $? = 0
configure:7130: result: yes
configure:7133: checking size of unsigned long int
configure:7452: gcc -o conftest -g -O2   conftest.c  >&5
configure:7455: $? = 0
configure:7457: ./conftest
configure:7460: $? = 0
configure:7483: result: 4
configure:7490: checking for unsigned int
configure:7514: gcc -c -g -O2  conftest.c >&5
configure:7520: $? = 0
configure:7524: test -z 
			 || test ! -s conftest.err
configure:7527: $? = 0
configure:7530: test -s conftest.o
configure:7533: $? = 0
configure:7544: result: yes
configure:7547: checking size of unsigned int
configure:7866: gcc -o conftest -g -O2   conftest.c  >&5
configure:7869: $? = 0
configure:7871: ./conftest
configure:7874: $? = 0
configure:7897: result: 4
configure:7904: checking for unsigned short int
configure:7928: gcc -c -g -O2  conftest.c >&5
configure:7934: $? = 0
configure:7938: test -z 
			 || test ! -s conftest.err
configure:7941: $? = 0
configure:7944: test -s conftest.o
configure:7947: $? = 0
configure:7958: result: yes
configure:7961: checking size of unsigned short int
configure:8280: gcc -o conftest -g -O2   conftest.c  >&5
configure:8283: $? = 0
configure:8285: ./conftest
configure:8288: $? = 0
configure:8311: result: 2
configure:8318: checking for unsigned char
configure:8342: gcc -c -g -O2  conftest.c >&5
configure:8348: $? = 0
configure:8352: test -z 
			 || test ! -s conftest.err
configure:8355: $? = 0
configure:8358: test -s conftest.o
configure:8361: $? = 0
configure:8372: result: yes
configure:8375: checking size of unsigned char
configure:8694: gcc -o conftest -g -O2   conftest.c  >&5
configure:8697: $? = 0
configure:8699: ./conftest
configure:8702: $? = 0
configure:8725: result: 1
configure:8788: checking for a sed that does not truncate output
configure:8844: result: /bin/sed
configure:8858: checking for ld used by gcc
configure:8925: result: /usr/bin/ld
configure:8934: checking if the linker (/usr/bin/ld) is GNU ld
configure:8949: result: yes
configure:8954: checking for /usr/bin/ld option to reload object files
configure:8961: result: -r
configure:8979: checking for BSD-compatible nm
configure:9028: result: /usr/bin/nm -B
configure:9032: checking how to recognise dependent libraries
configure:9208: result: pass_all
configure:9686: checking for dlfcn.h
configure:9691: result: yes
configure:9841: checking how to run the C++ preprocessor
configure:9872: g++ -E  conftest.cc
configure:9878: $? = 0
configure:9910: g++ -E  conftest.cc
conftest.cc:56:28: error: ac_nonexistent.h: No such file or directory
configure:9916: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define HAVE_BZERO 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MLOCK 1
| #define HAVE_READDIR_R 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRRCHR 1
| #define SIZEOF_UNSIGNED_LONG_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_SHORT_INT 2
| #define SIZEOF_UNSIGNED_CHAR 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:9955: result: g++ -E
configure:9979: g++ -E  conftest.cc
configure:9985: $? = 0
configure:10017: g++ -E  conftest.cc
conftest.cc:56:28: error: ac_nonexistent.h: No such file or directory
configure:10023: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define HAVE_BZERO 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MLOCK 1
| #define HAVE_READDIR_R 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRRCHR 1
| #define SIZEOF_UNSIGNED_LONG_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_SHORT_INT 2
| #define SIZEOF_UNSIGNED_CHAR 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:10120: checking for g77
configure:10149: result: no
configure:10120: checking for f77
configure:10149: result: no
configure:10120: checking for xlf
configure:10149: result: no
configure:10120: checking for frt
configure:10149: result: no
configure:10120: checking for pgf77
configure:10149: result: no
configure:10120: checking for fort77
configure:10149: result: no
configure:10120: checking for fl32
configure:10149: result: no
configure:10120: checking for af77
configure:10149: result: no
configure:10120: checking for f90
configure:10149: result: no
configure:10120: checking for xlf90
configure:10149: result: no
configure:10120: checking for pgf90
configure:10149: result: no
configure:10120: checking for epcf90
configure:10149: result: no
configure:10120: checking for f95
configure:10136: found /usr/bin/f95
configure:10146: result: f95
configure:10161: checking for Fortran 77 compiler version
configure:10164: f95 --version </dev/null >&5
GNU Fortran 95 (GCC) 4.1.1 20070105 (Red Hat 4.1.1-51)
Copyright (C) 2006 Free Software Foundation, Inc.

GNU Fortran comes with NO WARRANTY, to the extent permitted by law.
You may redistribute copies of GNU Fortran
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING

configure:10167: $? = 0
configure:10169: f95 -v </dev/null >&5
Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=i386-redhat-linux
Thread model: posix
gcc version 4.1.1 20070105 (Red Hat 4.1.1-51)
configure:10172: $? = 0
configure:10174: f95 -V </dev/null >&5
f95: '-V' option must have argument
configure:10177: $? = 1
configure:10185: checking whether we are using the GNU Fortran 77 compiler
configure:10199: f95 -c  conftest.F >&5
configure:10205: $? = 0
configure:10209: test -z 
			 || test ! -s conftest.err
configure:10212: $? = 0
configure:10215: test -s conftest.o
configure:10218: $? = 0
configure:10231: result: yes
configure:10237: checking whether f95 accepts -g
configure:10249: f95 -c -g conftest.f >&5
configure:10255: $? = 0
configure:10259: test -z 
			 || test ! -s conftest.err
configure:10262: $? = 0
configure:10265: test -s conftest.o
configure:10268: $? = 0
configure:10280: result: yes
configure:10310: checking the maximum length of command line arguments
configure:10419: result: 32768
configure:10430: checking command to parse /usr/bin/nm -B output from gcc object
configure:10535: gcc -c -g -O2  conftest.c >&5
configure:10538: $? = 0
configure:10542: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ 	]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:10545: $? = 0
configure:10597: gcc -o conftest -g -O2   conftest.c conftstm.o >&5
configure:10600: $? = 0
configure:10638: result: ok
configure:10642: checking for objdir
configure:10657: result: .libs
configure:10747: checking for ar
configure:10763: found /usr/bin/ar
configure:10774: result: ar
configure:10827: checking for ranlib
configure:10843: found /usr/bin/ranlib
configure:10854: result: ranlib
configure:10907: checking for strip
configure:10923: found /usr/bin/strip
configure:10934: result: strip
configure:11206: checking if gcc supports -fno-rtti -fno-exceptions
configure:11224: gcc -c -g -O2  -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
configure:11228: $? = 0
configure:11241: result: no
configure:11256: checking for gcc option to produce PIC
configure:11466: result: -fPIC
configure:11474: checking if gcc PIC flag -fPIC works
configure:11492: gcc -c -g -O2  -fPIC -DPIC conftest.c >&5
configure:11496: $? = 0
configure:11509: result: yes
configure:11537: checking if gcc static flag -static works
configure:11565: result: yes
configure:11575: checking if gcc supports -c -o file.o
configure:11596: gcc -c -g -O2  -o out/conftest2.o conftest.c >&5
configure:11600: $? = 0
configure:11622: result: yes
configure:11648: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
configure:12606: result: yes
configure:12627: checking whether -lc should be explicitly linked in
configure:12632: gcc -c -g -O2  conftest.c >&5
configure:12635: $? = 0
configure:12650: gcc -shared conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep  -lc  \>/dev/null 2\>\&1
configure:12653: $? = 0
configure:12665: result: no
configure:12673: checking dynamic linker characteristics
configure:13282: result: GNU/Linux ld.so
configure:13291: checking how to hardcode library paths into programs
configure:13316: result: immediate
configure:13330: checking whether stripping libraries is possible
configure:13335: result: yes
configure:13461: checking for shl_load
configure:13518: gcc -o conftest -g -O2   conftest.c  >&5
/tmp/cc0T0H0V.o: In function `main':
/usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/conftest.c:95: undefined reference to `shl_load'
/tmp/cc0T0H0V.o:(.data+0x0): undefined reference to `shl_load'
collect2: ld returned 1 exit status
configure:13524: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define HAVE_BZERO 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MLOCK 1
| #define HAVE_READDIR_R 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRRCHR 1
| #define SIZEOF_UNSIGNED_LONG_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_SHORT_INT 2
| #define SIZEOF_UNSIGNED_CHAR 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| /* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define shl_load innocuous_shl_load
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char shl_load (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef shl_load
| 
| /* 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 shl_load ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_shl_load) || defined (__stub___shl_load)
| choke me
| #else
| char (*f) () = shl_load;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != shl_load;
|   ;
|   return 0;
| }
configure:13549: result: no
configure:13554: checking for shl_load in -ldld
configure:13584: gcc -o conftest -g -O2   conftest.c -ldld   >&5
/usr/bin/ld: cannot find -ldld
collect2: ld returned 1 exit status
configure:13590: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define HAVE_BZERO 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MLOCK 1
| #define HAVE_READDIR_R 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRRCHR 1
| #define SIZEOF_UNSIGNED_LONG_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_SHORT_INT 2
| #define SIZEOF_UNSIGNED_CHAR 1
| #define HAVE_DLFCN_H 1
| /* end 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 shl_load ();
| int
| main ()
| {
| shl_load ();
|   ;
|   return 0;
| }
configure:13616: result: no
configure:13621: checking for dlopen
configure:13678: gcc -o conftest -g -O2   conftest.c  >&5
/tmp/ccwQbtVo.o: In function `main':
/usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/conftest.c:95: undefined reference to `dlopen'
/tmp/ccwQbtVo.o:(.data+0x0): undefined reference to `dlopen'
collect2: ld returned 1 exit status
configure:13684: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libmcrypt"
| #define VERSION "2.5.8"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define HAVE_DIRENT_H 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_ARGZ_H 1
| #define HAVE_BYTESWAP_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define HAVE_BZERO 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MLOCK 1
| #define HAVE_READDIR_R 1
| #define HAVE_STRCHR 1
| #define HAVE_STRDUP 1
| #define HAVE_STRRCHR 1
| #define SIZEOF_UNSIGNED_LONG_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_UNSIGNED_SHORT_INT 2
| #define SIZEOF_UNSIGNED_CHAR 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define dlopen innocuous_dlopen
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char dlopen (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef dlopen
| 
| /* 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 dlopen ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_dlopen) || defined (__stub___dlopen)
| choke me
| #else
| char (*f) () = dlopen;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != dlopen;
|   ;
|   return 0;
| }
configure:13709: result: no
configure:13714: checking for dlopen in -ldl
configure:13744: gcc -o conftest -g -O2   conftest.c -ldl   >&5
configure:13750: $? = 0
configure:13754: test -z 
			 || test ! -s conftest.err
configure:13757: $? = 0
configure:13760: test -s conftest
configure:13763: $? = 0
configure:13776: result: yes
configure:13951: checking whether a program can dlopen itself
configure:14025: gcc -o conftest -g -O2  -DHAVE_DLFCN_H  -Wl,--export-dynamic conftest.c -ldl  >&5
configure: In function 'main':
configure:14021: warning: incompatible implicit declaration of built-in function 'exit'
configure:14028: $? = 0
configure:14046: result: yes
configure:14051: checking whether a statically linked program can dlopen itself
configure:14125: gcc -o conftest -g -O2  -DHAVE_DLFCN_H  -Wl,--export-dynamic -static conftest.c -ldl  >&5
configure: In function 'main':
configure:14121: warning: incompatible implicit declaration of built-in function 'exit'
/tmp/ccZfLCmj.o: In function `main':
/usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/configure:14109: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
configure:14128: $? = 0
/lib/: cannot read file data: Is a directory
configure:14146: result: no
configure:14169: checking if libtool supports shared libraries
configure:14171: result: yes
configure:14174: checking whether to build shared libraries
configure:14195: result: yes
configure:14198: checking whether to build static libraries
configure:14202: result: yes
configure:14294: creating libtool
configure:14885: checking for ld used by g++
configure:14952: result: /usr/bin/ld
configure:14961: checking if the linker (/usr/bin/ld) is GNU ld
configure:14976: result: yes
configure:15027: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:15965: result: yes
configure:15983: g++ -c -g -O2  conftest.cpp >&5
configure:15986: $? = 0
configure:16105: checking for g++ option to produce PIC
configure:16379: result: -fPIC
configure:16387: checking if g++ PIC flag -fPIC works
configure:16405: g++ -c -g -O2  -fPIC -DPIC conftest.cpp >&5
configure:16409: $? = 0
configure:16422: result: yes
configure:16450: checking if g++ static flag -static works
configure:16478: result: yes
configure:16488: checking if g++ supports -c -o file.o
configure:16509: g++ -c -g -O2  -o out/conftest2.o conftest.cpp >&5
configure:16513: $? = 0
configure:16535: result: yes
configure:16561: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:16586: result: yes
configure:16653: checking dynamic linker characteristics
configure:17262: result: GNU/Linux ld.so
configure:17271: checking how to hardcode library paths into programs
configure:17296: result: immediate
configure:17825: checking if libtool supports shared libraries
configure:17827: result: yes
configure:17830: checking whether to build shared libraries
configure:17850: result: yes
configure:17853: checking whether to build static libraries
configure:17857: result: yes
configure:17867: checking for f95 option to produce PIC
configure:18077: result: -fPIC
configure:18085: checking if f95 PIC flag -fPIC works
configure:18103: f95 -c -g -O2 -fPIC conftest.f >&5
configure:18107: $? = 0
configure:18120: result: yes
configure:18148: checking if f95 static flag -static works
configure:18176: result: yes
configure:18186: checking if f95 supports -c -o file.o
configure:18207: f95 -c -g -O2 -o out/conftest2.o conftest.f >&5
configure:18211: $? = 0
configure:18233: result: yes
configure:18259: checking whether the f95 linker (/usr/bin/ld) supports shared libraries
configure:19197: result: yes
configure:19264: checking dynamic linker characteristics
configure:19873: result: GNU/Linux ld.so
configure:19882: checking how to hardcode library paths into programs
configure:19907: result: immediate
configure:23636: creating ./config.status

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

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

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

on localhost.localdomain

config.status:763: creating Makefile
config.status:763: creating libmcrypt.spec
config.status:763: creating lib/Makefile
config.status:763: creating doc/Makefile
config.status:763: creating src/Makefile
config.status:763: creating include/mutils/mcrypt.h
config.status:763: creating include/Makefile
config.status:763: creating modules/Makefile
config.status:763: creating modules/modes/Makefile
config.status:763: creating modules/algorithms/Makefile
config.status:763: creating lib/libmcrypt-config
config.status:867: creating config.h
config.status:1235: executing depfiles commands
config.status:1235: executing default-1 commands

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

ac_cv_build=i686-redhat-linux-gnu
ac_cv_build_alias=i686-redhat-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_f77_compiler_gnu=yes
ac_cv_func_bcopy__=no
ac_cv_func_bzero=yes
ac_cv_func_closedir_void=no
ac_cv_func_dlopen=no
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_memcmp_working=yes
ac_cv_func_memmove=yes
ac_cv_func_memset=yes
ac_cv_func_mlock=yes
ac_cv_func_readdir__=no
ac_cv_func_readdir_r=yes
ac_cv_func_realloc_0_nonnull=yes
ac_cv_func_shl_load=no
ac_cv_func_strchr=yes
ac_cv_func_strdup=yes
ac_cv_func_strrchr=yes
ac_cv_header_argz_h=yes
ac_cv_header_byteswap_h=yes
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_dirent_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_endian_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_malloc_h=yes
ac_cv_header_memory_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_endian_h=no
ac_cv_header_sys_mman_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i686-redhat-linux-gnu
ac_cv_host_alias=i686-redhat-linux-gnu
ac_cv_lib_dl_dlopen=yes
ac_cv_lib_dld_shl_load=no
ac_cv_objext=o
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_F77=f95
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=yes
ac_cv_prog_egrep='grep -E'
ac_cv_prog_f77_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_search_opendir='none required'
ac_cv_sizeof_unsigned_char=1
ac_cv_sizeof_unsigned_int=4
ac_cv_sizeof_unsigned_long_int=4
ac_cv_sizeof_unsigned_short_int=2
ac_cv_target=i686-redhat-linux-gnu
ac_cv_target_alias=i686-redhat-linux-gnu
ac_cv_type_unsigned_char=yes
ac_cv_type_unsigned_int=yes
ac_cv_type_unsigned_long_int=yes
ac_cv_type_unsigned_short_int=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
lt_cv_deplibs_check_method=pass_all
lt_cv_dlopen=dlopen
lt_cv_dlopen_libs=-ldl
lt_cv_dlopen_self=yes
lt_cv_dlopen_self_static=no
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_SED=/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_c_o_F77=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ 	]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/  {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_max_cmd_len=32768
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_prog_compiler_c_o_F77='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ 	]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ 	][ 	]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'

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

ACLOCAL='${SHELL} /usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/missing --run aclocal-1.9'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/missing --run tar'
AR='ar'
AS='as'
AUTOCONF='${SHELL} /usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/missing --run autoconf'
AUTOHEADER='${SHELL} /usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/missing --run autoheader'
AUTOMAKE='${SHELL} /usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/missing --run automake-1.9'
AWK='gawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DLLTOOL='dlltool'
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
EXTRA_ALGOS='cbc cfb ctr ecb ncfb nofb ofb stream threeway cast-128 gost rijndael-128 safer-sk64 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 safer-sk128 tripledes'
EXTRA_OBJECTS=' ../modules/modes/cbc.lo ../modules/modes/cfb.lo ../modules/modes/ctr.lo ../modules/modes/ecb.lo ../modules/modes/ncfb.lo ../modules/modes/nofb.lo ../modules/modes/ofb.lo ../modules/modes/stream.lo ../modules/algorithms/cast-128.lo ../modules/algorithms/gost.lo ../modules/algorithms/rijndael-128.lo ../modules/algorithms/twofish.lo ../modules/algorithms/arcfour.lo ../modules/algorithms/cast-256.lo ../modules/algorithms/loki97.lo ../modules/algorithms/rijndael-192.lo ../modules/algorithms/saferplus.lo ../modules/algorithms/wake.lo ../modules/algorithms/blowfish-compat.lo ../modules/algorithms/des.lo ../modules/algorithms/rijndael-256.lo ../modules/algorithms/serpent.lo ../modules/algorithms/xtea.lo ../modules/algorithms/blowfish.lo ../modules/algorithms/enigma.lo ../modules/algorithms/rc2.lo ../modules/algorithms/tripledes.lo'
F77='f95'
FFLAGS='-g -O2'
INCLTDL=''
INSTALL_ALGORITHM_MODULES=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_MODE_MODULES=''
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
LDFLAGS=''
LIBLTDL=''
LIBLTDL_DIR=''
LIBMCRYPT_CFLAGS='-I${prefix}/include'
LIBMCRYPT_CURRENT_INTERFACE_IMPLEMENTATION_NUMBER='8'
LIBMCRYPT_LIBS=' -L${exec_prefix}/lib -lmcrypt '
LIBMCRYPT_MAJOR_VERSION='2'
LIBMCRYPT_MICRO_VERSION='8'
LIBMCRYPT_MINOR_VERSION='5'
LIBMCRYPT_MOST_RECENT_INTERFACE='8'
LIBMCRYPT_OLDEST_INTERFACE='4'
LIBMCRYPT_VERSION='2.5.8'
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIBTOOL_DEPS='./ltmain.sh'
LN_S='ln -s'
LTLIBOBJS=''
LT_AGE='4'
LT_CURRENT='8'
LT_REVISION='8'
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAKEINFO='${SHELL} /usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/missing --run makeinfo'
NOINSTALL_ALGORITHM_MODULES=' threeway.la cast-128.la gost.la rijndael-128.la safer-sk64.la twofish.la arcfour.la cast-256.la loki97.la rijndael-192.la saferplus.la wake.la blowfish-compat.la des.la rijndael-256.la serpent.la xtea.la blowfish.la enigma.la rc2.la safer-sk128.la tripledes.la'
NOINSTALL_MODE_MODULES=' cbc.la cfb.la ctr.la ecb.la ncfb.la nofb.la ofb.la stream.la'
OBJDUMP='objdump'
OBJEXT='o'
PACKAGE='libmcrypt'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
VERSION='2.5.8'
ac_ct_AR='ar'
ac_ct_AS=''
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_DLLTOOL=''
ac_ct_F77='f95'
ac_ct_OBJDUMP=''
ac_ct_RANLIB='ranlib'
ac_ct_STRIP='strip'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i686-redhat-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='redhat'
datadir='${prefix}/share'
exec_prefix='${prefix}'
host='i686-redhat-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='redhat'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/usr/src/redhat/SOURCES/x/libmcrypt-2.5.7/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
mkdir_p='mkdir -p --'
oldincludedir='/usr/include'
prefix='/usr'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
subdirs=''
sysconfdir='${prefix}/etc'
target='i686-redhat-linux-gnu'
target_alias=''
target_cpu='i686'
target_os='linux-gnu'
target_vendor='redhat'

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

#define HAVE_ARGZ_H 1
#define HAVE_BYTESWAP_H 1
#define HAVE_BZERO 1
#define HAVE_DIRENT_H 1
#define HAVE_DIRENT_H 1
#define HAVE_DLFCN_H 1
#define HAVE_DLFCN_H 1
#define HAVE_ENDIAN_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_MALLOC 1
#define HAVE_MALLOC_H 1
#define HAVE_MEMMOVE 1
#define HAVE_MEMORY_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MEMSET 1
#define HAVE_MLOCK 1
#define HAVE_READDIR_R 1
#define HAVE_REALLOC 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRCHR 1
#define HAVE_STRDUP 1
#define HAVE_STRINGS_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRING_H 1
#define HAVE_STRRCHR 1
#define HAVE_SYS_MMAN_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define PACKAGE "libmcrypt"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define SIZEOF_UNSIGNED_CHAR 1
#define SIZEOF_UNSIGNED_INT 4
#define SIZEOF_UNSIGNED_LONG_INT 4
#define SIZEOF_UNSIGNED_SHORT_INT 2
#define STDC_HEADERS 1
#define VERSION "2.5.8"
#endif
#ifdef __cplusplus
extern "C" void std::exit (int) throw (); using std::exit;

configure: exit 0