diff options
author | Jose <jose@zeroc.com> | 2016-06-10 18:27:28 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-06-10 18:27:28 +0200 |
commit | edb9194fc3c834af3ff79c159b2e9213f876c0f8 (patch) | |
tree | a7314d683f0267e5a9f6c144f66ad57c871a522d /cpp/src | |
parent | Add NOTEST option to C++/PHP builds (diff) | |
download | ice-edb9194fc3c834af3ff79c159b2e9213f876c0f8.tar.bz2 ice-edb9194fc3c834af3ff79c159b2e9213f876c0f8.tar.xz ice-edb9194fc3c834af3ff79c159b2e9213f876c0f8.zip |
Fixes to support kFreeBSD
Diffstat (limited to 'cpp/src')
-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 76c83464b54..d664fc48cd5 100644 --- a/cpp/src/IceSSL/OpenSSLEngine.cpp +++ b/cpp/src/IceSSL/OpenSSLEngine.cpp @@ -102,7 +102,7 @@ IceSSL_opensslThreadIdCallback() // On some platforms, pthread_t is a pointer to a per-thread structure. // return reinterpret_cast<unsigned long>(pthread_self()); -# elif (defined(__linux) || defined(__sun) || defined(__hpux)) || defined(_AIX) +# elif defined(__linux) || defined(__sun) || defined(__hpux) || defined(_AIX) || defined(__GLIBC__) // // On Linux, Solaris, HP-UX and AIX, pthread_t is an integer. // |