diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-04-04 13:40:23 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-04-04 13:40:23 +0000 |
commit | b0dae064e47fd7a711ec0ce381a15b69030adfff (patch) | |
tree | a9d37256f8a9f207a9419ad2d0db80784fdb1bb2 /ace/README | |
parent | 144009ea0af7ad12df59488002110106ff4551af (diff) | |
download | ATCD-b0dae064e47fd7a711ec0ce381a15b69030adfff.tar.gz |
don't use u_longlong_t if ACE_LACKS_U_LONGLONG_T is defined
Diffstat (limited to 'ace/README')
-rw-r--r-- | ace/README | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ace/README b/ace/README index 08eaf60ab60..7ec3a956fe5 100644 --- a/ace/README +++ b/ace/README @@ -15,6 +15,7 @@ autoconf or Larry Wall's metaconfig... Macro Description ----- ----------- +ACE_CAST_CONST Used to work around broken SunCC ANSI casts that require an extra const. ACE_HAS_ANSI_CASTS Platform supports new C++ style casts (dynamic_cast, static_cast, reinterpret_cast and const_cast) ACE_DEFAULT_THREAD_KEYS Number of TSS keys, with ACE_HAS_TSS_EMULATION _only_. Defaults to 64. ACE_THREADS_DONT_INHERIT_LOG_MSG Specify this if you don't want threads to inherit parent thread's ACE_Log_Msg properties. @@ -286,13 +287,14 @@ ACE_LACKS_T_ERRNO Header files lack t_errno for TLI ACE_LACKS_TCP_H Platform doesn't have netinet/tcp.h ACE_LACKS_THREAD_STACK_SIZE Platform lacks pthread_attr_setstacksize() (e.g., Linux pthreads) ACE_LACKS_TIMEDWAIT_PROTOTYPES MIT pthreads platform lacks the timedwait prototypes +ACE_LACKS_U_LONGLONG_T Platform does not have u_longlong_t typedef, and "sun" is defined. ACE_LACKS_UALARM_PROTOTYPE Platform/compiler lacks the ualarm() prototype (e.g., Solaris) ACE_LACKS_UCONTEXT_H Platform lacks the ucontext.h file ACE_LACKS_UNISTD_H Platform lacks the unistd.h file (e.g., VxWorks and Win32) ACE_LACKS_UNIX_DOMAIN_SOCKETS ACE platform has no UNIX domain sockets ACE_LACKS_UNIX_SIGNALS Platform lacks full signal support (e.g., Win32 and Chorus). ACE_LACKS_UTSNAME_T Platform lacks struct utsname (e.g., Win32 and VxWorks) -ACE_MAIN Renames "main (int, char *[])" to ace_main (int, char *[]), for platforms such as g++/VxWorks that don't allow main. Requires the use of ACE_HAS_NONSTATIC_OBJECT_MANAGER. +ACE_MAIN Renames "main (int, char *[])", for platforms such as g++/VxWorks that don't allow main. Requires the use of ACE_HAS_NONSTATIC_OBJECT_MANAGER. ACE_MT_SAFE Compile using multi-thread libraries ACE_NDEBUG Turns off debugging features ACE_NEEDS_DEV_IO_CONVERSION Necessary with some compilers |