summaryrefslogtreecommitdiff
path: root/deps/openssl/config/opensslconf.h
blob: 9c492032b05f769e063bbf7db8587cfc99a93515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#undef OPENSSL_LINUX
#if defined(__linux) && !defined(__ANDROID__)
# define OPENSSL_LINUX 1
#endif

#if defined(OPENSSL_NO_ASM)
# include "./opensslconf_no-asm.h"
#else
# include "./opensslconf_asm.h"
#endif

/* GOST is not included in all platform */
#ifndef OPENSSL_NO_GOST
# define OPENSSL_NO_GOST
#endif
/* HW_PADLOCK is not included in all platform */
#ifndef OPENSSL_NO_HW_PADLOCK
# define OPENSSL_NO_HW_PADLOCK
#endif
/* musl in Alpine Linux does not support getcontext etc.*/
#if defined(OPENSSL_LINUX) && !defined(__GLIBC__) && !defined(__clang__)
# define OPENSSL_NO_ASYNC
#endif