diff options
Diffstat (limited to 'src/cryptinit.hpp')
-rw-r--r-- | src/cryptinit.hpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/cryptinit.hpp b/src/cryptinit.hpp index c171c15..f165c65 100644 --- a/src/cryptinit.hpp +++ b/src/cryptinit.hpp @@ -38,8 +38,6 @@ #include <gcrypt.h> // boost thread callbacks for libgcrypt -#if defined(BOOST_HAS_PTHREADS) - static int boost_mutex_init(void **priv) { boost::mutex *lock = new boost::mutex(); @@ -71,10 +69,6 @@ static struct gcry_thread_cbs gcry_threads_boost = { GCRY_THREAD_OPTION_USER, NULL, boost_mutex_init, boost_mutex_destroy, boost_mutex_lock, boost_mutex_unlock }; -#else -#error this libgcrypt thread callbacks only work with pthreads -#endif - #define MIN_GCRYPT_VERSION "1.2.0" |