summaryrefslogtreecommitdiff
path: root/acconfig.h
blob: 2e1d49a341b43ab838fe119f41b3e2e55d6efd9b (plain)
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
/* -*- C++ -*- */
#ifndef ACE_CONFIG_H
#define ACE_CONFIG_H

/* ACE configuration header file */

/*   @TOP@  */
/* All lines above "@TOP@" will be placed at the top of config.h.in. */

/*
  $Id$

  This file, "acconfig.h," contains additional preprocessor symbols that
  autoheader may encounter.
*/

/* Name of package */
#ifndef PACKAGE
# undef PACKAGE
#endif

/* Version of package */
#ifndef VERSION
# undef VERSION
#endif

/* Define _REENTRANT if reentrant functions should be used. */
#ifndef _REENTRANT
# undef _REENTRANT
#endif

#ifndef _POSIX_THREADS
# undef _POSIX_THREADS
#endif

#ifndef _POSIX_THREAD_SAFE_FUNCTIONS
# undef _POSIX_THREAD_SAFE_FUNCTIONS
#endif

/* Some platforms need _POSIX_PTHREAD_SEMANTICS to make some functions work */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif

/* Some platforms require _GNU_SOURCE to be defined to make some functions
   declaration "visible." */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif

/* ACE currently doesn't use these; however the configure script does */
#undef ACE_LACKS_SYSTIMES_H
#undef ACE_LACKS_UNBUFFERED_STREAMBUF
#undef ACE_HAS_STDCPP_STL_INCLUDES

#undef ACE_HAS_LIBC_H
#undef ACE_HAS_OSFCN_H
#undef ACE_HAS_NEW_NO_H
#undef ACE_HAS_NEW_H
#undef ACE_HAS_STDEXCEPT_NO_H
#undef ACE_HAS_EXCEPTION_H
#undef ACE_HAS_IOMANIP_NO_H

/* Platform provides <sys/ioctl.h> header */
#undef ACE_HAS_SYS_IOCTL_H

/*
 * Deprecated! (or soon to be?)
 */
#undef ACE_HAS_OSF1_GETTIMEOFDAY /* timezone* 2nd parameter & no prototype */
#undef ACE_HAS_LYNXOS_SIGNALS
#undef ACE_HAS_TANDEM_SIGNALS
#undef ACE_HAS_IRIX_53_SIGNALS

/*
 * TODO: These two next #defines have an #undef before them, in
 * case the variable being defined already had a value.
 * The #undefs are being picked up by configure, and are commented out!
 */
#undef ACE_THREAD_MIN_PRIORITY
#if defined (ACE_THREAD_MIN_PRIORITY)
# undef PTHREAD_MIN_PRIORITY
# define PTHREAD_MIN_PRIORITY ACE_THREAD_MIN_PRIORITY
#endif  /* #if defined (ACE_THREAD_MIN_PRIORITY) */

#undef ACE_THREAD_MAX_PRIORITY
#if defined (ACE_THREAD_MAX_PRIORITY)
# undef PTHREAD_MAX_PRIORITY
# define PTHREAD_MAX_PRIORITY ACE_THREAD_MAX_PRIORITY
#endif  /* #if defined (ACE_THREAD_MAX_PRIORITY) */

#undef PTHREAD_STACK_MIN
#undef PTHREAD_STACK_MAX

/* ///////////////////// OSSAMA'S NEW STUFF ////////////////// */
/* 
 THIS STUFF WILL REPLACE THE ABOVE OLDER STUFF AND/OR WILL BE MERGED INTO IT
*/

/* results from checks for programs */
/* results from checks for libraries */
/* results from checks for header files */
/* results from checks for typedefs */
/* results from checks for structures */
/* results from checks for variables */
/* results from checks for compiler characteristics */
/* results from checks for library functions */
/* results from checks for system services */

/* AIX specific configuration parameters */
#undef AIX
#undef _BSD
#undef _BSD_INCLUDES

