diff options
author | hasufell <hasufell@hasufell.de> | 2015-10-03 15:40:56 +0200 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2015-10-05 11:46:15 -0400 |
commit | 5974de7290be5097960a117321fc87fa8fb607d4 (patch) | |
tree | 9da81525673e5cdea27052d964a930f41f847d7b /cpp/src/IceSSL/OpenSSLEngine.cpp | |
parent | Merge branch '3.6.1-el_capitan' into 3.6 (diff) | |
download | ice-5974de7290be5097960a117321fc87fa8fb607d4.tar.bz2 ice-5974de7290be5097960a117321fc87fa8fb607d4.tar.xz ice-5974de7290be5097960a117321fc87fa8fb607d4.zip |
Fix compilation with LibreSSL
Signed-off-by: Joe George <joe@zeroc.com>
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLEngine.cpp')
-rw-r--r-- | cpp/src/IceSSL/OpenSSLEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceSSL/OpenSSLEngine.cpp b/cpp/src/IceSSL/OpenSSLEngine.cpp index 5ec9186ed6e..a5e857ca153 100644 --- a/cpp/src/IceSSL/OpenSSLEngine.cpp +++ b/cpp/src/IceSSL/OpenSSLEngine.cpp @@ -259,7 +259,7 @@ OpenSSLEngine::OpenSSLEngine(const CommunicatorPtr& communicator) : } } } -# ifndef _WIN32 +# if !defined (_WIN32) && !defined (OPENSSL_NO_EGD) // // The Entropy Gathering Daemon (EGD) is not available on Windows. // The file should be a Unix domain socket for the daemon. |