patch-src_lib_crypt_ops_crypto_openssl_mgt_c 540 B

1234567891011121314
  1. --- tor-0.4.8.10.orig/src/lib/crypt_ops/crypto_openssl_mgt.c 2023-12-08 19:49:19.000000000 +0100
  2. +++ tor-0.4.8.10/src/lib/crypt_ops/crypto_openssl_mgt.c 2024-04-07 11:39:44.453246186 +0200
  3. @@ -40,6 +40,11 @@ ENABLE_GCC_WARNING("-Wredundant-decls")
  4. #include <string.h>
  5. +#ifdef OPENSSL_NO_ENGINE
  6. +/* Android's OpenSSL seems to have removed all of its Engine support. */
  7. +#define DISABLE_ENGINES
  8. +#endif
  9. +
  10. #ifndef NEW_THREAD_API
  11. /** A number of preallocated mutexes for use by OpenSSL. */
  12. static tor_mutex_t **openssl_mutexes_ = NULL;