/* Cray specific configuration parameters */
/*
    The following predefined macros are used within ACE ifdefs.  
    These are defined when using the Cray compilers.  _CRAYMPP
    is defined, for example, if you are running on a Cray T3E
    massively parallel machine.  Moreover, in the case of the T3E,
    _CRAYT3E will be defined.  This is used to determine the
    ACE_SIZEOF defines for primitive types.  

    _UNICOS is defined as either the major version of UNICOS being run,
    e.g. 9 or 10 on the vector machines (e.g. C90, T90, J90, YMP, ...)
    or the major+minor+level UNICOS/mk version, e.g. 2.0.3 => 203,
    being run on an MPP machine.

    Summary:

    _CRAYMPP  (defined only if running on MPP machine, e.g. T3E, UNICOS/mk)
    _CRAYT3E  (defined specifically if compiling on a Cray T3E)
    _UNICOS   (defined if running UNICOS or UNICOS/mk)

    Tested on UNICOS 10.0.0.2, UNICOS/mk 2.0.3.10

    Contributed by Doug Anderson <doug@clark.net>
*/
#undef _CRAYMPP
#undef _CRAYT3E
#undef _UNICOS

/* DG/UX specific configuration parameters */
#undef ACE_DGUX
#undef _DGUX_SOURCE
#undef _POSIX4A_DRAFT10_SOURCE
#undef _POSIX4_DRAFT_SOURCE

/* FreeBSD specific configuration parameters */
/* Nothing yet */

/* HP/UX specific configuration parameters */
#undef HPUX
#undef HPUX_10
#undef HPUX_11
#undef _HPUX_SOURCE

/* Irix specific configuration parameters */
#undef IRIX5
#undef IRIX6
#undef _BSD_TYPES
#undef _SGI_MP_SOURCE
#undef _MODERN_C_

/* Linux specific configuration parameters */
/* Nothing yet */

/* LynxOS specific configuration parameters */
#undef __NO_INCLUDE_WARN__
#undef _POSIX_THREADS_CALLS

/* M88K specific configuration parameters */
#undef m88k
#undef __m88k__

/* MVS specific configuration parameters */
/* Nothing yet */

/* NetBSD specific configuration parameters */
#undef ACE_NETBSD

/* OSF/1 and Digital Unix specific configuration parameters */
#undef DEC_CXX
#undef DIGITAL_UNIX

/* pSOS specific configuration parameters */
#undef ACE_PSOS
#undef ACE_PSOSIM
#undef ACE_PSOSTBD

/* SCO specific configuration parameters */
#undef SCO
#undef _SVID3

/* SunOS / Solaris specific configuration parameters */
/* Nothing yet */

/* Tandem specific configuration parameters */
/* Nothing yet */

/* UnixWare specific configuration parameters */
#undef UNIXWARE
#undef UNIXWARE_2_0
#undef UNIXWARE_2_1

/* VXWorks specific configuration parameters */
#undef VXWORKS

/* Win32 specific configuration parameters */
#undef ACE_WIN32

/* ACE internals */
#undef ACE_DEFAULT_BASE_ADDR
#undef ACE_DEFAULT_BASE_ADDRL
#undef ACE_DEFAULT_CLOSE_ALL_HANDLES
#undef ACE_DEFAULT_MAX_SOCKET_BUFSIZ
#undef ACE_DEFAULT_SELECT_REACTOR_SIZE
#undef ACE_MALLOC_ALIGN
#undef ACE_MAP_PRIVATE
#undef ACE_THR_PRI_FIFO_DEF
#undef ACE_TIMER_SKEW
#undef ACE_UINT64_FORMAT_SPECIFIER
#undef ACE_USE_RCSID
#undef IP_ADD_MEMBERSHIP
#undef IP_DROP_MEMBERSHIP

/* Specify sizes of given built-in types.  If a size isn't defined here,
   then ace/Basic_Types.h will attempt to deduce the size. */
/* #undef ACE_SIZEOF_CHAR */
#undef ACE_SIZEOF_SHORT
#undef ACE_SIZEOF_INT
#undef ACE_SIZEOF_LONG
#undef ACE_SIZEOF_LONG_LONG
#undef ACE_SIZEOF_VOID_P
#undef ACE_SIZEOF_FLOAT
#undef ACE_SIZEOF_DOUBLE
#undef ACE_SIZEOF_LONG_DOUBLE

/* typedef for ACE_UINT64 */
/*
   We only make the typedef if ACE_UINT64_TYPEDEF is defined and
   ACE_LACKS_LONGLONG_T isn't defined  .  Otherwise,
   let ace/Basic_Types.h do the work for us.  ACE_UINT64_TYPEDEF is
   defined during the initial configuration process if a 64 bit unsigned int
   was found.
*/
#undef ACE_UINT64_TYPEDEF
#if defined(ACE_UINT64_TYPEDEF)
  typedef ACE_UINT64_TYPEDEF ACE_UINT64;
