summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2016-06-10 18:27:28 +0200
committerJose <jose@zeroc.com>2016-06-10 18:27:28 +0200
commitedb9194fc3c834af3ff79c159b2e9213f876c0f8 (patch)
treea7314d683f0267e5a9f6c144f66ad57c871a522d /cpp/src/IceSSL
parentAdd NOTEST option to C++/PHP builds (diff)
downloadice-edb9194fc3c834af3ff79c159b2e9213f876c0f8.tar.bz2
ice-edb9194fc3c834af3ff79c159b2e9213f876c0f8.tar.xz
ice-edb9194fc3c834af3ff79c159b2e9213f876c0f8.zip
Fixes to support kFreeBSD
Diffstat (limited to 'cpp/src/IceSSL')
-rw-r--r--cpp/src/IceSSL/OpenSSLEngine.cpp2
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.
//