diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-02-25 18:23:32 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-02-25 18:23:32 +0000 |
commit | 623fec79cd0c7ac8da6ecea8cd83a102d64e28e5 (patch) | |
tree | 237f2672dea086118b3f662f06378ffe50295829 /cpp | |
parent | more portability fixes (diff) | |
download | ice-623fec79cd0c7ac8da6ecea8cd83a102d64e28e5.tar.bz2 ice-623fec79cd0c7ac8da6ecea8cd83a102d64e28e5.tar.xz ice-623fec79cd0c7ac8da6ecea8cd83a102d64e28e5.zip |
gcc 2.96 fixes
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/CHANGES | 5 | ||||
-rw-r--r-- | cpp/src/Glacier/StarterI.cpp | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/cpp/CHANGES b/cpp/CHANGES index ee871c01bd3..2f8411c9f38 100644 --- a/cpp/CHANGES +++ b/cpp/CHANGES @@ -1,3 +1,8 @@ +Changes since version 1.0.1 +--------------------------- + +- Compatibility fixes for GCC 2.96. + Changes since version 1.0.0 --------------------------- diff --git a/cpp/src/Glacier/StarterI.cpp b/cpp/src/Glacier/StarterI.cpp index 96542c6dd94..556cfec308e 100644 --- a/cpp/src/Glacier/StarterI.cpp +++ b/cpp/src/Glacier/StarterI.cpp @@ -21,6 +21,13 @@ #include <Glacier/StarterI.h> #include <fcntl.h> +// +// crypt.h is necessary on older Linux distributions +// +#ifdef __linux__ +# include <crypt.h> +#endif + using namespace std; using namespace Ice; using namespace Glacier; |