#endif /* ACE_UINT64_TYPEDEF */

/* Enable ACE inlining */
#undef __ACE_INLINE__

/* Explicitly disable ACE inlining */
#undef ACE_NO_INLINE

/* Enable ACE_Timeprobes */
#undef ACE_COMPILE_TIMEPROBES

/* Enable use of GNU template repositories.  GNU C++ w/repo patch
   and EGCS only */
#undef ACE_HAS_GNU_REPO

/* 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

/* Platform supports new C++ style casts (dynamic_cast, static_cast,
   reinterpret_cast and const_cast) */
#undef ACE_HAS_ANSI_CASTS

/* Platform supports Asynchronous IO calls */
#undef ACE_HAS_AIO_CALLS

/* Number of TSS keys, with ACE_HAS_TSS_EMULATION _only_.  Defaults to 64.  */
#undef ACE_DEFAULT_THREAD_KEYS

/* Specify this if you don't want threads to inherit parent thread's
   ACE_Log_Msg properties. */
#undef ACE_THREADS_DONT_INHERIT_LOG_MSG

/* Compiler enforces C++ One Definition Rule */
#undef ACE_HAS_ONE_DEFINITION_RULE

/* OS has priocntl (2) */
#undef ACE_HAS_PRIOCNTL

/* Platform has the MIT pthreads APIs for timed send/recv operations */
#undef ACE_HAS_RECV_TIMEDWAIT
#undef ACE_HAS_RECVFROM_TIMEDWAIT
#undef ACE_HAS_RECVMSG_TIMEDWAIT
#undef ACE_HAS_SEND_TIMEDWAIT
#undef ACE_HAS_SENDTO_TIMEDWAIT
#undef ACE_HAS_SENDMSG_TIMEDWAIT
#undef ACE_HAS_READ_TIMEDWAIT
#undef ACE_HAS_READV_TIMEDWAIT
#undef ACE_HAS_WRITE_TIMEDWAIT
#undef ACE_HAS_WRITEV_TIMEDWAIT

/* 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

/* Platform also has __TEXT defined */
#undef ACE_HAS_TEXT_MACRO_CONFLICT

/* Platform has void (*)(...) prototype for pthread_key_create() destructor
   (e.g., LynxOS). */
#undef ACE_HAS_STDARG_THR_DEST

/* 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

/* Platform/compiler supports Win32 structural exceptions */
#undef ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS

/* Platform has BSD 4.4 sendmsg()/recvmsg() APIs. */
#undef ACE_HAS_4_4BSD_SENDMSG_RECVMSG

/* Platform has pread() and pwrite() support */
#undef ACE_HAS_P_READ_WRITE

/* Platform, such as AIX4, needs to wrap #include of sys/socket.h with
   #undef/#define of __cplusplus. */
#undef ACE_HAS_AIX_BROKEN_SOCKET_HEADER

/* 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

/* CPU is an Alpha, with the rpcc instruction to read the tick timer. */
#undef ACE_HAS_ALPHA_TIMER

/* Compiler/platform correctly calls init()/fini() for shared libraries */
#undef ACE_HAS_AUTOMATIC_INIT_FINI

/* Compiler handles explicit calling of template destructor correctly.
   See "ace/OS.h" for details. */
#undef ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR

/* Compiler/platform doesn't support namespaces (or the support is not fully
   implemented.) */
#undef ACE_HAS_BROKEN_NAMESPACES

/* Compiler has integer overflow problem with bit-shift operations. */
#undef ACE_HAS_BROKEN_BITSHIFT

/* Compiler can't handle const char * as rvalue in conditional operator. */
#undef ACE_HAS_BROKEN_CONDITIONAL_STRING_CASTS

/* Compiler can't handle calls like foo->operator T *() */
#undef ACE_HAS_BROKEN_CONVERSIONS

/* Compiler/platform uses macro for ctime (e.g., MVS) */
#undef ACE_HAS_BROKEN_CTIME

/* Earlier versions of HP/UX C++ are damned... */
#undef ACE_HAS_BROKEN_HPUX_TEMPLATES

/* Platform headers don't support <msg.h> prototypes */
#undef ACE_HAS_BROKEN_MSG_H

/* HP/UX does not wrap the mmap(2) header files with extern "C". */
#undef ACE_HAS_BROKEN_MMAP_H

/* MSVC has trouble with defining STL containers for nested structs and
   classes */
#undef ACE_HAS_BROKEN_NESTED_TEMPLATES

