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/src | |
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/src')
-rw-r--r-- | cpp/src/Glacier/StarterI.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
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; |