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 | c41c2d51bfcfdad681fadc881fa64b389179edfe (patch) | |
tree | 5fc60a869678f1e31969348bef5ab3dd82c3776f | |
parent | 2edfdda361811811554eefc306435f6c8320bc2e (diff) | |
download | ATCD-c41c2d51bfcfdad681fadc881fa64b389179edfe.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.
-rw-r--r-- | ace/config-aix-4.1.x.h | 7 | ||||
-rw-r--r-- | ace/config-aix-4.2.x.h | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/ace/config-aix-4.1.x.h b/ace/config-aix-4.1.x.h index 0f74d39a0c1..1ebd21479b8 100644 --- a/ace/config-aix-4.1.x.h +++ b/ace/config-aix-4.1.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 1 +#endif + #include "ace/config-aix-4.x.h" 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" |