/* Platform has a bug with non-blocking connects (e.g., WinNT 4.0) */
#undef ACE_HAS_BROKEN_NON_BLOCKING_CONNECTS

/* Platform defines struct timespec in <sys/timers.h> */
#undef ACE_HAS_BROKEN_POSIX_TIME

/* Platform defines ctime_r, asctime_r, rand_r and getpwnam_r as macros */
#undef ACE_HAS_BROKEN_R_ROUTINES

/* OS/compiler's header files are inconsistent with libC definition of
   rand_r(). */
#undef ACE_HAS_BROKEN_RANDR

/* OS/Compiler's header files are not consistent with readv() definition. */
#undef ACE_HAS_BROKEN_READV

/* Compiler can't handle the static ACE_Addr::sap_any construct. */
#undef ACE_HAS_BROKEN_SAP_ANY

/* OS/compiler omits the const from the sendmsg() prototype. */
#undef ACE_HAS_BROKEN_SENDMSG

/* OS/compiler omits the const from the rlimit parameter in the setrlimit()
   prototype. */
#undef ACE_HAS_BROKEN_SETRLIMIT

/* Platform doesn't define _terrno() even though it should (only for TLI) */
#undef ACE_HAS_BROKEN_T_ERRNO

/* platform define struct timespec members as ts_sec and ts_nsec instead of
   tv_sec and tv_nsec.  This is highly non-portable.  Currently only
   FreeBSD 2.1.x uses it. */
#undef ACE_HAS_BROKEN_TIMESPEC_MEMBERS

/* OS/compiler omits the const from the iovec parameter in the writev()
   prototype. */
#undef ACE_HAS_BROKEN_WRITEV

/* OS header files have some problems with XTI (HP/UX 11). */
#undef ACE_HAS_BROKEN_XTI_MACROS

/* Platform has <bstring.h> (which contains bzero() prototype) */
#undef ACE_HAS_BSTRING

/* Platform has <bytesex.h>. */
#undef ACE_HAS_BYTESEX_H

/* Platform has <features.h> */
#undef ACE_HAS_FEATURES_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

/* OS/platform uses char * for sockopt, rather than const char * */
#undef ACE_HAS_CHARPTR_SOCKOPT

/* sprintf() returns char * rather than int (e.g., SunOS 4.x)  */
#undef ACE_HAS_CHARPTR_SPRINTF

/* Platform supports POSIX 1.b clock_gettime () */
#undef ACE_HAS_CLOCK_GETTIME

/* Prototypes for both signal() and struct sigaction are consistent. */
#undef ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES

/* Compiler/platform has correctly prototyped header files */
#undef ACE_HAS_CPLUSPLUS_HEADERS

/* Platform has cygwin32 socket.h */
#undef ACE_HAS_CYGWIN32_SOCKET_H

/* Platform supports operations on directories via struct dirent,
   readdir_r, etc. */
#undef ACE_HAS_DIRENT

/* For platforms, e.g., RedHat 4.2/Linux 2.0.30/Alpha, that don't declare dl*
   functions as extern "C" in dlfcn.h.*/
#undef ACE_HAS_DLFCN_H_BROKEN_EXTERN_C

/* Build ACE using the frigging PC DLL nonsense... */
#undef ACE_HAS_DLL

/* Compiler supports C++ exception handling */
#undef ACE_HAS_EXCEPTIONS

/* Platform supports getpagesize() call (otherwise, ACE_PAGE_SIZE must be
   defined, except on Win32) */
#undef ACE_HAS_GETPAGESIZE

/* Platform supports the getrusage() system call. */
#undef ACE_HAS_GETRUSAGE

/* Platform has a getrusage () prototype in sys/resource.h that differs from
   the one in ace/OS.i. */
#undef ACE_HAS_GETRUSAGE_PROTO

/* GNUC 2.7.3 mistakenly takes the template definition as the place where an
   inline function of an argument class is first used. */
#undef ACE_HAS_GNUC_BROKEN_TEMPLATE_INLINE_FUNCTIONS

/* Denotes that GNU has cstring.h as standard which redefines memchr() */
#undef ACE_HAS_GNU_CSTRING_H

/* 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

/* Compiler/platform supports 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

/* Platform supports IP multicast */
#undef ACE_HAS_IP_MULTICAST

/* Platform supports the very odd IRIX 6.2 threads... */
#undef ACE_HAS_IRIX62_THREADS

