diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-06-26 21:06:03 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-06-26 21:06:03 +0000 |
commit | ea66eaba7b71ee030d71b9aeb11f3442ec1d2ce5 (patch) | |
tree | 1e0f278408f71ca3eefc653dd22f54574c7b3370 /acconfig.h | |
parent | b406864a15b166629c1b22e2591b9784543adc03 (diff) | |
download | ATCD-ea66eaba7b71ee030d71b9aeb11f3442ec1d2ce5.tar.gz |
Added support/test for ACE_HAS_MEMCHR macro.
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h index 51d5b84cc84..28969dfc40b 100644 --- a/acconfig.h +++ b/acconfig.h @@ -410,6 +410,10 @@ prototype. */ #undef ACE_HAS_BROKEN_SETRLIMIT +/* 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 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. */ @@ -466,6 +470,9 @@ /* Compiler supports C++ exception handling */ #undef ACE_HAS_EXCEPTIONS +/* Platform has Fast-Light (FL) toolkit installed */ +#undef ACE_HAS_FL + /* Platform supports getpagesize() call (otherwise, ACE_PAGE_SIZE must be defined, except on Win32) */ #undef ACE_HAS_GETPAGESIZE @@ -532,6 +539,9 @@ /* Enabled malloc statistics collection. */ #undef ACE_HAS_MALLOC_STATS +/* Use native implementation of memchr(). */ +#undef ACE_HAS_MEMCHR + /* 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 |