diff options
author | Steve Huston <shuston@riverace.com> | 1999-07-13 12:18:58 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1999-07-13 12:18:58 +0000 |
commit | 218bd942f06d061959f922c1ee4d9fa7ce698f53 (patch) | |
tree | 5fc60a869678f1e31969348bef5ab3dd82c3776f /ace/config-aix-4.2.x.h | |
parent | b38eda94db29a9c9c4cfb2f2269d1693d342dc13 (diff) | |
download | ATCD-218bd942f06d061959f922c1ee4d9fa7ce698f53.tar.gz |
Added major/minor version setting if not defined, to ease backwards compatibility
and for those who don't use the platform_macros.GNU file to build their apps.
Diffstat (limited to 'ace/config-aix-4.2.x.h')
-rw-r--r-- | ace/config-aix-4.2.x.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ace/config-aix-4.2.x.h b/ace/config-aix-4.2.x.h index 0f74d39a0c1..25672351a0c 100644 --- a/ace/config-aix-4.2.x.h +++ b/ace/config-aix-4.2.x.h @@ -1,4 +1,11 @@ /* -*- C++ -*- */ // $Id$ +#if !defined (ACE_AIX_MAJOR_VERS) +# define ACE_AIX_MAJOR_VERS 4 +#endif +#if !defined (ACE_AIX_MINOR_VERS) +# define ACE_AIX_MINOR_VERS 2 +#endif + #include "ace/config-aix-4.x.h" |