/* 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

/* 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

/* The rusage_t structure has only two fields. */
#undef ACE_HAS_LIMITED_RUSAGE_T

/* 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

/* Platform defines MAP_FAILED as a long constant. */
#undef ACE_HAS_LONG_MAP_FAILED

/* Enabled malloc statistics collection. */
#undef ACE_HAS_MALLOC_STATS

/* Avoid #including ace/streams.h in OS.h.  Users must include ace/streams.h,
   <iostream>, or <iostream.h> explicitly in their code.  Some platforms, such
   as g++/VxWorks, have trouble compiling templates and iostreams header
   because of static variables in the stream headers.  This flag will also
   avoid extra compilation and runtime overheads on some platforms. */
#undef ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION

/* 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

/* Platform supports Microsoft Foundation Classes */
#undef ACE_HAS_MFC

/* 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

/* 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's select() uses non-const timeval* (only found on Linux right
   now) */
#undef ACE_HAS_NONCONST_SELECT_TIMEVAL

/* Platform has "old" GNU compiler,  i.e. does not completely support
   standard C++. (compiling with g++ prior to version 2.8.0) */
#undef ACE_HAS_GNUG_PRE_2_8

/* Compiler/platform uses old malloc()/free() prototypes (ugh) */
#undef ACE_HAS_OLD_MALLOC

/* Uses ctime_r & asctime_r with only two parameters vs. three. */
#undef ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R

/* 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

/* Platform has Orbix CORBA implementation */
#undef ACE_HAS_ORBIX

/* Platform supports the OSF TLI timod STREAMS module */
#undef ACE_HAS_OSF_TIMOD_H

/* Platform is an Intel Pentium microprocessor. */
#undef ACE_HAS_PENTIUM

/* Platform contains <poll.h> */
#undef ACE_HAS_POLL

/* Platform supports POSIX O_NONBLOCK semantics */
#undef ACE_HAS_POSIX_NONBLOCK

/* Platform supports POSIX real-time semaphores (e.g., VxWorks and Solaris) */
#undef ACE_HAS_POSIX_SEM

/* Platform supports the POSIX struct timespec type */
#undef ACE_HAS_POSIX_TIME

/* Platform supports the /proc file system and defines tid_t
   in <sys/procfs.h> */
#undef ACE_HAS_PROC_FS

/* Platform supports PowerPC time-base register. */
#undef ACE_HAS_POWERPC_TIMER

/* Platform supports the prusage_t struct */
#undef ACE_HAS_PRUSAGE_T

/* Platform supports 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 pthread_condattr_setkind_np(). */
#undef ACE_HAS_PTHREAD_CONDATTR_SETKIND_NP

/* Platform has pthread_mutexattr_setkind_np(). */
#undef ACE_HAS_PTHREAD_MUTEXATTR_SETKIND_NP

/* pthread.h declares an enum with PTHREAD_PROCESS_PRIVATE and
   PTHREAD_PROCESS_SHARED values */
#undef ACE_HAS_PTHREAD_PROCESS_ENUM

/* Platform has pthread_sigmask() defined. */
#undef ACE_HAS_PTHREAD_SIGMASK

/* Purify'ing.  Defined on command line. */
#undef ACE_HAS_PURIFY

/* Quantify'ing.  Defined on command line. */
#undef ACE_HAS_QUANTIFY

/* 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

/* Compiler typedefs wchar with char. */
#undef ACE_HAS_WCHAR_TYPEDEFS_CHAR

/* 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 support for multi-byte character support compliant with the
   XPG4 Worldwide Portability Interface wide-character classification. */
#undef ACE_HAS_XPG4_MULTIBYTE_CHAR

/* No system support for replacing any previous mappings. */
#undef ACE_LACKS_AUTO_MMAP_REPLACEMENT

/* Compiler/platform lacks the standard C library bsearch() function  */
#undef ACE_LACKS_BSEARCH

/* Platform has ACE_HAS_4_4BSD_SENDMSG_RECVMSG but does not define
   CMSG_DATA (cmsg) macro. */
#undef ACE_LACKS_CMSG_DATA_MACRO

/* Platform has ACE_HAS_4_4BSD_SENDMSG_RECVMSG but its cmsghdr structure does
   not contain an 'unsigned char cmsg_data[0]' member.  (This may be
   'unsigned char __cmsg_data[0]' on some platforms, in which case we need
   another macro.) */
#undef ACE_LACKS_CMSG_DATA_MEMBER

