diff options
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/acconfig.h b/acconfig.h index 39eaa0b896b..36c0c2c18df 100644 --- a/acconfig.h +++ b/acconfig.h @@ -225,7 +225,10 @@ #undef ACE_UINT64_TYPEDEF #if defined(ACE_UINT64_TYPEDEF) typedef ACE_UINT64_TYPEDEF ACE_UINT64; -#endif /* ACE_UINT64_TYPEDEF && !ACE_DISABLE_AUTOCONF_UINT64 */ +#endif /* ACE_UINT64_TYPEDEF */ + +/* typedef for ACE_LOFF_T */ +#undef ACE_LOFF_T_TYPEDEF /* Enable ACE inlining */ #undef __ACE_INLINE__ @@ -1039,6 +1042,16 @@ 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 + /* Platform lacks condition variables (e.g., Win32 and VxWorks) */ #undef ACE_LACKS_COND_T |