diff options
author | Steve Huston <shuston@riverace.com> | 2000-09-22 18:34:50 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2000-09-22 18:34:50 +0000 |
commit | 4a8626e01134e4b603323baece32cdd794ad23cd (patch) | |
tree | 992b3535ba9a8c5d342592a930336a91d6dbdcc5 /ace/config-all.h | |
parent | 29d3fe6f8c4c887b57785ee72a58102cd7dab672 (diff) | |
download | ATCD-4a8626e01134e4b603323baece32cdd794ad23cd.tar.gz |
ChangeLogTag:Fri Sep 22 13:02:41 2000 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/config-all.h')
-rw-r--r-- | ace/config-all.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ace/config-all.h b/ace/config-all.h index f88992dcff9..9fe170b5c94 100644 --- a/ace/config-all.h +++ b/ace/config-all.h @@ -27,6 +27,21 @@ #endif /* ACE_LACKS_PRAGMA_ONCE */ // ============================================================================ +// Turn latest-and-greatest ACE features on/off. +// If you need to use "legacy" settings, add ACE_ONLY_LATEST_AND_GREATEST 0 +// to your config.h file. +// ============================================================================ + +#if defined (ACE_ONLY_LATEST_AND_GREATEST) && \ + (ACE_ONLY_LATEST_AND_GREATEST == 0) +# undef ACE_ONLY_LATEST_AND_GREATEST +#else +# if !defined (ACE_ONLY_LATEST_AND_GREATEST) +# define ACE_ONLY_LATEST_AND_GREATEST +# endif /* !defined (ACE_ONLY_LATEST_AND_GREATEST) */ +#endif /* ACE_ONLY_LATEST_AND_GREATEST disabled */ + +// ============================================================================ // RCSID Macros // ============================================================================ |