/* Compiler/platform lacks the standard C library qsort() function */
#undef ACE_LACKS_QSORT

/* Platform lacks POSIX-style fcntl () */
#undef ACE_LACKS_FCNTL

/* Platform lacks fsync() */
#undef ACE_LACKS_FSYNC

/* Compiler does not support dynamic_cast.  Usually used
   with ACE_HAS_ANSI_CASTS */
#undef ACE_LACKS_RTTI

/* Platform lacks readdir_r() */
#undef ACE_LACKS_READDIR_R

/* Platform lacks seekdir() */
#undef ACE_LACKS_SEEKDIR

/* Platform lacks telldir() */
#undef ACE_LACKS_TELLDIR

/* Platform can't handle "inline" keyword correctly. */
#undef ACE_LACKS_INLINE_FUNCTIONS

/* Iostreams are not supported adequately on the given platform. */
#undef ACE_LACKS_IOSTREAM_TOTALLY

/* Platform does not support reentrant netdb functions (getprotobyname_r,
   getprotobynumber_r, gethostbyaddr_r, gethostbyname_r, getservbyname_r). */
#undef ACE_LACKS_NETDB_REENTRANT_FUNCTIONS

/* Platform supports the POSIX regular expression library */
#undef ACE_HAS_REGEX

/* Platform has special header for select(). */
#undef ACE_HAS_SELECT_H

/* For Win32: Use Select_Reactor as default implementation of Reactor instead
   of WFMO_Reactor. */
#undef ACE_USE_SELECT_REACTOR_FOR_REACTOR_IMPL

/* Compiler/platform defines a union semun for SysV shared memory */
#undef ACE_HAS_SEMUN

/* Platform has a function to set t_errno (e.g., Tandem). */
#undef ACE_HAS_SET_T_ERRNO

/* Platform has shm_open() */
#undef ACE_HAS_SHM_OPEN

/* Platform supports SVR4 extended signals */
#undef ACE_HAS_SIGINFO_T

/* Platform has bug with sigismember() (HP/UX 11). */
#undef ACE_HAS_SIGISMEMBER_BUG

/* Platform/compiler has macros for sig{empty,fill,add,del}set (e.g., SCO and
   FreeBSD) */
#undef ACE_HAS_SIG_MACROS

/* Platform supports the Win32 SignalObjectAndWait() function (WinNT 4.0 and
   beyond). */
#undef ACE_HAS_SIGNAL_OBJECT_AND_WAIT

/* Automatically restart OS system calls when EINTR occurs */
#undef ACE_HAS_SIGNAL_SAFE_OS_CALLS

/* Platform/compiler has the sigwait(2) prototype */
#undef ACE_HAS_SIGWAIT

/* Compiler/platform defines the sig_atomic_t typedef */
#undef ACE_HAS_SIG_ATOMIC_T

/* Compiler requires extern "C" functions for signals. */
#undef ACE_HAS_SIG_C_FUNC

/* Platform supports new BSD inet_addr len field. */
#undef ACE_HAS_SIN_LEN

/* OS/compiler uses size_t * rather than int * for socket lengths */
#undef ACE_HAS_SIZET_SOCKET_LEN

/* Platform requires (struct sockaddr *) for msg_name field of
   struct msghdr. */
#undef ACE_HAS_SOCKADDR_MSG_NAME

/* Compiler/platform provides the sys/sockio.h file */
#undef ACE_HAS_SOCKIO_H

/* Platform provides socklen_t type, such as Linux with glibc2. */
#undef ACE_HAS_SOCKLEN_T

/* Compiler has brain-damaged SPARCwork SunOS 4.x signal prototype... */
#undef ACE_HAS_SPARCWORKS_401_SIGNALS

/* Compiler supports the ssize_t typedef */
#undef ACE_HAS_SSIZE_T

/* Platform supports UNIX International Threads */
#undef ACE_HAS_STHREADS

/* Platform has thr_yield() */
#undef ACE_HAS_THR_YIELD

/* Platform/compiler supports Standard C++ Library */
#undef ACE_HAS_STANDARD_CPP_LIBRARY

/* Compiler/platform supports struct strbuf */
#undef ACE_HAS_STRBUF_T

/* Platform/compiler lacks strdup() (e.g., VxWorks, Chorus, WinCE) */
#undef ACE_HAS_STRDUP_EMULATION

/* Platform supports STREAMS */
#undef ACE_HAS_STREAMS

/* Platform s