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
|
/* ace/config.h.in. Generated from configure.ac by autoheader. */
#ifndef ACE_CONFIG_H
#define ACE_CONFIG_H
// ACE configuration header file
# define ACE_LACKS_NETDB_REENTRANT_FUNCTIONS
/* Compiler/platform standard C++ auto_ptr implementation lacks reset() method
*/
#undef ACE_AUTO_PTR_LACKS_RESET
/* Enable ACE_Timeprobes */
#undef ACE_COMPILE_TIMEPROBES
/* */
#undef ACE_DEFAULT_BASE_ADDR
/* */
#undef ACE_DEFAULT_BASE_ADDRL
/* */
#undef ACE_DEFAULT_CLOSE_ALL_HANDLES
/* */
#undef ACE_DEFAULT_MAX_SOCKET_BUFSIZ
/* The default number of handles the select()-based reactor should handle */
#undef ACE_DEFAULT_SELECT_REACTOR_SIZE
/* Number of TSS keys, with ACE_HAS_TSS_EMULATION _only_. Defaults to 64. */
#undef ACE_DEFAULT_THREAD_KEYS
/* Define this if you don't want debug version ACE search for debug version
DLLs first before looking for the DLL names specified. */
#undef ACE_DISABLE_DEBUG_DLL_CHECK
/* Do not include emulation for timed semaphore acquisitions. */
#undef ACE_DISABLE_POSIX_SEM_TIMEOUT_EMULATION
/* Define to 1 to disable swapping swapping CDR on read */
#undef ACE_DISABLE_SWAP_ON_READ
/* Define to DLL file suffix */
#undef ACE_DLL_SUFFIX
/* Define to 1 to enable swapping swapping CDR on write */
#undef ACE_ENABLE_SWAP_ON_WRITE
/* Compiler requires template args when explicitly calling template
destructor. */
#undef ACE_EXPLICIT_TEMPLATE_DESTRUCTOR_TAKES_ARGS
/* Define to 1 if the getsockname() and getpeername() return random values in
the sockaddr_in.sin_zero field. */
#undef ACE_GETNAME_RETURNS_RANDOM_SIN_ZERO
/* Uses ctime_r & asctime_r with only two parameters vs. three. */
#undef ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R
/* Define to 1 if platform has 2 parameter sched_getaffinity() */
#undef ACE_HAS_2_PARAM_SCHED_GETAFFINITY
/* Define to 1 if platform has 2 parameter sched_setaffinity() */
#undef ACE_HAS_2_PARAM_SCHED_SETAFFINITY
/* Define to 1 if platform has 3 parameter readdir_r() */
#undef ACE_HAS_3_PARAM_READDIR_R
/* Define to 1 if platform has 3 parameter wcstok() */
#undef ACE_HAS_3_PARAM_WCSTOK
/* Platform has BSD 4.4 sendmsg()/recvmsg() APIs. */
#undef ACE_HAS_4_4BSD_SENDMSG_RECVMSG
/* Platform supports Asynchronous IO calls */
#undef ACE_HAS_AIO_CALLS
/* Platform has AIX4 ::read_real_time() */
#undef ACE_HAS_AIX_HI_RES_TIMER
/* Compiler/platform supports alloca(). */
#undef ACE_HAS_ALLOCA
/* Compiler/platform has <alloca.h> */
#undef ACE_HAS_ALLOCA_H
/* Define to 1 if system should use Alpha's cycle counter */
#undef ACE_HAS_ALPHA_TIMER
/* Use ACE's alternate cuserid() implementation since a system cuserid() may
not exist, or it is not desirable to use it. The implementation requires
ACE_LACKS_PWD_FUNCTIONS to be undefined and that the geteuid() system call
exists. */
#undef ACE_HAS_ALT_CUSERID
/* Compiler/platform correctly calls init()/fini() for shared libraries. */
#undef ACE_HAS_AUTOMATIC_INIT_FINI
/* Compiler/platform has "big" fd_set, i.e. large number of bits set in fd_set
passed back from select(). */
#undef ACE_HAS_BIG_FD_SET
/* Compiler/platform uses macro for ctime (e.g., MVS) */
#undef ACE_HAS_BROKEN_CTIME
/* Platform sendv() does not work properly with datagrams, i.e. it fails when
the iovec size is IOV_MAX. */
#undef ACE_HAS_BROKEN_DGRAM_SENDV
/* Platform doesn't cast MAP_FAILED to a (void *). */
#undef ACE_HAS_BROKEN_MAP_FAILED
/* HP/UX does not wrap the mmap(2) header files with extern "C". */
#undef ACE_HAS_BROKEN_MMAP_H
/* Platform headers don't support <msg.h> prototypes */
#undef ACE_HAS_BROKEN_MSG_H
/* Platform defines struct timespec in <sys/timers.h> */
#undef ACE_HAS_BROKEN_POSIX_TIME
/* OS/compiler's header files are inconsistent with libC definition of
rand_r(). */
#undef ACE_HAS_BROKEN_RANDR
/* Platform defines ctime_r, asctime_r, rand_r and getpwnam_r as macros */
#undef ACE_HAS_BROKEN_R_ROUTINES
/* Compiler/platform has the wrong prototype for t_error(), i.e., t_error(char
*) rather than t_error(const char *). */
#undef ACE_HAS_BROKEN_T_ERROR
/* Platform has <bstring.h> (which contains bzero() prototype) */
#undef ACE_HAS_BSTRING
/* Define to 1 if platform has bswap16(). */
#undef ACE_HAS_BSWAP16
/* Define to 1 if platform has bswap32(). */
#undef ACE_HAS_BSWAP32
/* Define to 1 if platform has bswap64(). */
#undef ACE_HAS_BSWAP64
/* Define to 1 if platform has bswap_16(). */
#undef ACE_HAS_BSWAP_16
/* Define to 1 if platform has bswap_32(). */
#undef ACE_HAS_BSWAP_32
/* Define to 1 if platform has bswap_64(). */
#undef ACE_HAS_BSWAP_64
/* Define to 1 if platform has the <bytesex.h> header file. */
#undef ACE_HAS_BYTESEX_H
/* Define to 1 if platform has the <byteswap.h> header file. */
#undef ACE_HAS_BYTESWAP_H
/* Platform supports the Win32 CancelIO() function. (WinNT 4.0 and beyond) */
#undef ACE_HAS_CANCEL_IO
/* OS/platform uses char * for dlopen/dlsym args, rather than const char *. */
#undef ACE_HAS_CHARPTR_DL
/* Define to 1 if arg 2 of 'shmat' is char *' */
#undef ACE_HAS_CHARPTR_SHMAT
/* Define to 1 if arg 1 of 'shmdt' is char *' */
#undef ACE_HAS_CHARPTR_SHMDT
/* OS/platform uses char * for sockopt, rather than const char * */
#undef ACE_HAS_CHARPTR_SOCKOPT
/* Define to 1 if platform has clock_gettime(). */
#undef ACE_HAS_CLOCK_GETTIME
/* Define to 1 if platform has clock_settime(). */
#undef ACE_HAS_CLOCK_SETTIME
/* OS header files have some problems with XTI (HP/UX 11). */
#undef ACE_HAS_CONFLICTING_XTI_MACROS
/* Prototypes for both signal() and struct sigaction are consistent. */
#undef ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES
/* Platform has swab(const char*, char*, ssize_t) variant. */
#undef ACE_HAS_CONST_CHAR_SWAB
/* Compiler/platform has correctly prototyped header files. */
#undef ACE_HAS_CPLUSPLUS_HEADERS
/* Define to 1 if the system has the type `cpu_set_t'. */
#undef ACE_HAS_CPU_SET_T
/* Platform defines custom DSO/DLL symbol export macros. */
#undef ACE_HAS_CUSTOM_EXPORT_MACROS
/* Platform supports /dev/poll character device. */
#undef ACE_HAS_DEV_POLL
/* Platform supports operations on directories via struct dirent, readdir_r,
etc. */
#undef ACE_HAS_DIRENT
/* Build ACE using the frigging PC DLL nonsense... */
#undef ACE_HAS_DLL
/* Define to 1 if the dlsym() call segfaults when passed an invalid handle. */
#undef ACE_HAS_DLSYM_SEGFAULT_ON_INVALID_HANDLE
/* Platform (Linux) supports event poll interface. */
#undef ACE_HAS_EVENT_POLL
/* Compiler supports C++ exception handling. */
#undef ACE_HAS_EXCEPTIONS
/* Platform has Fast-Light (FL) toolkit installed. */
#undef ACE_HAS_FL
/* Define to 1 if platform has getifaddrs(). */
#undef ACE_HAS_GETIFADDRS
/* Platform supports getpagesize() call (otherwise, ACE_PAGE_SIZE must be
defined, except on Win32). */
#undef ACE_HAS_GETPAGESIZE
/* Define to 1 if platform has getprogname(). */
#undef ACE_HAS_GETPROGNAME
/* Define to 1 if platform has getrusage(). */
#undef ACE_HAS_GETRUSAGE
/* Define to 1 if platform has the declaration of getrusage(). */
#undef ACE_HAS_GETRUSAGE_PROTOTYPE
/* Denotes that GNU has cstring.h as standard which redefines memchr() */
#undef ACE_HAS_GNU_CSTRING_H
/* Enable use of GNU template repositories. GNU C++ w/repo patch and EGCS only
*/
#undef ACE_HAS_GNU_REPO
/* The GPERF utility is compiled for this platform */
#undef ACE_HAS_GPERF
/* Optimize ACE_Handle_Set::count_bits for select() operations (common case)
*/
#undef ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT
/* Compiler/platform supports SunOS high resolution timers */
#undef ACE_HAS_HI_RES_TIMER
/* Define to 1 if platform has the <ia32intrin.h> header file. */
#undef ACE_HAS_IA32INTRIN_H
/* Define to 1 if platform has the <ia64intrin.h> header file. */
#undef ACE_HAS_IA64INTRIN_H
/* Defined to 1 if platform supports ICMP over raw sockets */
#undef ACE_HAS_ICMP_SUPPORT
/* Define to 1 if the system has the type `idtype_t'. */
#undef ACE_HAS_IDTYPE_T
/* Inline all the static class OS methods to remove call overhead Note: This
gets defined by OS.h if __ACE_INLINE__ is defined */
#undef ACE_HAS_INLINED_OSCALLS
/* Define to 1 if the system has the type `int16_t'. */
#undef ACE_HAS_INT16_T
/* Define to 1 if the system has the type `int32_t'. */
#undef ACE_HAS_INT32_T
/* Define to 1 if the system has the type `int64_t'. */
#undef ACE_HAS_INT64_T
/* Define to 1 if the system has the type `int8_t'. */
#undef ACE_HAS_INT8_T
/* Define to 1 if the system supports x86/x86_64 inline assembly */
#undef ACE_HAS_INTEL_ASSEMBLY
/* Platform supports the intrinsic interlocked optimizations. */
#undef ACE_HAS_INTRINSIC_INTERLOCKED
/* Define to 1 if platform has the <intrin.h> header file. */
#undef ACE_HAS_INTRIN_H
/* Platform supports IPv6 */
#undef ACE_HAS_IPV6
/* Platform supports IP multicast */
#undef ACE_HAS_IP_MULTICAST
/* Platform supports the very odd IRIX 6.2 threads... */
#undef ACE_HAS_IRIX62_THREADS
/* Define to 1 if platform has the declaration of isastream(). */
#undef ACE_HAS_ISASTREAM_PROTOTYPE
/* Define to 1 if platform has itoa(). */
#undef ACE_HAS_ITOA
/* The rusage_t structure has only two fields. */
#undef ACE_HAS_LIMITED_RUSAGE_T
/* Platform supports llseek(). This should not be defined if ACE_HAS_LSEEK64
is defined. */
#undef ACE_HAS_LLSEEK
/* Platform defines MAP_FAILED as a long constant. */
#undef ACE_HAS_LONG_MAP_FAILED
/* Platform supports lseek64(). This should not be defined if ACE_HAS_LLSEEK
is defined. */
#undef ACE_HAS_LSEEK64
/* */
#undef ACE_HAS_LYNXOS_SIGNALS
/* Enabled malloc statistics collection. */
#undef ACE_HAS_MALLOC_STATS
/* Define to 1 if platform has memchr(). */
#undef ACE_HAS_MEMCHR
/* Define to 1 if unrolled ACE_OS::fast_memcpy() is faster than system
memcpy() */
#undef ACE_HAS_MEMCPY_LOOP_UNROLL
/* Platform supports Microsoft Foundation Classes */
#undef ACE_HAS_MFC
/* Define to 1 if platform has mkdir(). */
#undef ACE_HAS_MKDIR
/* Platform supports recvmsg and sendmsg */
#undef ACE_HAS_MSG
/* Platform supports MT safe mktime() call (do any of them?) */
#undef ACE_HAS_MT_SAFE_MKTIME
/* Sockets may be called in multi-threaded programs */
#undef ACE_HAS_MT_SAFE_SOCKETS
/* Compiler supports timed mutex acquisitions (e.g.
pthread_mutex_timedlock()). */
#undef ACE_HAS_MUTEX_TIMEOUTS
/* Define to 1 if platform has nanosleep(). */
#undef ACE_HAS_NANOSLEEP
/* Define to 1 if platform has the <new.h> header file. */
#undef ACE_HAS_NEW_H
/* Compiler supports new (std::nothrow) */
#undef ACE_HAS_NEW_NOTHROW
/* Platform provides new style C++ <new> header */
#undef ACE_HAS_NEW_NO_H
/* Define to 1 if system has nonconst FD_ISSET() macro. */
#undef ACE_HAS_NONCONST_FD_ISSET
/* Platform uses non-const char * in calls to gethostbyaddr, gethostbyname,
getservbyname */
#undef ACE_HAS_NONCONST_GETBY
/* Platform has a non-const parameter to msgsnd() (e.g., SCO). */
#undef ACE_HAS_NONCONST_MSGSND
/* Platform omits const qualifier from iovec parameter in readv() prototype.
*/
#undef ACE_HAS_NONCONST_READV
/* Platform's select() uses non-const timeval* (only found on Linux right now)
*/
#undef ACE_HAS_NONCONST_SELECT_TIMEVAL
/* Platform omits const qualifier from msghdr parameter in sendmsg()
prototype. */
#undef ACE_HAS_NONCONST_SENDMSG
/* Platform omits const qualifier from rlimit parameter in setrlimit()
prototype. */
#undef ACE_HAS_NONCONST_SETRLIMIT
/* Platform has swab(char*, char*, ssize_t) variant. */
#undef ACE_HAS_NONCONST_SWAB
/* Platform omits const qualifier from iovec parameter in writev() prototype.
*/
#undef ACE_HAS_NONCONST_WRITEV
/* Causes the ACE_Object_Manager instance to be created in main (int, char
*[]), instead of as a static (global) instance. */
#undef ACE_HAS_NONSTATIC_OBJECT_MANAGER
/* Compiler/platform uses old malloc()/free() prototypes (ugh) */
#undef ACE_HAS_OLD_MALLOC
/* Platform, e.g., Solaris 2.5, only supports SCHED_OTHER POSIX scheduling
policy. */
#undef ACE_HAS_ONLY_SCHED_OTHER
/* Use the semaphore implementation of ACE_Message_Queue rather than the
emulated condition variable (NT and VxWorks). */
#undef ACE_HAS_OPTIMIZED_MESSAGE_QUEUE
/* timezone* 2nd parameter & no prototype */
#undef ACE_HAS_OSF1_GETTIMEOFDAY
/* Platform supports the OSF TLI timod STREAMS module */
#undef ACE_HAS_OSF_TIMOD_H
/* Define to 1 if platform has the <pdh.h> header file. */
#undef ACE_HAS_PDH_H
/* Define to 1 if system is using Intel Pentium(tm) processor */
#undef ACE_HAS_PENTIUM
/* Platform contains <poll.h> */
#undef ACE_HAS_POLL
/* Platform supports "position-independent" features provided by
ACE_Based_Pointer<>. */
#undef ACE_HAS_POSITION_INDEPENDENT_POINTERS
/* Platform supports POSIX getpwnam_r() function */
#undef ACE_HAS_POSIX_GETPWNAM_R
/* Platform supports POSIX O_NONBLOCK semantics */
#undef ACE_HAS_POSIX_NONBLOCK
/* Platform supports POSIX realtime signals */
#undef ACE_HAS_POSIX_REALTIME_SIGNALS
/* Platform supports POSIX real-time semaphores (e.g., VxWorks and Solaris) */
#undef ACE_HAS_POSIX_SEM
/* Platform supports timed POSIX semaphore acquisitions (sem_timedwait()). */
#undef ACE_HAS_POSIX_SEM_TIMEOUT
/* Platform supports the POSIX struct timespec type */
#undef ACE_HAS_POSIX_TIME
/* Define to 1 if system should use PowerPC's cycle counter */
#undef ACE_HAS_POWERPC_TIMER
/* OS has priocntl (2) */
#undef ACE_HAS_PRIOCNTL
/* Platform supports the /proc file system and defines tid_t in <sys/procfs.h>
*/
#undef ACE_HAS_PROC_FS
/* Platform supports the prusage_t struct */
#undef ACE_HAS_PRUSAGE_T
/* Define to 1 if platform has POSIX threads */
#undef ACE_HAS_PTHREADS
/* Platform supports POSIX Threads .4a Draft 4 */
#undef ACE_HAS_PTHREADS_DRAFT4
/* Platform supports POSIX Threads .4a Draft 6 */
#undef ACE_HAS_PTHREADS_DRAFT6
/* Platform supports POSIX Threads .1c Draft 7 */
#undef ACE_HAS_PTHREADS_DRAFT7
/* Platform supports POSIX.1c-1995 threads */
#undef ACE_HAS_PTHREADS_STD
/* Platform has the UNIX98 extensions to Pthreads (rwlocks) */
#undef ACE_HAS_PTHREADS_UNIX98_EXT
/* Define to 1 if platform has pthread_attr_setcreatesuspend_np(). */
#undef ACE_HAS_PTHREAD_ATTR_SETCREATESUSPEND_NP
/* Define to 1 if platform has pthread_condattr_setkind_np(). */
#undef ACE_HAS_PTHREAD_CONDATTR_SETKIND_NP
/* Define to 1 if platform has pthread_continue(). */
#undef ACE_HAS_PTHREAD_CONTINUE
/* Define to 1 if platform has pthread_continue_np(). */
#undef ACE_HAS_PTHREAD_CONTINUE_NP
/* Define to 1 if platform has pthread_getaffinity_np(). */
#undef ACE_HAS_PTHREAD_GETAFFINITY_NP
/* Define to 1 if platform has pthread_getconcurrency(). */
#undef ACE_HAS_PTHREAD_GETCONCURRENCY
/* Define to 1 if platform has pthread_mutexattr_setkind_np(). */
#undef ACE_HAS_PTHREAD_MUTEXATTR_SETKIND_NP
/* Define to 1 if platform has the <pthread_np.h> header file. */
#undef ACE_HAS_PTHREAD_NP_H
/* pthread.h declares an enum with PTHREAD_PROCESS_PRIVATE and
PTHREAD_PROCESS_SHARED values */
#undef ACE_HAS_PTHREAD_PROCESS_ENUM
/* Define to 1 if platform has pthread_resume_np(). */
#undef ACE_HAS_PTHREAD_RESUME_NP
/* Define to 1 if platform has pthread_setaffinity_np(). */
#undef ACE_HAS_PTHREAD_SETAFFINITY_NP
/* Define to 1 if platform has pthread_setconcurrency(). */
#undef ACE_HAS_PTHREAD_SETCONCURRENCY
/* Define to 1 if platform has the declaration of pthread_sigmask(). */
#undef ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE
/* Define to 1 if platform has pthread_suspend(). */
#undef ACE_HAS_PTHREAD_SUSPEND
/* Define to 1 if platform has pthread_suspend_np(). */
#undef ACE_HAS_PTHREAD_SUSPEND_NP
/* Purify'ing. Defined on command line. */
#undef ACE_HAS_PURIFY
/* Platform has pread() and pwrite() support. */
#undef ACE_HAS_P_READ_WRITE
/* Quantify'ing. Defined on command line. */
#undef ACE_HAS_QUANTIFY
/* Define to 1 to configure Reactor to use a user-space queue for
notifications */
#undef ACE_HAS_REACTOR_NOTIFICATION_QUEUE
/* Mutexes are inherently recursive (e.g., Win32) */
#undef ACE_HAS_RECURSIVE_MUTEXES
/* Platform will recurse infinitely on thread exits from TSS cleanup routines
(e.g., AIX) */
#undef ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS
/* Platform supports reentrant functions (i.e., all the POSIX *_r functions).
*/
#undef ACE_HAS_REENTRANT_FUNCTIONS
/* Platform supports the POSIX regular expression library */
#undef ACE_HAS_REGEX
/* Platform has enum instead of int for first argument to ::{get,set}rlimit
(). The value of this macro is the enum definition, e.g., enum
__rlimit_resource, for Linux glibc 2.0. */
#undef ACE_HAS_RLIMIT_RESOURCE_ENUM
/* Platform has enum instead of int for first argument to ::getrusage (). The
value of this macro is the enum definition, e.g., enum __rusage_who, for
Linux glibc 2.0. */
#undef ACE_HAS_RUSAGE_WHO_ENUM
/* Define to 1 if platform has sched_getaffinity(). */
#undef ACE_HAS_SCHED_GETAFFINITY
/* Define to 1 if platform has sched_setaffinity(). */
#undef ACE_HAS_SCHED_SETAFFINITY
/* Define to 1 if platform has the <select.h> header file. */
#undef ACE_HAS_SELECT_H
/* Compiler/platform defines a union semun for SysV shared memory */
#undef ACE_HAS_SEMUN
/* Define to 1 if platform has setprogname(). */
#undef ACE_HAS_SETPROGNAME
/* Define to 1 if platform has set_t_errno(). */
#undef ACE_HAS_SET_T_ERRNO
/* Platform has shm_open() */
#undef ACE_HAS_SHM_OPEN
/* Platform's sigaction() function takes const sigaction* as 2nd parameter */
#undef ACE_HAS_SIGACTION_CONSTP2
/* Define to 1 if the system has the type `siginfo_t'. */
#undef ACE_HAS_SIGINFO_T
/* Platform has bug with sigismember() (HP/UX 11). */
#undef ACE_HAS_SIGISMEMBER_BUG
/* Platform supports the Win32 SignalObjectAndWait() function (WinNT 4.0 and
beyond). */
#undef ACE_HAS_SIGNAL_OBJECT_AND_WAIT
/* Define to 1 if platform has sigsuspend(). */
#undef ACE_HAS_SIGSUSPEND
/* Define to 1 if platform has sigtimedwait(). */
#undef ACE_HAS_SIGTIMEDWAIT
/* Define to 1 if `sigval_int' is a member of `union sigval'. */
#undef ACE_HAS_SIGVAL_SIGVAL_INT
/* Define to 1 if `sigval_ptr' is a member of `union sigval'. */
#undef ACE_HAS_SIGVAL_SIGVAL_PTR
/* Define to 1 if platform has sigwait(). */
#undef ACE_HAS_SIGWAIT
/* Define to 1 if the system has the type 'sig_atomic_t'. */
#undef ACE_HAS_SIG_ATOMIC_T
/* Compiler requires extern "C" functions for signals. */
#undef ACE_HAS_SIG_C_FUNC
/* Platform/compiler has macros for sig{empty,fill,add,del}set (e.g., SCO and
FreeBSD) */
#undef ACE_HAS_SIG_MACROS
/* OS/compiler uses size_t * rather than int * for socket lengths */
#undef ACE_HAS_SIZET_SOCKET_LEN
/* Define to 1 if platform has snprintf(). */
#undef ACE_HAS_SNPRINTF
/* Define to 1 if `sin6_len' is a member of `sockaddr_in6'. */
#undef ACE_HAS_SOCKADDR_IN6_SIN6_LEN
/* Define to 1 if `sin_len' is a member of `sockaddr_in'. */
#undef ACE_HAS_SOCKADDR_IN_SIN_LEN
/* Platform requires (struct sockaddr *) for msg_name field of struct msghdr.
*/
#undef ACE_HAS_SOCKADDR_MSG_NAME
/* Define to 1 if the system has the type `socklen_t'. */
#undef ACE_HAS_SOCKLEN_T
/* Define to 1 if the system has the type `ssize_t'. */
#undef ACE_HAS_SSIZE_T
/* Platform/compiler supports Standard C++ Library */
#undef ACE_HAS_STANDARD_CPP_LIBRARY
/* Platform has void (*)(...) prototype for pthread_key_create() destructor
(e.g., LynxOS). */
#undef ACE_HAS_STDARG_THR_DEST
/* */
#undef ACE_HAS_STDCPP_STL_INCLUDES
/* Platform provides C++ <stdexcept> header */
#undef ACE_HAS_STDEXCEPT_NO_H
/* Define to 1 if platform has UNIX International Threads */
#undef ACE_HAS_STHREADS
/* Used when users want to compile ACE with STL and STL map class conflicts
with <net/if.h> map struct. */
#undef ACE_HAS_STL_MAP_CONFLICT
/* Used when users want to compile ACE with STL and STL queue class conflicts
with <netinet/in.h> queue struct. */
#undef ACE_HAS_STL_QUEUE_CONFLICT
/* Compiler/platform supports struct strbuf */
#undef ACE_HAS_STRBUF_T
/* Define to 1 use ACE's strdup() emulation */
#undef ACE_HAS_STRDUP_EMULATION
/* Platform supports STREAMS */
#undef ACE_HAS_STREAMS
/* Platform supports STREAM pipes */
#undef ACE_HAS_STREAM_PIPES
/* Define to 1 if platform has strerror(). */
#undef ACE_HAS_STRERROR
/* Use the STRICT compilation mode on Win32. */
#undef ACE_HAS_STRICT
/* Platform has <strings.h> (which contains bzero() prototype) */
#undef ACE_HAS_STRINGS
/* Platform/Compiler supports a String class (e.g., GNU or Win32). */
#undef ACE_HAS_STRING_CLASS
/* Define to 1 if platform has strnlen(). */
#undef ACE_HAS_STRNLEN
/* Compiler/platform has strange hostent API for socket *_r() calls */
#undef ACE_HAS_STRUCT_NETDB_DATA
/* Compiler/platform supports SVR4 dynamic linking semantics */
#undef ACE_HAS_SVR4_DYNAMIC_LINKING
/* Compiler/platform supports SVR4 gettimeofday() prototype but doesn't have a
prototype */
#undef ACE_HAS_SVR4_GETTIMEOFDAY
/* Compiler/platform supports SVR4 signal typedef. */
#undef ACE_HAS_SVR4_SIGNAL_T
/* Compiler/platform supports SVR4 TLI (in particular, T_GETNAME stuff). */
#undef ACE_HAS_SVR4_TLI
/* Define to 1 if platform has sysctl(). */
#undef ACE_HAS_SYSCTL
/* Define to 1 if platform has the <sysent.h> header file. */
#undef ACE_HAS_SYSENT_H
/* Platform supports system configuration information. */
#undef ACE_HAS_SYSINFO
/* Platform supports System V IPC (most versions of UNIX, but not Win32) */
#undef ACE_HAS_SYSV_IPC
/* Platform/compiler supports _sys_errlist symbol */
#undef ACE_HAS_SYS_ERRLIST
/* Define to 1 if platform has the <sys/filio.h> header file. */
#undef ACE_HAS_SYS_FILIO_H
/* Define to 1 if platform has the <sys/loadavg.h> header file. */
#undef ACE_HAS_SYS_LOADAVG_H
/* Define to 1 if platform has the <sys/pstat.h> header file. */
#undef ACE_HAS_SYS_PSTAT_H
/* Compiler/platform supports _sys_siglist array */
#undef ACE_HAS_SYS_SIGLIST
/* Define to 1 if platform has the <sys/sockio.h> header file. */
#undef ACE_HAS_SYS_SOCKIO_H
/* Define to 1 if platform has the <sys/syscall.h> header file. */
#undef ACE_HAS_SYS_SYSCALL_H
/* Define to 1 if platform has the <sys/sysinfo.h> header file. */
#undef ACE_HAS_SYS_SYSINFO_H
/* Define to 1 if platform has the <sys/systeminfo.h> header file. */
#undef ACE_HAS_SYS_SYSTEMINFO_H
/* Platform provides <sys/xti.h> header */
#undef ACE_HAS_SYS_XTI_H
/* */
#undef ACE_HAS_TANDEM_SIGNALS
/* Compiler implements templates that support typedefs inside of classes used
as formal arguments to a template class. */
#undef ACE_HAS_TEMPLATE_TYPEDEFS
/* Define to 1 if system supports SysV tty API. */
#undef ACE_HAS_TERMIO
/* Define to 1 if system supports POSIX tty API. */
#undef ACE_HAS_TERMIOS
/* Platform supports threads. */
#undef ACE_HAS_THREADS
/* Platform allows multiple threads to call accept() on the same port (e.g.,
WinNT). */
#undef ACE_HAS_THREAD_SAFE_ACCEPT
/* Platform has thread_self() rather than pthread_self() (e.g., DCETHREADS and
AIX) */
#undef ACE_HAS_THREAD_SELF
/* Compiler/platform has thread-specific storage */
#undef ACE_HAS_THREAD_SPECIFIC_STORAGE
/* The pthread_keycreate() routine *must* take extern C functions. */
#undef ACE_HAS_THR_C_DEST
/* The pthread_create() routine *must* take extern C functions. */
#undef ACE_HAS_THR_C_FUNC
/* Platform supports thr_keydelete (e.g,. UNIXWARE) */
#undef ACE_HAS_THR_KEYDELETE
/* Platform calls thr_minstack() rather than thr_min_stack() (e.g., Tandem).
*/
#undef ACE_HAS_THR_MINSTACK
/* Platform has thr_yield() */
#undef ACE_HAS_THR_YIELD
/* Define to 1 if platform has global timezone variable */
#undef ACE_HAS_TIMEZONE
/* Platform/compiler supports timezone * as second parameter to gettimeofday()
and has a prototype. */
#undef ACE_HAS_TIMEZONE_GETTIMEOFDAY
/* Platform supports TLI timod STREAMS module */
#undef ACE_HAS_TIMOD_H
/* Platform supports TLI tiuser header */
#undef ACE_HAS_TIUSER_H
/* Platform does not protect <tiuser.h> with extern "C" */
#undef ACE_HAS_TIUSER_H_BROKEN_EXTERN_C
/* Platform supports TLI. Also see ACE_TLI_TCP_DEVICE. */
#undef ACE_HAS_TLI
/* Platform provides TLI function prototypes */
#undef ACE_HAS_TLI_PROTOTYPES
/* ACE provides TSS emulation. See also ACE_DEFAULT_THREAD_KEYS. */
#undef ACE_HAS_TSS_EMULATION
/* Define to 1 if platform has ualarm(). */
#undef ACE_HAS_UALARM
/* Define to 1 if the system has the type `ucontext_t'. */
#undef ACE_HAS_UCONTEXT_T
/* Define to 1 if the system has the type `uint16_t'. */
#undef ACE_HAS_UINT16_T
/* Define to 1 if the system has the type `uint32_t'. */
#undef ACE_HAS_UINT32_T
/* Define to 1 if the system has the type `uint64_t'. */
#undef ACE_HAS_UINT64_T
/* Define to 1 if the system has the type `uint8_t'. */
#undef ACE_HAS_UINT8_T
/* Has inconsistent SVR4 signal stuff, but not the same as the other platforms
*/
#undef ACE_HAS_UNIXWARE_SVR4_SIGNAL_T
/* Define to 1 if platform has vasprintf(). */
#undef ACE_HAS_VASPRINTF
/* Define to 1 if platform has vaswprintf(). */
#undef ACE_HAS_VASWPRINTF
/* Prints out console message in ACE_NOTSUP. Useful for tracking down origin
of ACE_NOTSUP. */
#undef ACE_HAS_VERBOSE_NOTSUP
/* Define to 1 if platform has vfwprintf(). */
#undef ACE_HAS_VFWPRINTF
/* Platform/compiler supports void * as second parameter to gettimeofday() and
has a prototype. */
#undef ACE_HAS_VOIDPTR_GETTIMEOFDAY
/* Platform requires void * for mmap(). */
#undef ACE_HAS_VOIDPTR_MMAP
/* OS/compiler uses void * arg 4 setsockopt() rather than const char * */
#undef ACE_HAS_VOIDPTR_SOCKOPT
/* Define to 1 if platform has vswprintf(). */
#undef ACE_HAS_VSWPRINTF
/* Platform/compiler supports wchar_t */
#undef ACE_HAS_WCHAR
/* Define to 1 use ACE's wcsdup() emulation */
#undef ACE_HAS_WCSDUP_EMULATION
/* Define to 1 if platform has wcsnlen(). */
#undef ACE_HAS_WCSNLEN
/* Platform/compiler supports Win32 structural exceptions. */
#undef ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS
/* The Win32 platform support TryEnterCriticalSection(). (WinNT 4.0 and
beyond) */
#undef ACE_HAS_WIN32_TRYLOCK
/* The Win32 platform supports WinSock 2.0. */
#undef ACE_HAS_WINSOCK2
/* Compiler handles explicit calling of template destructor correctly. */
#undef ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR
/* Solaris for intel uses macros for fstat() and stat(), these are wrappers
for _fxstat() and _xstat() uses of the macros. Causes compile and runtime
problems. */
#undef ACE_HAS_X86_STAT_MACROS
/* Platform has the XLI version of TLI */
#undef ACE_HAS_XLI
/* Platform has support for multi-byte character support compliant with the
XPG4 Worldwide Portability Interface wide-character classification. */
#undef ACE_HAS_XPG4_MULTIBYTE_CHAR
/* Platform has Xt Intrinsics Toolkit */
#undef ACE_HAS_XT
/* Platform has XTI (X/Open-standardized superset of TLI). Implies ACE_HAS_TLI
but uses a different header file. */
#undef ACE_HAS_XTI
/* Define to 1 if platform has _InterlockedDecrement(). */
#undef ACE_HAS__INTERLOCKEDDECREMENT
/* Define to 1 if platform has _InterlockedExchangeAdd(). */
#undef ACE_HAS__INTERLOCKEDEXCHANGEADD
/* Define to 1 if platform has _InterlockedIncrement(). */
#undef ACE_HAS__INTERLOCKEDINCREMENT
/* Define to the *printf format specifier (e.g. "%lld") for ACE_INT64 */
#undef ACE_INT64_FORMAT_SPECIFIER
/* Define to signed 64 bit integer type */
#undef ACE_INT64_TYPE
/* Define to the type of arg 2 for `ioctl'. */
#undef ACE_IOCTL_TYPE_ARG2
/* Define to 1 if platform lacks access(). */
#undef ACE_LACKS_ACCESS
/* Do not compile support for the "Codecs" ACE features. */
#undef ACE_LACKS_ACE_CODECS
/* Platform can not build ace/IOStream{,_T}.cpp. This does not necessarily
mean that the platform does not support iostreams. */
#undef ACE_LACKS_ACE_IOSTREAM
/* Do not compile support for the "other" ACE features, such as CORBA
handling, name services, and QoS. */
#undef ACE_LACKS_ACE_OTHER
/* Do not compile support for the ACE Service Configurator. */
#undef ACE_LACKS_ACE_SVCCONF
/* Do not compile support for the ACE Token feature. */
#undef ACE_LACKS_ACE_TOKEN
/* Do not compile support for the ACE UUID feature. */
#undef ACE_LACKS_ACE_UUID
/* Define to 1 if platform lacks alarm(). */
#undef ACE_LACKS_ALARM
/* Define to 1 if platform lacks alphasort(). */
#undef ACE_LACKS_ALPHASORT
/* Define to 1 if platform lacks the <arpa/inet.h> header file. */
#undef ACE_LACKS_ARPA_INET_H
/* Define to 1 if platform lacks asctime(). */
#undef ACE_LACKS_ASCTIME
/* Define to 1 if platform lacks asctime_r(). */
#undef ACE_LACKS_ASCTIME_R
/* No system support for replacing any previous mappings. */
#undef ACE_LACKS_AUTO_MMAP_REPLACEMENT
/* Platform lacks support for the standard C++ auto_ptr class */
#undef ACE_LACKS_AUTO_PTR
/* Define to 1 if platform lacks bsearch(). */
#undef ACE_LACKS_BSEARCH
/* Define to 1 to support unaligned CDR */
#undef ACE_LACKS_CDR_ALIGNMENT
/* Compiler does not have any istream operator>> for chars, u_chars, or signed
chars. */
#undef ACE_LACKS_CHAR_RIGHT_SHIFTS
/* Compiler does not have operator>> (istream &, u_char *) or operator>>
(istream &, signed char *) */
#undef ACE_LACKS_CHAR_STAR_RIGHT_SHIFTS
/* Define to 1 if platform lacks chdir(). */
#undef ACE_LACKS_CHDIR
/* Platform has no implementation of pthread_condattr_setpshared(), even
though it supports pthreads! */
#undef ACE_LACKS_CONDATTR_PSHARED
/* Platform lacks condition variables (e.g., Win32 and VxWorks) */
#undef ACE_LACKS_COND_T
/* pthread_cond_timedwait does *not* reset the time argument when the lock is
acquired. */
#undef ACE_LACKS_COND_TIMEDWAIT_RESET
/* Platform uses struct strbuf * rather than const struct strbuf * (e.g.,
HP/UX 10.x) */
#undef ACE_LACKS_CONST_STRBUF_PTR
/* Platform forgot const in cond_timewait (e.g., HP/UX). */
#undef ACE_LACKS_CONST_TIMESPEC_PTR
/* Define to 1 if platform lacks difftime(). */
#undef ACE_LACKS_DIFFTIME
/* Define to 1 if platform lacks the <dirent.h> header file. */
#undef ACE_LACKS_DIRENT_H
/* Define to 1 if platform lacks the <dlfcn.h> header file. */
#undef ACE_LACKS_DLFCN_H
/* Define to 1 if platform lacks dup(). */
#undef ACE_LACKS_DUP
/* Define to 1 if platform lacks dup2(). */
#undef ACE_LACKS_DUP2
/* Define to 1 if platform lacks the <errno.h> header file. */
#undef ACE_LACKS_ERRNO_H
/* Platform lacks the exec() family of system calls (e.g., Win32, VxWorks,
Chorus) */
#undef ACE_LACKS_EXEC
/* Define to 1 if platform lacks the <execinfo.h> header file. */
#undef ACE_LACKS_EXECINFO_H
/* Define to 1 if platform lacks fcntl(). */
#undef ACE_LACKS_FCNTL
/* Define to 1 if platform lacks the <fcntl.h> header file. */
#undef ACE_LACKS_FCNTL_H
/* Define to 1 if platform lacks fgetwc(). */
#undef ACE_LACKS_FGETWC
/* Define to 1 if platform lacks fgetws(). */
#undef ACE_LACKS_FGETWS
/* Platform lacks file locking mechanism */
#undef ACE_LACKS_FILELOCKS
/* Define to 1 if platform lacks fork(). */
#undef ACE_LACKS_FORK
/* Define to 1 if platform lacks fputws(). */
#undef ACE_LACKS_FPUTWS
/* Define to 1 if platform lacks fsync(). */
#undef ACE_LACKS_FSYNC
/* Define to 1 if platform lacks getcwd(). */
#undef ACE_LACKS_GETCWD
/* Define to 1 if platform lacks getegid(). */
#undef ACE_LACKS_GETEGID
/* Define to 1 if platform lacks geteuid(). */
#undef ACE_LACKS_GETEUID
/* Define to 1 if platform lacks getgid(). */
#undef ACE_LACKS_GETGID
/* Define to 1 if platform lacks gethostent(). */
#undef ACE_LACKS_GETHOSTENT
/* Define to 1 if platform lacks getipnodebyaddr(). */
#undef ACE_LACKS_GETIPNODEBYADDR
/* Define to 1 if platform lacks getipnodebyname(). */
#undef ACE_LACKS_GETIPNODEBYNAME
/* Define to 1 if platform lacks getopt(). */
#undef ACE_LACKS_GETOPT
/* Define to 1 if platform lacks the declaration of getopt(). */
#undef ACE_LACKS_GETOPT_PROTOTYPE
/* Define to 1 if platform lacks getpgid(). */
#undef ACE_LACKS_GETPGID
/* Define to 1 if platform lacks getpgid() declaration in <unistd.h>. */
#undef ACE_LACKS_GETPGID_PROTOTYPE
/* Define to 1 if platform lacks getpid(). */
#undef ACE_LACKS_GETPID
/* Define to 1 if platform lacks getppid(). */
#undef ACE_LACKS_GETPPID
/* Platforms lacks getservbyname() (e.g., VxWorks and Chorus). */
#undef ACE_LACKS_GETSERVBYNAME
/* Define to 1 if platform lacks getuid(). */
#undef ACE_LACKS_GETUID
/* Define to 1 if platform lacks gmtime(). */
#undef ACE_LACKS_GMTIME
/* Define to 1 if platform lacks gmtime_r(). */
#undef ACE_LACKS_GMTIME_R
/* Define to 1 if platform lacks inet_aton(). */
#undef ACE_LACKS_INET_ATON
/* Platform can't handle "inline" keyword correctly. */
#undef ACE_LACKS_INLINE_FUNCTIONS
/* Define to 1 if the system lacks the type `intmax_t'. */
#undef ACE_LACKS_INTMAX_T
/* Define to 1 if the system lacks the type `intptr_t'. */
#undef ACE_LACKS_INTPTR_T
/* Define to 1 if platform lacks the <inttypes.h> header file. */
#undef ACE_LACKS_INTTYPES_H
/* iostream header does not declare ipfx (), opfx (), etc. */
#undef ACE_LACKS_IOSTREAM_FX
/* iostreams are not supported adequately on the given platform. */
#undef ACE_LACKS_IOSTREAM_TOTALLY
/* Define to 1 if platform lacks isatty(). */
#undef ACE_LACKS_ISATTY
/* Define to 1 if platform lacks itow(). */
#undef ACE_LACKS_ITOW
/* Define to 1 if the system lacks the type `key_t'. */
#undef ACE_LACKS_KEY_T
/* Define to 1 if platform lacks kill(). */
#undef ACE_LACKS_KILL
/* Platform lacks streambuf "linebuffered ()". */
#undef ACE_LACKS_LINEBUFFERED_STREAMBUF
/* Platform/compiler lacks the llseek() prototype. This should not be defined
if ACE_LACKS_LSEEK64_PROTOTYPE is defined. */
#undef ACE_LACKS_LLSEEK_PROTOTYPE
/* Define to 1 if platform lacks localtime(). */
#undef ACE_LACKS_LOCALTIME
/* Define to 1 if platform lacks log2(). */
#undef ACE_LACKS_LOG2
/* Compiler/platform does not support the unsigned long long datatype. */
#undef ACE_LACKS_LONGLONG_T
/* Platform/compiler lacks the lseek64() prototype. This should not be defined
if ACE_LACKS_LLSEEK_PROTOTYPE is defined. */
#undef ACE_LACKS_LSEEK64_PROTOTYPE
/* Define to 1 if platform lacks lstat(). */
#undef ACE_LACKS_LSTAT
/* Define to 1 if platform lacks madvise(). */
#undef ACE_LACKS_MADVISE
/* Define to 1 if platform lacks the declaration of madvise(). */
#undef ACE_LACKS_MADVISE_PROTOTYPE
/* Define to 1 if platform lacks the <malloc.h> header file. */
#undef ACE_LACKS_MALLOC_H
/* Define to 1 if platform lacks the <memory.h> header file. */
#undef ACE_LACKS_MEMORY_H
/* Define to 1 if platform lacks mkfifo(). */
#undef ACE_LACKS_MKFIFO
/* Define to 1 if platform lacks mkstemp(). */
#undef ACE_LACKS_MKSTEMP
/* Define to 1 if platform lacks the declaration of mkstemp(). */
#undef ACE_LACKS_MKSTEMP_PROTOTYPE
/* Define to 1 if platform lacks mktemp(). */
#undef ACE_LACKS_MKTEMP
/* Define to 1 if platform lacks the declaration of mktemp(). */
#undef ACE_LACKS_MKTEMP_PROTOTYPE
/* The platform doesn't have mmap(2) (e.g., SCO UNIX). */
#undef ACE_LACKS_MMAP
/* Platform/compiler doesn't have open() mode masks. */
#undef ACE_LACKS_MODE_MASKS
/* Platform does not have Motif X toolkit available */
#undef ACE_LACKS_MOTIF
/* Define to 1 if platform lacks mprotect(). */
#undef ACE_LACKS_MPROTECT
/* Platform defines ACE_HAS_MSG, but lacks msg_accrights{len}. */
#undef ACE_LACKS_MSG_ACCRIGHTS
/* Define to 1 if platform lacks msync(). */
#undef ACE_LACKS_MSYNC
/* Platform lacks pthread_mutexattr_setpshared(). */
#undef ACE_LACKS_MUTEXATTR_PSHARED
/* Platform lacks named POSIX semaphores (e.g., Chorus) */
#undef ACE_LACKS_NAMED_POSIX_SEM
/* Define to 1 if platform lacks the <netdb.h> header file. */
#undef ACE_LACKS_NETDB_H
/* Platform does not support reentrant netdb functions (getprotobyname_r,
getprotobynumber_r, gethostbyaddr_r, gethostbyname_r, getservbyname_r). */
#undef ACE_LACKS_NETDB_REENTRANT_FUNCTIONS
/* Define to 1 if platform lacks the <netinet/in.h> header file. */
#undef ACE_LACKS_NETINET_IN_H
/* Define to 1 if platform lacks the <netinet/tcp.h> header file. */
#undef ACE_LACKS_NETINET_TCP_H
/* Define to 1 if platform lacks the <net/if.h> header file. */
#undef ACE_LACKS_NET_IF_H
/* OS requires non-null status pointer for pthread_join () */
#undef ACE_LACKS_NULL_PTHREAD_STATUS
/* Platform lacks std::numeric_limits<> */
#undef ACE_LACKS_NUMERIC_LIMITS
/* Define to 1 if platform lacks IGMPv3 "perfect" filtering of multicast
datagrams at the socket level. If defined, ACE_SOCK_Dgram_Mcast will bind
the first joined multicast group to the socket, and all future joins on
that socket will fail with an error. */
#undef ACE_LACKS_PERFECT_MULTICAST_FILTERING
/* Define to 1 if platform lacks pipe(). */
#undef ACE_LACKS_PIPE
/* Compiler doesn't support placement operator delete(void *, void *). */
#undef ACE_LACKS_PLACEMENT_OPERATOR_DELETE
/* Compiler doesn't support placement operator new(size_t, void *). */
#undef ACE_LACKS_PLACEMENT_OPERATOR_NEW
/* Compiler complains about use of obsolete "pragma once" */
#undef ACE_LACKS_PRAGMA_ONCE
/* Platform/compiler lacks the pread() and pwrite() prototypes */
#undef ACE_LACKS_PREAD_PROTOTYPE
/* Define to 1 if the system lacks the type 'pri_t'. */
#undef ACE_LACKS_PRI_T
/* Define to 1 if platform lacks pthread_attr_setstack() */
#undef ACE_LACKS_PTHREAD_ATTR_SETSTACK
/* Define to 1 if platform lacks pthread_attr_setstackaddr(). */
#undef ACE_LACKS_PTHREAD_ATTR_SETSTACKADDR
/* Define to 1 if platform lacks pthread_attr_setstacksize(). */
#undef ACE_LACKS_PTHREAD_ATTR_SETSTACKSIZE
/* Platform lacks pthread_cancel() */
#undef ACE_LACKS_PTHREAD_CANCEL
/* Define to 1 if platform lacks pthread_sigmask(). */
#undef ACE_LACKS_PTHREAD_SIGMASK
/* Define to 1 if platform lacks pthread_thr_sigsetmask(). */
#undef ACE_LACKS_PTHREAD_THR_SIGSETMASK
/* Define to 1 if platform lacks pthread_yield(). */
#undef ACE_LACKS_PTHREAD_YIELD
/* Platform lacks, getpwnam(), etc. */
#undef ACE_LACKS_PWD_FUNCTIONS
/* Define to 1 if platform lacks the <pwd.h> header file. */
#undef ACE_LACKS_PWD_H
/* Platform lacks getpwnam_r() methods (e.g., SGI 6.2). */
#undef ACE_LACKS_PWD_REENTRANT_FUNCTIONS
/* Define to 1 if platform lacks qsort(). */
#undef ACE_LACKS_QSORT
/* Define to 1 if platform lacks readdir_r(). */
#undef ACE_LACKS_READDIR_R
/* Define to 1 if platform lacks readlink(). */
#undef ACE_LACKS_READLINK
/* Define to 1 if platform lacks readv(). */
#undef ACE_LACKS_READV
/* Define to 1 if platform lacks realpath(). */
#undef ACE_LACKS_REALPATH
/* Define to 1 if platform lacks recvmsg(). */
#undef ACE_LACKS_RECVMSG
/* Define to 1 if platform lacks rename(). */
#undef ACE_LACKS_RENAME
/* Platform/compiler lacks {get,set}rlimit() function (e.g., VxWorks, Chorus,
and SCO UNIX) */
#undef ACE_LACKS_RLIMIT
/* Define to 1 if platform lacks the declaration of {get,set}rlimit(). */
#undef ACE_LACKS_RLIMIT_PROTOTYPE
/* Platform lacks pthread_rwlockattr_setpshared(). */
#undef ACE_LACKS_RWLOCKATTR_PSHARED
/* Platform lacks readers/writer locks. */
#undef ACE_LACKS_RWLOCK_T
/* Define to 1 if platform lacks sbrk(). */
#undef ACE_LACKS_SBRK
/* Define to 1 if platform lacks the <sched.h> header file. */
#undef ACE_LACKS_SCHED_H
/* Define to 1 if platform lacks the <search.h> header file. */
#undef ACE_LACKS_SEARCH_H
/* Define to 1 if platform lacks seekdir(). */
#undef ACE_LACKS_SEEKDIR
/* Define to 1 if platform lacks the <semaphore.h> header file. */
#undef ACE_LACKS_SEMAPHORE_H
/* Platform lacks struct sembuf (e.g., Win32 and VxWorks) */
#undef ACE_LACKS_SEMBUF_T
/* Define to 1 if platform lacks sendmsg(). */
#undef ACE_LACKS_SENDMSG
/* Platform lacks pthread_attr_setdetachstate() (e.g., HP/UX 10.x) */
#undef ACE_LACKS_SETDETACH
/* Define to 1 if platform lacks setegid(). */
#undef ACE_LACKS_SETEGID
/* Define to 1 if platform lacks seteuid(). */
#undef ACE_LACKS_SETEUID
/* Define to 1 if platform lacks setgid(). */
#undef ACE_LACKS_SETGID
/* Define to 1 if platform lacks setpgid(). */
#undef ACE_LACKS_SETPGID
/* Define to 1 if platform lacks setpgid() declaration in <unistd.h>. */
#undef ACE_LACKS_SETPGID_PROTOTYPE
/* Define to 1 if platform lacks setregid(). */
#undef ACE_LACKS_SETREGID
/* Define to 1 if platform lacks setregid() declaration in <unistd.h>. */
#undef ACE_LACKS_SETREGID_PROTOTYPE
/* Define to 1 if platform lacks setreuid(). */
#undef ACE_LACKS_SETREUID
/* Define to 1 if platform lacks setreuid() declaration in <unistd.h>. */
#undef ACE_LACKS_SETREUID_PROTOTYPE
/* Platform lacks pthread_attr_setsched() (e.g. MVS) */
#undef ACE_LACKS_SETSCHED
/* Define to 1 if platform lacks setsid(). */
#undef ACE_LACKS_SETSID
/* Define to 1 if platform lacks setuid(). */
#undef ACE_LACKS_SETUID
/* Define to 1 if platform lacks sigaction(). */
#undef ACE_LACKS_SIGACTION
/* Define to 1 if platform lacks the <siginfo.h> header file. */
#undef ACE_LACKS_SIGINFO_H
/* Define to 1 if platform lacks the <signal.h> header file. */
#undef ACE_LACKS_SIGNAL_H
/* Platform lacks "signed char" type (broken!) */
#undef ACE_LACKS_SIGNED_CHAR
/* Platform lacks signal sets (e.g., Chorus and Win32) */
#undef ACE_LACKS_SIGSET
/* Define to 1 if `si_addr' is not a member of `siginfo_t'. */
#undef ACE_LACKS_SI_ADDR
/* Define to 1 if platform lacks socketpair(). */
#undef ACE_LACKS_SOCKETPAIR
/* Platform doesn't support SO_SNDBUF/SO_RCVBUF (used in TAO) */
#undef ACE_LACKS_SOCKET_BUFSIZ
/* Compiler doesn't support static data member templates */
#undef ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES
/* Define to 1 if platform lacks the <stdint.h> header file. */
#undef ACE_LACKS_STDINT_H
/* Define to 1 if platform lacks the <stdlib.h> header file. */
#undef ACE_LACKS_STDLIB_H
/* Define to 1 if platform lacks strcasecmp(). */
#undef ACE_LACKS_STRCASECMP
/* Define to 1 if platform lacks a declaration for strcasecmp() */
#undef ACE_LACKS_STRCASECMP_PROTOTYPE
/* Define to 1 if platform lacks strchr(). */
#undef ACE_LACKS_STRCHR
/* Define to 1 if platform lacks strdup(). */
#undef ACE_LACKS_STRDUP
/* Define to 1 if platform lacks strerror(). */
#undef ACE_LACKS_STRERROR
/* Define to 1 if platform lacks strftime(). */
#undef ACE_LACKS_STRFTIME
/* Define to 1 if platform lacks the <strings.h> header file. */
#undef ACE_LACKS_STRINGS_H
/* Define to 1 if platform lacks the <string.h> header file. */
#undef ACE_LACKS_STRING_H
/* Define to 1 if platform lacks strncasecmp(). */
#undef ACE_LACKS_STRNCASECMP
/* Define to 1 if platform lacks a declaration for strncasecmp() */
#undef ACE_LACKS_STRNCASECMP_PROTOTYPE
/* Define to 1 if platform lacks the declaration of strnlen(). */
#undef ACE_LACKS_STRNLEN_PROTOTYPE
/* Platform lacks stropts.h */
#undef ACE_LACKS_STROPTS_H
/* Define to 1 if platform lacks strpbrk(). */
#undef ACE_LACKS_STRPBRK
/* Define to 1 if platform lacks strptime(). */
#undef ACE_LACKS_STRPTIME
/* Define to 1 if platform lacks the declaration of strptime(). */
#undef ACE_LACKS_STRPTIME_PROTOTYPE
/* Define to 1 if platform lacks strrchr(). */
#undef ACE_LACKS_STRRCHR
/* Platform doesn't define struct strrecvfd. */
#undef ACE_LACKS_STRRECVFD
/* Define to 1 if platform lacks strspn(). */
#undef ACE_LACKS_STRSPN
/* Define to 1 if platform lacks strtod(). */
#undef ACE_LACKS_STRTOD
/* Platform/compiler lacks the strtok_r() prototype */
#undef ACE_LACKS_STRTOK_R_PROTOTYPE
/* Define to 1 if platform lacks strtol(). */
#undef ACE_LACKS_STRTOL
/* Define to 1 if platform lacks strtoul(). */
#undef ACE_LACKS_STRTOUL
/* Define to 1 if platform lacks strtoull(). */
#undef ACE_LACKS_STRTOULL
/* Platform lacks dirent structure. */
#undef ACE_LACKS_STRUCT_DIR
/* Define to 1 if the system lacks the type 'suseconds_t'. */
#undef ACE_LACKS_SUSECONDS_T
/* Define to 1 if platform lacks swab(). */
#undef ACE_LACKS_SWAB
/* Define to 1 if platform lacks syscall(). */
#undef ACE_LACKS_SYSCALL
/* Define to 1 if platform lacks sysconf(). */
#undef ACE_LACKS_SYSCONF
/* Define to 1 if platform lacks system(). */
#undef ACE_LACKS_SYSTEM
/* Platform lacks SYSV message queue prototypes */
#undef ACE_LACKS_SYSV_MSQ_PROTOS
/* Platform lacks System V shared memory (e.g., Win32 and VxWorks) */
#undef ACE_LACKS_SYSV_SHMEM
/* Define to 1 if platform lacks the <sys/ioctl.h> header file. */
#undef ACE_LACKS_SYS_IOCTL_H
/* Define to 1 if platform lacks the <sys/ipc.h> header file. */
#undef ACE_LACKS_SYS_IPC_H
/* Define to 1 if platform lacks the <sys/mman.h> header file. */
#undef ACE_LACKS_SYS_MMAN_H
/* Platform lacks sys/msg.h (e.g., Chorus and VxWorks) */
#undef ACE_LACKS_SYS_MSG_H
/* Define to 1 if platform lacks the <sys/param.h> header file. */
#undef ACE_LACKS_SYS_PARAM_H
/* Define to 1 if platform lacks the <sys/resource.h> header file. */
#undef ACE_LACKS_SYS_RESOURCE_H
/* Define to 1 if platform lacks the <sys/select.h> header file. */
#undef ACE_LACKS_SYS_SELECT_H
/* Define to 1 if platform lacks the <sys/sem.h> header file. */
#undef ACE_LACKS_SYS_SEM_H
/* Define to 1 if platform lacks the <sys/shm.h> header file. */
#undef ACE_LACKS_SYS_SHM_H
/* Define to 1 if platform lacks the <sys/socket.h> header file. */
#undef ACE_LACKS_SYS_SOCKET_H
/* Define to 1 if platform lacks the <sys/stat.h> header file. */
#undef ACE_LACKS_SYS_STAT_H
/* Define to 1 if platform lacks the <sys/sysctl.h> header file. */
#undef ACE_LACKS_SYS_SYSCTL_H
/* Define to 1 if platform lacks the <sys/time.h> header file. */
#undef ACE_LACKS_SYS_TIME_H
/* Define to 1 if platform lacks the <sys/types.h> header file. */
#undef ACE_LACKS_SYS_TYPES_H
/* Define to 1 if platform lacks the <sys/uio.h> header file. */
#undef ACE_LACKS_SYS_UIO_H
/* Define to 1 if platform lacks the <sys/un.h> header file. */
#undef ACE_LACKS_SYS_UN_H
/* Define to 1 if platform lacks the <sys/wait.h> header file. */
#undef ACE_LACKS_SYS_WAIT_H
/* OS does not support TCP_NODELAY */
#undef ACE_LACKS_TCP_NODELAY
/* Define to 1 if platform lacks telldir(). */
#undef ACE_LACKS_TELLDIR
/* Define to 1 if platform lacks tempnam(). */
#undef ACE_LACKS_TEMPNAM
/* Define to 1 if platform lacks the <termios.h> header file. */
#undef ACE_LACKS_TERMIOS_H
/* Define to 1 if platform lacks the <termio.h> header file. */
#undef ACE_LACKS_TERMIO_H
/* Platform lacks pthread_attr_setscope() */
#undef ACE_LACKS_THREAD_PROCESS_SCOPING
/* Define to 1 if platform lacks the declarations of recv_timedwait,
send_timedwait, etc. */
#undef ACE_LACKS_TIMEDWAIT_PROTOTYPES
/* Platform does not define timepec_t as a typedef for struct timespec. */
#undef ACE_LACKS_TIMESPEC_T
/* Define to 1 if platform lacks the <time.h> header file. */
#undef ACE_LACKS_TIME_H
/* Define to 1 if platform lacks towlower(). */
#undef ACE_LACKS_TOWLOWER
/* Define to 1 if platform lacks towupper(). */
#undef ACE_LACKS_TOWUPPER
/* Define to 1 if platform lacks truncate(). */
#undef ACE_LACKS_TRUNCATE
/* Header files lack t_errno for TLI */
#undef ACE_LACKS_T_ERRNO
/* Define to 1 if platform lacks the declaration of ualarm(). */
#undef ACE_LACKS_UALARM_PROTOTYPE
/* Define to 1 if platform lacks the <ucontext.h> header file. */
#undef ACE_LACKS_UCONTEXT_H
/* Define to 1 if the system lacks the type `uintmax_t'. */
#undef ACE_LACKS_UINTMAX_T
/* Define to 1 if the system lacks the type `uintptr_t'. */
#undef ACE_LACKS_UINTPTR_T
/* Define to 1 if platform lacks umask(). */
#undef ACE_LACKS_UMASK
/* Define to 1 if platform lacks uname(). */
#undef ACE_LACKS_UNAME
/* */
#undef ACE_LACKS_UNBUFFERED_STREAMBUF
/* Define to 1 if platform lacks the <unistd.h> header file. */
#undef ACE_LACKS_UNISTD_H
/* ACE platform has no UNIX domain sockets */
#undef ACE_LACKS_UNIX_DOMAIN_SOCKETS
/* Platform lacks full signal support (e.g., Win32 and Chorus). */
#undef ACE_LACKS_UNIX_SIGNALS
/* Define to 1 if platform lacks unlink(). */
#undef ACE_LACKS_UNLINK
/* Define to 1 if the system lacks the type 'useconds_t'. */
#undef ACE_LACKS_USECONDS_T
/* Define to 1 if platform lacks the <utime.h> header file. */
#undef ACE_LACKS_UTIME_H
/* Platform lacks struct utsname (e.g., Win32 and VxWorks) */
#undef ACE_LACKS_UTSNAME_T
/* Define to 1 if the system lacks the type `u_long_long_t'. */
#undef ACE_LACKS_U_LONGLONG_T
/* Define to 1 if platform lacks the <wchar.h> header file. */
#undef ACE_LACKS_WCHAR_H
/* Define to 1 if the system lacks the type `wchar_t'. */
#undef ACE_LACKS_WCHAR_T
/* Define to 1 if platform lacks wcscasecmp(). */
#undef ACE_LACKS_WCSCASECMP
/* Define to 1 if platform lacks wcscat(). */
#undef ACE_LACKS_WCSCAT
/* Define to 1 if platform lacks wcschr(). */
#undef ACE_LACKS_WCSCHR
/* Define to 1 if platform lacks wcscmp(). */
#undef ACE_LACKS_WCSCMP
/* Define to 1 if platform lacks wcscpy(). */
#undef ACE_LACKS_WCSCPY
/* Define to 1 if platform lacks wcscspn(). */
#undef ACE_LACKS_WCSCSPN
/* Define to 1 if platform lacks wcsdup(). */
#undef ACE_LACKS_WCSDUP
/* Define to 1 if platform lacks wcslen(). */
#undef ACE_LACKS_WCSLEN
/* Define to 1 if platform lacks wcsncasecmp(). */
#undef ACE_LACKS_WCSNCASECMP
/* Define to 1 if platform lacks wcsncat(). */
#undef ACE_LACKS_WCSNCAT
/* Define to 1 if platform lacks wcsncmp(). */
#undef ACE_LACKS_WCSNCMP
/* Define to 1 if platform lacks wcsncpy(). */
#undef ACE_LACKS_WCSNCPY
/* Define to 1 if platform lacks wcsnicmp(). */
#undef ACE_LACKS_WCSNICMP
/* Define to 1 if platform lacks wcspbrk(). */
#undef ACE_LACKS_WCSPBRK
/* Define to 1 if platform lacks wcsrchr(). */
#undef ACE_LACKS_WCSRCHR
/* Define to 1 if platform lacks wcsspn(). */
#undef ACE_LACKS_WCSSPN
/* Define to 1 if platform lacks wcsstr(). */
#undef ACE_LACKS_WCSSTR
/* Define to 1 if platform lacks wcstod(). */
#undef ACE_LACKS_WCSTOD
/* Define to 1 if platform lacks wcstok(). */
#undef ACE_LACKS_WCSTOK
/* Define to 1 if platform lacks wcstol(). */
#undef ACE_LACKS_WCSTOL
/* Define to 1 if platform lacks wcstoul(). */
#undef ACE_LACKS_WCSTOUL
/* Define to 1 if platform lacks wcstoull(). */
#undef ACE_LACKS_WCSTOULL
/* Define to 1 if platform lacks the <wctype.h> header file. */
#undef ACE_LACKS_WCTYPE_H
/* Define to 1 if platform lacks writev(). */
#undef ACE_LACKS_WRITEV
/* Define to environment variable used for DLL search path */
#undef ACE_LD_SEARCH_PATH
/* typedef for ACE_LOFF_T */
#undef ACE_LOFF_T_TYPEDEF
/* Renames "main (int, char *[])", for platforms such as g++/VxWorks that
don't allow main. Requires the use of ACE_HAS_NONSTATIC_OBJECT_MANAGER. */
#undef ACE_MAIN
/* */
#undef ACE_MALLOC_ALIGN
/* */
#undef ACE_MAP_PRIVATE
/* Define to 1 if platform has 1 parameter mkdir() */
#undef ACE_MKDIR_LACKS_MODE
/* Compile using multi-thread libraries */
#undef ACE_MT_SAFE
/* Turns off debugging features */
#undef ACE_NDEBUG
/* Necessary with some compilers to pass ACE_TTY_IO as parameter to
DEV_Connector. */
#undef ACE_NEEDS_DEV_IO_CONVERSION
/* Compiler requires a definition for a "hidden" function, e.g., a private,
unimplemented copy constructor or assignment operator. The SGI C++ compiler
needs this, in template classes, with
ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA. */
#undef ACE_NEEDS_FUNC_DEFINITIONS
/* Required by platforms with small default stacks. */
#undef ACE_NEEDS_HUGE_THREAD_STACKSIZE
/* OS has LWPs, and when the priority of a bound thread is set, then the LWP
priority must be set also. */
#undef ACE_NEEDS_LWP_PRIO_SET
/* Platform needs to #include <sched.h> to get thread scheduling defs. */
#undef ACE_NEEDS_SCHED_H
/* Compiler's 'new' throws exception on failure (ANSI C++ behavior). */
#undef ACE_NEW_THROWS_EXCEPTIONS
/* Turns off the LM_DEBUG and LM_ERROR logging macros... */
#undef ACE_NLOGGING
/* Explicitly disable ACE inlining */
#undef ACE_NO_INLINE
/* Turns off the tracing feature. */
#undef ACE_NTRACE
/* Defines the page size of the system (not used on Win32 or with
ACE_HAS_GETPAGESIZE). */
#undef ACE_PAGE_SIZE
/* Flag that denotes the symbol should be exported from the DSO/DLL. */
#undef ACE_Proper_Export_Flag
/* Flag that denotes the symbol should be imported from the DSO/DLL. */
#undef ACE_Proper_Import_Flag
/* Platform redefines the t_... names (UnixWare) */
#undef ACE_REDEFINES_XTI_FUNCTIONS
/* shm_open() requires a leading slash in name */
#undef ACE_SHM_OPEN_REQUIRES_ONE_SLASH
/* Size of the native "double" type */
#undef ACE_SIZEOF_DOUBLE
/* Size of the native "float" type */
#undef ACE_SIZEOF_FLOAT
/* Size of the native "int" type */
#undef ACE_SIZEOF_INT
/* Size of the native "long" type */
#undef ACE_SIZEOF_LONG
/* Size of the native "long double" type */
#undef ACE_SIZEOF_LONG_DOUBLE
/* Size of the native "long long" type */
#undef ACE_SIZEOF_LONG_LONG
/* Size of the native "short" type */
#undef ACE_SIZEOF_SHORT
/* Size of the native "pointer to void" type */
#undef ACE_SIZEOF_VOID_P
/* Size of the native "wchar_t" type */
#undef ACE_SIZEOF_WCHAR
/* Define to the *printf format specifier (e.g. "%u") for size_t */
#undef ACE_SIZE_T_FORMAT_SPECIFIER
/* Define to the *printf format specifier (e.g. "%d") for ssize_t */
#undef ACE_SSIZE_T_FORMAT_SPECIFIER
/* Define to function that is equivalent to strcasecmp() */
#undef ACE_STRCASECMP_EQUIVALENT
/* Define to function that is equivalent to strdup() */
#undef ACE_STRDUP_EQUIVALENT
/* Define to function that is equivalent to strncasecmp() */
#undef ACE_STRNCASECMP_EQUIVALENT
/* Compiler's template mechanism must use a pragma. This is used for AIX's C++
compiler. */
#undef ACE_TEMPLATES_REQUIRE_PRAGMA
/* Compiler's template mechanim must see source code (i.e., .cpp files). This
is used for GNU G++. */
#undef ACE_TEMPLATES_REQUIRE_SOURCE
/* Specify this if you don't want threads to inherit parent thread's
ACE_Log_Msg properties. */
#undef ACE_THREADS_DONT_INHERIT_LOG_MSG
/* */
#undef ACE_THR_PRI_FIFO_DEF
/* */
#undef ACE_TIMER_SKEW
/* Device the platform uses for TCP on TLI. Only needed if not /dev/tcp. */
#undef ACE_TLI_TCP_DEVICE
/* Define to the *printf format specifier (e.g. "%llu") for ACE_UINT64 */
#undef ACE_UINT64_FORMAT_SPECIFIER
/* Define to unsigned 64 bit integer type */
#undef ACE_UINT64_TYPE
/* Platform uses assembly symbols instead of C symbols in dlsym() */
#undef ACE_USES_ASM_SYMBOL_IN_DLSYM
/* Enable IPv6 support on platforms that don't have IPv6 turned on by default
*/
#undef ACE_USES_IPV4_IPV6_MIGRATION
/* Some files, such as ace/streams.h, want to include new style C++ stream
headers. These headers are iomanip, ios, iostream, istream, ostream,
fstream and streambuf. If _all_ of these headers aren't available, then
assume that only iostream.h and fstream.h are available. */
#undef ACE_USES_OLD_IOSTREAMS
/* When linking MFC as a static library is desired */
#undef ACE_USES_STATIC_MFC
/* Platform has its standard C++ library in the namespace std. */
#undef ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB
/* ACE is built to use wide characters internally */
#undef ACE_USES_WCHAR
/* The OS/platform supports the poll() event demultiplexor */
#undef ACE_USE_POLL
/* Define to 1 to embed RCS ID strings into compiled object files. */
#undef ACE_USE_RCSID
/* For Win32: Use Select_Reactor as default implementation of Reactor instead
of WFMO_Reactor. */
#undef ACE_USE_SELECT_REACTOR_FOR_REACTOR_IMPL
/* Define to function that is equivalent to wcscasecmp() */
#undef ACE_WCSCASECMP_EQUIVALENT
/* Define to function that is equivalent to wcsdup() */
#undef ACE_WCSDUP_EQUIVALENT
/* Define to function that is equivalent to wcsncasecmp() */
#undef ACE_WCSNCASECMP_EQUIVALENT
/* Configure for use on Win32 */
#undef ACE_WIN32
/* A parameter list indicating the version of WinSock (e.g., "1, 1" is version
1.1). */
#undef ACE_WSOCK_VERSION
/* Configure for use on AIX */
#undef AIX
/* Define to 1 if the `closedir' function returns void instead of `int'. */
#undef CLOSEDIR_VOID
/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
systems. This function is required for `alloca.c' support on those systems.
*/
#undef CRAY_STACKSEG_END
/* GNU Win32 environement */
#undef CYGWIN32
/* Define to 1 if using `alloca.c'. */
#undef C_ALLOCA
/* */
#undef DEC_CXX
/* Configure for use on Digital Unix */
#undef DIGITAL_UNIX
/* Define to 1 if you have `alloca', as a function or macro. */
#undef HAVE_ALLOCA
/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
*/
#undef HAVE_ALLOCA_H
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
#undef HAVE_DIRENT_H
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have the <fstream> header file. */
#undef HAVE_FSTREAM
/* Define to 1 if you have the <fstream.h> header file. */
#undef HAVE_FSTREAM_H
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the <iomanip> header file. */
#undef HAVE_IOMANIP
/* Define to 1 if you have the <ios> header file. */
#undef HAVE_IOS
/* Define to 1 if you have the <iostream> header file. */
#undef HAVE_IOSTREAM
/* Define to 1 if you have the <iostream.h> header file. */
#undef HAVE_IOSTREAM_H
/* Define to 1 if you have the <istream> header file. */
#undef HAVE_ISTREAM
/* Define to 1 if you have the `dld' library (-ldld). */
#undef HAVE_LIBDLD
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
#undef HAVE_NDIR_H
/* Define to 1 if you have the <ostream> header file. */
#undef HAVE_OSTREAM
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the <streambuf> header file. */
#undef HAVE_STREAMBUF
/* Define to 1 if you have the `strftime' function. */
#undef HAVE_STRFTIME
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
*/
#undef HAVE_SYS_DIR_H
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
*/
#undef HAVE_SYS_NDIR_H
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
#undef HAVE_SYS_WAIT_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Configure for use on HP-UX */
#undef HPUX
/* Configure for use on HP-UX 10 */
#undef HPUX_10
/* Configure for use on HP-UX 11 */
#undef HPUX_11
/* */
#undef IP_ADD_MEMBERSHIP
/* */
#undef IP_DROP_MEMBERSHIP
/* Configure for use on Irix 5 */
#undef IRIX5
/* Configure for use on Irix 6 */
#undef IRIX6
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
/* Define to the full name of this package. */
#undef PACKAGE_NAME
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* Maximum thread priority */
#undef PTHREAD_MAX_PRIORITY
/* Minimum thread priority */
#undef PTHREAD_MIN_PRIORITY
/* */
#undef PTHREAD_STACK_MIN
/* */
#undef SCO
/* The size of `double', as computed by sizeof. */
#undef SIZEOF_DOUBLE
/* The size of `float', as computed by sizeof. */
#undef SIZEOF_FLOAT
/* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT
/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The size of `long double', as computed by sizeof. */
#undef SIZEOF_LONG_DOUBLE
/* The size of `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG
/* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT
/* The size of `signed char', as computed by sizeof. */
#undef SIZEOF_SIGNED_CHAR
/* The size of `void *', as computed by sizeof. */
#undef SIZEOF_VOID_P
/* The size of `wchar_t', as computed by sizeof. */
#undef SIZEOF_WCHAR_T
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
automatically deduced at runtime.
STACK_DIRECTION > 0 => grows toward higher addresses
STACK_DIRECTION < 0 => grows toward lower addresses
STACK_DIRECTION = 0 => direction of growth unknown */
#undef STACK_DIRECTION
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Configure for use on UnixWare */
#undef UNIXWARE
/* */
#undef UNIXWARE_2_0
/* */
#undef UNIXWARE_2_1
/* */
#undef UNIXWARE_7_1
/* Configure for use on VxWorks */
#undef VXWORKS
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */
#undef WORDS_BIGENDIAN
/* Define to 1 if the X Window System is missing or not being used. */
#undef X_DISPLAY_MISSING
/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
`char[]'. */
#undef YYTEXT_POINTER
/* Enable ACE inlining */
#undef __ACE_INLINE__
/* */
#undef __IOCTL_VERSIONED__
/* */
#undef __NO_INCLUDE_WARN__
#endif /* ACE_CONFIG_H */
// Local Variables:
// mode:C++
// End:
|