Turn audio into a shareable video. forked from nypublicradio/audiogram

opensslconf.h 590B

123456789101112131415161718192021222324
  1. #undef OPENSSL_LINUX
  2. #if defined(__linux) && !defined(__ANDROID__)
  3. # define OPENSSL_LINUX 1
  4. #endif
  5. #if defined(OPENSSL_NO_ASM)
  6. # include "./opensslconf_no-asm.h"
  7. #else
  8. # include "./opensslconf_asm.h"
  9. #endif
  10. /* GOST is not included in all platform */
  11. #ifndef OPENSSL_NO_GOST
  12. # define OPENSSL_NO_GOST
  13. #endif
  14. /* HW_PADLOCK is not included in all platform */
  15. #ifndef OPENSSL_NO_HW_PADLOCK
  16. # define OPENSSL_NO_HW_PADLOCK
  17. #endif
  18. /* musl in Alpine Linux does not support getcontext etc.*/
  19. #if defined(OPENSSL_LINUX) && !defined(__GLIBC__) && !defined(__clang__)
  20. # define OPENSSL_NO_ASYNC
  21. #endif