node-linux-armv7l 16.14.2 → 16.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +298 -0
- package/LICENSE +25 -0
- package/README.md +29 -31
- package/bin/node +0 -0
- package/include/node/common.gypi +5 -6
- package/include/node/config.gypi +4 -0
- package/include/node/js_native_api.h +6 -0
- package/include/node/node.h +6 -1
- package/include/node/node_version.h +2 -2
- package/include/node/openssl/asn1_asm.h +57 -0
- package/include/node/openssl/asn1_no-asm.h +59 -0
- package/include/node/openssl/asn1t_asm.h +57 -0
- package/include/node/openssl/asn1t_no-asm.h +59 -0
- package/include/node/openssl/bio_asm.h +57 -0
- package/include/node/openssl/bio_no-asm.h +59 -0
- package/include/node/openssl/bn_conf_asm.h +0 -2
- package/include/node/openssl/bn_conf_no-asm.h +0 -2
- package/include/node/openssl/cmp_asm.h +57 -0
- package/include/node/openssl/cmp_no-asm.h +59 -0
- package/include/node/openssl/cms_asm.h +57 -0
- package/include/node/openssl/cms_no-asm.h +59 -0
- package/include/node/openssl/conf_asm.h +57 -0
- package/include/node/openssl/conf_no-asm.h +59 -0
- package/include/node/openssl/configuration_asm.h +57 -0
- package/include/node/openssl/configuration_no-asm.h +59 -0
- package/include/node/openssl/crmf_asm.h +57 -0
- package/include/node/openssl/crmf_no-asm.h +59 -0
- package/include/node/openssl/crypto_asm.h +57 -0
- package/include/node/openssl/crypto_no-asm.h +59 -0
- package/include/node/openssl/ct_asm.h +57 -0
- package/include/node/openssl/ct_no-asm.h +59 -0
- package/include/node/openssl/dso_conf_asm.h +0 -2
- package/include/node/openssl/dso_conf_no-asm.h +0 -2
- package/include/node/openssl/err_asm.h +57 -0
- package/include/node/openssl/err_no-asm.h +59 -0
- package/include/node/openssl/ess_asm.h +57 -0
- package/include/node/openssl/ess_no-asm.h +59 -0
- package/include/node/openssl/fipskey_asm.h +57 -0
- package/include/node/openssl/fipskey_no-asm.h +59 -0
- package/include/node/openssl/lhash_asm.h +57 -0
- package/include/node/openssl/lhash_no-asm.h +59 -0
- package/include/node/openssl/ocsp_asm.h +57 -0
- package/include/node/openssl/ocsp_no-asm.h +59 -0
- package/include/node/openssl/opensslconf_asm.h +0 -2
- package/include/node/openssl/opensslconf_no-asm.h +0 -2
- package/include/node/openssl/opensslv_asm.h +57 -0
- package/include/node/openssl/opensslv_no-asm.h +59 -0
- package/include/node/openssl/pkcs12_asm.h +57 -0
- package/include/node/openssl/pkcs12_no-asm.h +59 -0
- package/include/node/openssl/pkcs7_asm.h +57 -0
- package/include/node/openssl/pkcs7_no-asm.h +59 -0
- package/include/node/openssl/safestack_asm.h +57 -0
- package/include/node/openssl/safestack_no-asm.h +59 -0
- package/include/node/openssl/srp_asm.h +57 -0
- package/include/node/openssl/srp_no-asm.h +59 -0
- package/include/node/openssl/ssl_asm.h +57 -0
- package/include/node/openssl/ssl_no-asm.h +59 -0
- package/include/node/openssl/ui_asm.h +57 -0
- package/include/node/openssl/ui_no-asm.h +59 -0
- package/include/node/openssl/x509_asm.h +57 -0
- package/include/node/openssl/x509_no-asm.h +59 -0
- package/include/node/openssl/x509_vfy_asm.h +57 -0
- package/include/node/openssl/x509_vfy_no-asm.h +59 -0
- package/include/node/openssl/x509v3_asm.h +57 -0
- package/include/node/openssl/x509v3_no-asm.h +59 -0
- package/package.json +1 -1
- package/share/man/man1/node.1 +9 -3
- package/include/node/openssl/archs/linux-x32/asm/crypto/include/internal/bn_conf.h +0 -28
- package/include/node/openssl/archs/linux-x32/asm/crypto/include/internal/dso_conf.h +0 -17
- package/include/node/openssl/archs/linux-x32/asm/include/openssl/opensslconf.h +0 -200
- package/include/node/openssl/archs/linux-x32/asm_avx2/crypto/include/internal/bn_conf.h +0 -28
- package/include/node/openssl/archs/linux-x32/asm_avx2/crypto/include/internal/dso_conf.h +0 -17
- package/include/node/openssl/archs/linux-x32/asm_avx2/include/openssl/opensslconf.h +0 -200
- package/include/node/openssl/archs/linux-x32/no-asm/crypto/include/internal/bn_conf.h +0 -28
- package/include/node/openssl/archs/linux-x32/no-asm/crypto/include/internal/dso_conf.h +0 -17
- package/include/node/openssl/archs/linux-x32/no-asm/include/openssl/opensslconf.h +0 -203
package/include/node/config.gypi
CHANGED
|
@@ -179,6 +179,7 @@
|
|
|
179
179
|
'lib/internal/webstreams/writablestream.js',
|
|
180
180
|
'lib/internal/webstreams/adapters.js',
|
|
181
181
|
'lib/internal/webstreams/util.js',
|
|
182
|
+
'lib/internal/webstreams/compression.js',
|
|
182
183
|
'lib/internal/webstreams/encoding.js',
|
|
183
184
|
'lib/internal/webstreams/readablestream.js',
|
|
184
185
|
'lib/internal/webstreams/queuingstrategies.js',
|
|
@@ -250,6 +251,7 @@
|
|
|
250
251
|
'lib/internal/modules/esm/assert.js',
|
|
251
252
|
'lib/internal/modules/esm/translators.js',
|
|
252
253
|
'lib/internal/modules/esm/get_format.js',
|
|
254
|
+
'lib/internal/modules/esm/fetch_module.js',
|
|
253
255
|
'lib/internal/modules/esm/module_map.js',
|
|
254
256
|
'lib/internal/modules/esm/module_job.js',
|
|
255
257
|
'lib/internal/modules/esm/handle_process_exit.js',
|
|
@@ -257,6 +259,7 @@
|
|
|
257
259
|
'lib/internal/modules/esm/create_dynamic_module.js',
|
|
258
260
|
'lib/internal/modules/esm/initialize_import_meta.js',
|
|
259
261
|
'lib/internal/modules/esm/get_source.js',
|
|
262
|
+
'lib/internal/modules/esm/formats.js',
|
|
260
263
|
'lib/internal/modules/esm/load.js',
|
|
261
264
|
'lib/internal/modules/cjs/helpers.js',
|
|
262
265
|
'lib/internal/modules/cjs/loader.js',
|
|
@@ -335,6 +338,7 @@
|
|
|
335
338
|
'target_arch': 'arm',
|
|
336
339
|
'v8_enable_31bit_smis_on_64bit_arch': 0,
|
|
337
340
|
'v8_enable_gdbjit': 0,
|
|
341
|
+
'v8_enable_hugepage': 0,
|
|
338
342
|
'v8_enable_i18n_support': 1,
|
|
339
343
|
'v8_enable_inspector': 1,
|
|
340
344
|
'v8_enable_lite_mode': 0,
|
|
@@ -93,6 +93,12 @@ NAPI_EXTERN napi_status napi_create_string_utf16(napi_env env,
|
|
|
93
93
|
NAPI_EXTERN napi_status napi_create_symbol(napi_env env,
|
|
94
94
|
napi_value description,
|
|
95
95
|
napi_value* result);
|
|
96
|
+
#ifdef NAPI_EXPERIMENTAL
|
|
97
|
+
NAPI_EXTERN napi_status node_api_symbol_for(napi_env env,
|
|
98
|
+
const char* utf8description,
|
|
99
|
+
size_t length,
|
|
100
|
+
napi_value* result);
|
|
101
|
+
#endif // NAPI_EXPERIMENTAL
|
|
96
102
|
NAPI_EXTERN napi_status napi_create_function(napi_env env,
|
|
97
103
|
const char* utf8name,
|
|
98
104
|
size_t length,
|
package/include/node/node.h
CHANGED
|
@@ -438,7 +438,12 @@ enum Flags : uint64_t {
|
|
|
438
438
|
// $HOME/.node_modules and $NODE_PATH. This is used by standalone apps that
|
|
439
439
|
// do not expect to have their behaviors changed because of globally
|
|
440
440
|
// installed modules.
|
|
441
|
-
kNoGlobalSearchPaths = 1 << 7
|
|
441
|
+
kNoGlobalSearchPaths = 1 << 7,
|
|
442
|
+
// Controls whether or not the Environment should call V8Inspector::create().
|
|
443
|
+
// This control is needed by embedders who may not want to initialize the V8
|
|
444
|
+
// inspector in situations where one has already been created,
|
|
445
|
+
// e.g. Blink's in Chromium.
|
|
446
|
+
kNoCreateInspector = 1 << 9
|
|
442
447
|
};
|
|
443
448
|
} // namespace EnvironmentFlags
|
|
444
449
|
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
#define SRC_NODE_VERSION_H_
|
|
24
24
|
|
|
25
25
|
#define NODE_MAJOR_VERSION 16
|
|
26
|
-
#define NODE_MINOR_VERSION
|
|
27
|
-
#define NODE_PATCH_VERSION
|
|
26
|
+
#define NODE_MINOR_VERSION 15
|
|
27
|
+
#define NODE_PATCH_VERSION 0
|
|
28
28
|
|
|
29
29
|
#define NODE_VERSION_IS_LTS 1
|
|
30
30
|
#define NODE_VERSION_LTS_CODENAME "Gallium"
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
#undef OPENSSL_LINUX
|
|
2
|
+
#if defined(__linux) && !defined(__ANDROID__)
|
|
3
|
+
# define OPENSSL_LINUX 1
|
|
4
|
+
#endif
|
|
5
|
+
|
|
6
|
+
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
|
+
# include "./archs/linux-elf/asm/include/openssl/asn1.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
|
+
# include "./archs/linux-x86_64/asm/include/openssl/asn1.h"
|
|
10
|
+
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
11
|
+
# include "./archs/linux-armv4/asm/include/openssl/asn1.h"
|
|
12
|
+
#elif defined(OPENSSL_LINUX) && defined(__aarch64__)
|
|
13
|
+
# include "./archs/linux-aarch64/asm/include/openssl/asn1.h"
|
|
14
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__)
|
|
15
|
+
# include "./archs/darwin-i386-cc/asm/include/openssl/asn1.h"
|
|
16
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__)
|
|
17
|
+
# include "./archs/darwin64-x86_64-cc/asm/include/openssl/asn1.h"
|
|
18
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__)
|
|
19
|
+
# include "./archs/darwin64-arm64-cc/asm/include/openssl/asn1.h"
|
|
20
|
+
#elif defined(_WIN32) && defined(_M_IX86)
|
|
21
|
+
# include "./archs/VC-WIN32/asm/include/openssl/asn1.h"
|
|
22
|
+
#elif defined(_WIN32) && defined(_M_X64)
|
|
23
|
+
# include "./archs/VC-WIN64A/asm/include/openssl/asn1.h"
|
|
24
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
|
|
25
|
+
# include "./archs/BSD-x86/asm/include/openssl/asn1.h"
|
|
26
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__)
|
|
27
|
+
# include "./archs/BSD-x86_64/asm/include/openssl/asn1.h"
|
|
28
|
+
#elif defined(__sun) && defined(__i386__)
|
|
29
|
+
# include "./archs/solaris-x86-gcc/asm/include/openssl/asn1.h"
|
|
30
|
+
#elif defined(__sun) && defined(__x86_64__)
|
|
31
|
+
# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/asn1.h"
|
|
32
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN)
|
|
33
|
+
# include "./archs/linux-ppc64le/asm/include/openssl/asn1.h"
|
|
34
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__)
|
|
35
|
+
# include "./archs/linux-ppc64/asm/include/openssl/asn1.h"
|
|
36
|
+
#elif defined(OPENSSL_LINUX) && !defined(__PPC64__) && defined(__ppc__)
|
|
37
|
+
# include "./archs/linux-ppc/asm/include/openssl/asn1.h"
|
|
38
|
+
#elif defined(_AIX) && defined(_ARCH_PPC64)
|
|
39
|
+
# include "./archs/aix64-gcc-as/asm/include/openssl/asn1.h"
|
|
40
|
+
#elif defined(_AIX) && !defined(_ARCH_PPC64) && defined(_ARCH_PPC)
|
|
41
|
+
# include "./archs/aix-gcc/asm/include/openssl/asn1.h"
|
|
42
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390x__)
|
|
43
|
+
# include "./archs/linux64-s390x/asm/include/openssl/asn1.h"
|
|
44
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390__)
|
|
45
|
+
# include "./archs/linux32-s390x/asm/include/openssl/asn1.h"
|
|
46
|
+
#else
|
|
47
|
+
# include "./archs/linux-elf/asm/include/openssl/asn1.h"
|
|
48
|
+
#endif
|
|
49
|
+
|
|
50
|
+
/* GOST is not included in all platform */
|
|
51
|
+
#ifndef OPENSSL_NO_GOST
|
|
52
|
+
# define OPENSSL_NO_GOST
|
|
53
|
+
#endif
|
|
54
|
+
/* HW_PADLOCK is not included in all platform */
|
|
55
|
+
#ifndef OPENSSL_NO_HW_PADLOCK
|
|
56
|
+
# define OPENSSL_NO_HW_PADLOCK
|
|
57
|
+
#endif
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
#undef OPENSSL_LINUX
|
|
2
|
+
#if defined(__linux) && !defined(__ANDROID__)
|
|
3
|
+
# define OPENSSL_LINUX 1
|
|
4
|
+
#endif
|
|
5
|
+
|
|
6
|
+
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
|
+
# include "./archs/linux-elf/no-asm/include/openssl/asn1.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
|
+
# include "./archs/linux-x86_64/no-asm/include/openssl/asn1.h"
|
|
10
|
+
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
11
|
+
# include "./archs/linux-armv4/no-asm/include/openssl/asn1.h"
|
|
12
|
+
#elif defined(OPENSSL_LINUX) && defined(__aarch64__)
|
|
13
|
+
# include "./archs/linux-aarch64/no-asm/include/openssl/asn1.h"
|
|
14
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__)
|
|
15
|
+
# include "./archs/darwin-i386-cc/no-asm/include/openssl/asn1.h"
|
|
16
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__)
|
|
17
|
+
# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/asn1.h"
|
|
18
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__)
|
|
19
|
+
# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/asn1.h"
|
|
20
|
+
#elif defined(_WIN32) && defined(_M_IX86)
|
|
21
|
+
# include "./archs/VC-WIN32/no-asm/include/openssl/asn1.h"
|
|
22
|
+
#elif defined(_WIN32) && defined(_M_X64)
|
|
23
|
+
# include "./archs/VC-WIN64A/no-asm/include/openssl/asn1.h"
|
|
24
|
+
#elif defined(_WIN32) && defined(_M_ARM64)
|
|
25
|
+
# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/asn1.h"
|
|
26
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
|
|
27
|
+
# include "./archs/BSD-x86/no-asm/include/openssl/asn1.h"
|
|
28
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__)
|
|
29
|
+
# include "./archs/BSD-x86_64/no-asm/include/openssl/asn1.h"
|
|
30
|
+
#elif defined(__sun) && defined(__i386__)
|
|
31
|
+
# include "./archs/solaris-x86-gcc/no-asm/include/openssl/asn1.h"
|
|
32
|
+
#elif defined(__sun) && defined(__x86_64__)
|
|
33
|
+
# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/asn1.h"
|
|
34
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN)
|
|
35
|
+
# include "./archs/linux-ppc64le/no-asm/include/openssl/asn1.h"
|
|
36
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__)
|
|
37
|
+
# include "./archs/linux-ppc64/no-asm/include/openssl/asn1.h"
|
|
38
|
+
#elif defined(OPENSSL_LINUX) && !defined(__PPC64__) && defined(__ppc__)
|
|
39
|
+
# include "./archs/linux-ppc/no-asm/include/openssl/asn1.h"
|
|
40
|
+
#elif defined(_AIX) && defined(_ARCH_PPC64)
|
|
41
|
+
# include "./archs/aix64-gcc-as/no-asm/include/openssl/asn1.h"
|
|
42
|
+
#elif defined(_AIX) && !defined(_ARCH_PPC64) && defined(_ARCH_PPC)
|
|
43
|
+
# include "./archs/aix-gcc/no-asm/include/openssl/asn1.h"
|
|
44
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390x__)
|
|
45
|
+
# include "./archs/linux64-s390x/no-asm/include/openssl/asn1.h"
|
|
46
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390__)
|
|
47
|
+
# include "./archs/linux32-s390x/no-asm/include/openssl/asn1.h"
|
|
48
|
+
#else
|
|
49
|
+
# include "./archs/linux-elf/no-asm/include/openssl/asn1.h"
|
|
50
|
+
#endif
|
|
51
|
+
|
|
52
|
+
/* GOST is not included in all platform */
|
|
53
|
+
#ifndef OPENSSL_NO_GOST
|
|
54
|
+
# define OPENSSL_NO_GOST
|
|
55
|
+
#endif
|
|
56
|
+
/* HW_PADLOCK is not included in all platform */
|
|
57
|
+
#ifndef OPENSSL_NO_HW_PADLOCK
|
|
58
|
+
# define OPENSSL_NO_HW_PADLOCK
|
|
59
|
+
#endif
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
#undef OPENSSL_LINUX
|
|
2
|
+
#if defined(__linux) && !defined(__ANDROID__)
|
|
3
|
+
# define OPENSSL_LINUX 1
|
|
4
|
+
#endif
|
|
5
|
+
|
|
6
|
+
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
|
+
# include "./archs/linux-elf/asm/include/openssl/asn1t.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
|
+
# include "./archs/linux-x86_64/asm/include/openssl/asn1t.h"
|
|
10
|
+
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
11
|
+
# include "./archs/linux-armv4/asm/include/openssl/asn1t.h"
|
|
12
|
+
#elif defined(OPENSSL_LINUX) && defined(__aarch64__)
|
|
13
|
+
# include "./archs/linux-aarch64/asm/include/openssl/asn1t.h"
|
|
14
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__)
|
|
15
|
+
# include "./archs/darwin-i386-cc/asm/include/openssl/asn1t.h"
|
|
16
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__)
|
|
17
|
+
# include "./archs/darwin64-x86_64-cc/asm/include/openssl/asn1t.h"
|
|
18
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__)
|
|
19
|
+
# include "./archs/darwin64-arm64-cc/asm/include/openssl/asn1t.h"
|
|
20
|
+
#elif defined(_WIN32) && defined(_M_IX86)
|
|
21
|
+
# include "./archs/VC-WIN32/asm/include/openssl/asn1t.h"
|
|
22
|
+
#elif defined(_WIN32) && defined(_M_X64)
|
|
23
|
+
# include "./archs/VC-WIN64A/asm/include/openssl/asn1t.h"
|
|
24
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
|
|
25
|
+
# include "./archs/BSD-x86/asm/include/openssl/asn1t.h"
|
|
26
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__)
|
|
27
|
+
# include "./archs/BSD-x86_64/asm/include/openssl/asn1t.h"
|
|
28
|
+
#elif defined(__sun) && defined(__i386__)
|
|
29
|
+
# include "./archs/solaris-x86-gcc/asm/include/openssl/asn1t.h"
|
|
30
|
+
#elif defined(__sun) && defined(__x86_64__)
|
|
31
|
+
# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/asn1t.h"
|
|
32
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN)
|
|
33
|
+
# include "./archs/linux-ppc64le/asm/include/openssl/asn1t.h"
|
|
34
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__)
|
|
35
|
+
# include "./archs/linux-ppc64/asm/include/openssl/asn1t.h"
|
|
36
|
+
#elif defined(OPENSSL_LINUX) && !defined(__PPC64__) && defined(__ppc__)
|
|
37
|
+
# include "./archs/linux-ppc/asm/include/openssl/asn1t.h"
|
|
38
|
+
#elif defined(_AIX) && defined(_ARCH_PPC64)
|
|
39
|
+
# include "./archs/aix64-gcc-as/asm/include/openssl/asn1t.h"
|
|
40
|
+
#elif defined(_AIX) && !defined(_ARCH_PPC64) && defined(_ARCH_PPC)
|
|
41
|
+
# include "./archs/aix-gcc/asm/include/openssl/asn1t.h"
|
|
42
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390x__)
|
|
43
|
+
# include "./archs/linux64-s390x/asm/include/openssl/asn1t.h"
|
|
44
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390__)
|
|
45
|
+
# include "./archs/linux32-s390x/asm/include/openssl/asn1t.h"
|
|
46
|
+
#else
|
|
47
|
+
# include "./archs/linux-elf/asm/include/openssl/asn1t.h"
|
|
48
|
+
#endif
|
|
49
|
+
|
|
50
|
+
/* GOST is not included in all platform */
|
|
51
|
+
#ifndef OPENSSL_NO_GOST
|
|
52
|
+
# define OPENSSL_NO_GOST
|
|
53
|
+
#endif
|
|
54
|
+
/* HW_PADLOCK is not included in all platform */
|
|
55
|
+
#ifndef OPENSSL_NO_HW_PADLOCK
|
|
56
|
+
# define OPENSSL_NO_HW_PADLOCK
|
|
57
|
+
#endif
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
#undef OPENSSL_LINUX
|
|
2
|
+
#if defined(__linux) && !defined(__ANDROID__)
|
|
3
|
+
# define OPENSSL_LINUX 1
|
|
4
|
+
#endif
|
|
5
|
+
|
|
6
|
+
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
|
+
# include "./archs/linux-elf/no-asm/include/openssl/asn1t.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
|
+
# include "./archs/linux-x86_64/no-asm/include/openssl/asn1t.h"
|
|
10
|
+
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
11
|
+
# include "./archs/linux-armv4/no-asm/include/openssl/asn1t.h"
|
|
12
|
+
#elif defined(OPENSSL_LINUX) && defined(__aarch64__)
|
|
13
|
+
# include "./archs/linux-aarch64/no-asm/include/openssl/asn1t.h"
|
|
14
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__)
|
|
15
|
+
# include "./archs/darwin-i386-cc/no-asm/include/openssl/asn1t.h"
|
|
16
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__)
|
|
17
|
+
# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/asn1t.h"
|
|
18
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__)
|
|
19
|
+
# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/asn1t.h"
|
|
20
|
+
#elif defined(_WIN32) && defined(_M_IX86)
|
|
21
|
+
# include "./archs/VC-WIN32/no-asm/include/openssl/asn1t.h"
|
|
22
|
+
#elif defined(_WIN32) && defined(_M_X64)
|
|
23
|
+
# include "./archs/VC-WIN64A/no-asm/include/openssl/asn1t.h"
|
|
24
|
+
#elif defined(_WIN32) && defined(_M_ARM64)
|
|
25
|
+
# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/asn1t.h"
|
|
26
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
|
|
27
|
+
# include "./archs/BSD-x86/no-asm/include/openssl/asn1t.h"
|
|
28
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__)
|
|
29
|
+
# include "./archs/BSD-x86_64/no-asm/include/openssl/asn1t.h"
|
|
30
|
+
#elif defined(__sun) && defined(__i386__)
|
|
31
|
+
# include "./archs/solaris-x86-gcc/no-asm/include/openssl/asn1t.h"
|
|
32
|
+
#elif defined(__sun) && defined(__x86_64__)
|
|
33
|
+
# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/asn1t.h"
|
|
34
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN)
|
|
35
|
+
# include "./archs/linux-ppc64le/no-asm/include/openssl/asn1t.h"
|
|
36
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__)
|
|
37
|
+
# include "./archs/linux-ppc64/no-asm/include/openssl/asn1t.h"
|
|
38
|
+
#elif defined(OPENSSL_LINUX) && !defined(__PPC64__) && defined(__ppc__)
|
|
39
|
+
# include "./archs/linux-ppc/no-asm/include/openssl/asn1t.h"
|
|
40
|
+
#elif defined(_AIX) && defined(_ARCH_PPC64)
|
|
41
|
+
# include "./archs/aix64-gcc-as/no-asm/include/openssl/asn1t.h"
|
|
42
|
+
#elif defined(_AIX) && !defined(_ARCH_PPC64) && defined(_ARCH_PPC)
|
|
43
|
+
# include "./archs/aix-gcc/no-asm/include/openssl/asn1t.h"
|
|
44
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390x__)
|
|
45
|
+
# include "./archs/linux64-s390x/no-asm/include/openssl/asn1t.h"
|
|
46
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390__)
|
|
47
|
+
# include "./archs/linux32-s390x/no-asm/include/openssl/asn1t.h"
|
|
48
|
+
#else
|
|
49
|
+
# include "./archs/linux-elf/no-asm/include/openssl/asn1t.h"
|
|
50
|
+
#endif
|
|
51
|
+
|
|
52
|
+
/* GOST is not included in all platform */
|
|
53
|
+
#ifndef OPENSSL_NO_GOST
|
|
54
|
+
# define OPENSSL_NO_GOST
|
|
55
|
+
#endif
|
|
56
|
+
/* HW_PADLOCK is not included in all platform */
|
|
57
|
+
#ifndef OPENSSL_NO_HW_PADLOCK
|
|
58
|
+
# define OPENSSL_NO_HW_PADLOCK
|
|
59
|
+
#endif
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
#undef OPENSSL_LINUX
|
|
2
|
+
#if defined(__linux) && !defined(__ANDROID__)
|
|
3
|
+
# define OPENSSL_LINUX 1
|
|
4
|
+
#endif
|
|
5
|
+
|
|
6
|
+
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
|
+
# include "./archs/linux-elf/asm/include/openssl/bio.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
|
+
# include "./archs/linux-x86_64/asm/include/openssl/bio.h"
|
|
10
|
+
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
11
|
+
# include "./archs/linux-armv4/asm/include/openssl/bio.h"
|
|
12
|
+
#elif defined(OPENSSL_LINUX) && defined(__aarch64__)
|
|
13
|
+
# include "./archs/linux-aarch64/asm/include/openssl/bio.h"
|
|
14
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__)
|
|
15
|
+
# include "./archs/darwin-i386-cc/asm/include/openssl/bio.h"
|
|
16
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__)
|
|
17
|
+
# include "./archs/darwin64-x86_64-cc/asm/include/openssl/bio.h"
|
|
18
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__)
|
|
19
|
+
# include "./archs/darwin64-arm64-cc/asm/include/openssl/bio.h"
|
|
20
|
+
#elif defined(_WIN32) && defined(_M_IX86)
|
|
21
|
+
# include "./archs/VC-WIN32/asm/include/openssl/bio.h"
|
|
22
|
+
#elif defined(_WIN32) && defined(_M_X64)
|
|
23
|
+
# include "./archs/VC-WIN64A/asm/include/openssl/bio.h"
|
|
24
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
|
|
25
|
+
# include "./archs/BSD-x86/asm/include/openssl/bio.h"
|
|
26
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__)
|
|
27
|
+
# include "./archs/BSD-x86_64/asm/include/openssl/bio.h"
|
|
28
|
+
#elif defined(__sun) && defined(__i386__)
|
|
29
|
+
# include "./archs/solaris-x86-gcc/asm/include/openssl/bio.h"
|
|
30
|
+
#elif defined(__sun) && defined(__x86_64__)
|
|
31
|
+
# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/bio.h"
|
|
32
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN)
|
|
33
|
+
# include "./archs/linux-ppc64le/asm/include/openssl/bio.h"
|
|
34
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__)
|
|
35
|
+
# include "./archs/linux-ppc64/asm/include/openssl/bio.h"
|
|
36
|
+
#elif defined(OPENSSL_LINUX) && !defined(__PPC64__) && defined(__ppc__)
|
|
37
|
+
# include "./archs/linux-ppc/asm/include/openssl/bio.h"
|
|
38
|
+
#elif defined(_AIX) && defined(_ARCH_PPC64)
|
|
39
|
+
# include "./archs/aix64-gcc-as/asm/include/openssl/bio.h"
|
|
40
|
+
#elif defined(_AIX) && !defined(_ARCH_PPC64) && defined(_ARCH_PPC)
|
|
41
|
+
# include "./archs/aix-gcc/asm/include/openssl/bio.h"
|
|
42
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390x__)
|
|
43
|
+
# include "./archs/linux64-s390x/asm/include/openssl/bio.h"
|
|
44
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390__)
|
|
45
|
+
# include "./archs/linux32-s390x/asm/include/openssl/bio.h"
|
|
46
|
+
#else
|
|
47
|
+
# include "./archs/linux-elf/asm/include/openssl/bio.h"
|
|
48
|
+
#endif
|
|
49
|
+
|
|
50
|
+
/* GOST is not included in all platform */
|
|
51
|
+
#ifndef OPENSSL_NO_GOST
|
|
52
|
+
# define OPENSSL_NO_GOST
|
|
53
|
+
#endif
|
|
54
|
+
/* HW_PADLOCK is not included in all platform */
|
|
55
|
+
#ifndef OPENSSL_NO_HW_PADLOCK
|
|
56
|
+
# define OPENSSL_NO_HW_PADLOCK
|
|
57
|
+
#endif
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
#undef OPENSSL_LINUX
|
|
2
|
+
#if defined(__linux) && !defined(__ANDROID__)
|
|
3
|
+
# define OPENSSL_LINUX 1
|
|
4
|
+
#endif
|
|
5
|
+
|
|
6
|
+
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
|
+
# include "./archs/linux-elf/no-asm/include/openssl/bio.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
|
+
# include "./archs/linux-x86_64/no-asm/include/openssl/bio.h"
|
|
10
|
+
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
11
|
+
# include "./archs/linux-armv4/no-asm/include/openssl/bio.h"
|
|
12
|
+
#elif defined(OPENSSL_LINUX) && defined(__aarch64__)
|
|
13
|
+
# include "./archs/linux-aarch64/no-asm/include/openssl/bio.h"
|
|
14
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__)
|
|
15
|
+
# include "./archs/darwin-i386-cc/no-asm/include/openssl/bio.h"
|
|
16
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__)
|
|
17
|
+
# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/bio.h"
|
|
18
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__)
|
|
19
|
+
# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/bio.h"
|
|
20
|
+
#elif defined(_WIN32) && defined(_M_IX86)
|
|
21
|
+
# include "./archs/VC-WIN32/no-asm/include/openssl/bio.h"
|
|
22
|
+
#elif defined(_WIN32) && defined(_M_X64)
|
|
23
|
+
# include "./archs/VC-WIN64A/no-asm/include/openssl/bio.h"
|
|
24
|
+
#elif defined(_WIN32) && defined(_M_ARM64)
|
|
25
|
+
# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/bio.h"
|
|
26
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
|
|
27
|
+
# include "./archs/BSD-x86/no-asm/include/openssl/bio.h"
|
|
28
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__)
|
|
29
|
+
# include "./archs/BSD-x86_64/no-asm/include/openssl/bio.h"
|
|
30
|
+
#elif defined(__sun) && defined(__i386__)
|
|
31
|
+
# include "./archs/solaris-x86-gcc/no-asm/include/openssl/bio.h"
|
|
32
|
+
#elif defined(__sun) && defined(__x86_64__)
|
|
33
|
+
# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/bio.h"
|
|
34
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN)
|
|
35
|
+
# include "./archs/linux-ppc64le/no-asm/include/openssl/bio.h"
|
|
36
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__)
|
|
37
|
+
# include "./archs/linux-ppc64/no-asm/include/openssl/bio.h"
|
|
38
|
+
#elif defined(OPENSSL_LINUX) && !defined(__PPC64__) && defined(__ppc__)
|
|
39
|
+
# include "./archs/linux-ppc/no-asm/include/openssl/bio.h"
|
|
40
|
+
#elif defined(_AIX) && defined(_ARCH_PPC64)
|
|
41
|
+
# include "./archs/aix64-gcc-as/no-asm/include/openssl/bio.h"
|
|
42
|
+
#elif defined(_AIX) && !defined(_ARCH_PPC64) && defined(_ARCH_PPC)
|
|
43
|
+
# include "./archs/aix-gcc/no-asm/include/openssl/bio.h"
|
|
44
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390x__)
|
|
45
|
+
# include "./archs/linux64-s390x/no-asm/include/openssl/bio.h"
|
|
46
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390__)
|
|
47
|
+
# include "./archs/linux32-s390x/no-asm/include/openssl/bio.h"
|
|
48
|
+
#else
|
|
49
|
+
# include "./archs/linux-elf/no-asm/include/openssl/bio.h"
|
|
50
|
+
#endif
|
|
51
|
+
|
|
52
|
+
/* GOST is not included in all platform */
|
|
53
|
+
#ifndef OPENSSL_NO_GOST
|
|
54
|
+
# define OPENSSL_NO_GOST
|
|
55
|
+
#endif
|
|
56
|
+
/* HW_PADLOCK is not included in all platform */
|
|
57
|
+
#ifndef OPENSSL_NO_HW_PADLOCK
|
|
58
|
+
# define OPENSSL_NO_HW_PADLOCK
|
|
59
|
+
#endif
|
|
@@ -5,8 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/asm/crypto/include/internal/bn_conf.h"
|
|
8
|
-
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
-
# include "./archs/linux-x32/asm/crypto/include/internal/bn_conf.h"
|
|
10
8
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
11
9
|
# include "./archs/linux-x86_64/asm/crypto/include/internal/bn_conf.h"
|
|
12
10
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -5,8 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
7
|
# include "./archs/linux-elf/no-asm/crypto/include/internal/bn_conf.h"
|
|
8
|
-
#elif defined(OPENSSL_LINUX) && defined(__ILP32__)
|
|
9
|
-
# include "./archs/linux-x32/no-asm/crypto/include/internal/bn_conf.h"
|
|
10
8
|
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
11
9
|
# include "./archs/linux-x86_64/no-asm/crypto/include/internal/bn_conf.h"
|
|
12
10
|
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
#undef OPENSSL_LINUX
|
|
2
|
+
#if defined(__linux) && !defined(__ANDROID__)
|
|
3
|
+
# define OPENSSL_LINUX 1
|
|
4
|
+
#endif
|
|
5
|
+
|
|
6
|
+
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
|
+
# include "./archs/linux-elf/asm/include/openssl/cmp.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
|
+
# include "./archs/linux-x86_64/asm/include/openssl/cmp.h"
|
|
10
|
+
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
11
|
+
# include "./archs/linux-armv4/asm/include/openssl/cmp.h"
|
|
12
|
+
#elif defined(OPENSSL_LINUX) && defined(__aarch64__)
|
|
13
|
+
# include "./archs/linux-aarch64/asm/include/openssl/cmp.h"
|
|
14
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__)
|
|
15
|
+
# include "./archs/darwin-i386-cc/asm/include/openssl/cmp.h"
|
|
16
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__)
|
|
17
|
+
# include "./archs/darwin64-x86_64-cc/asm/include/openssl/cmp.h"
|
|
18
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__)
|
|
19
|
+
# include "./archs/darwin64-arm64-cc/asm/include/openssl/cmp.h"
|
|
20
|
+
#elif defined(_WIN32) && defined(_M_IX86)
|
|
21
|
+
# include "./archs/VC-WIN32/asm/include/openssl/cmp.h"
|
|
22
|
+
#elif defined(_WIN32) && defined(_M_X64)
|
|
23
|
+
# include "./archs/VC-WIN64A/asm/include/openssl/cmp.h"
|
|
24
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
|
|
25
|
+
# include "./archs/BSD-x86/asm/include/openssl/cmp.h"
|
|
26
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__)
|
|
27
|
+
# include "./archs/BSD-x86_64/asm/include/openssl/cmp.h"
|
|
28
|
+
#elif defined(__sun) && defined(__i386__)
|
|
29
|
+
# include "./archs/solaris-x86-gcc/asm/include/openssl/cmp.h"
|
|
30
|
+
#elif defined(__sun) && defined(__x86_64__)
|
|
31
|
+
# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/cmp.h"
|
|
32
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN)
|
|
33
|
+
# include "./archs/linux-ppc64le/asm/include/openssl/cmp.h"
|
|
34
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__)
|
|
35
|
+
# include "./archs/linux-ppc64/asm/include/openssl/cmp.h"
|
|
36
|
+
#elif defined(OPENSSL_LINUX) && !defined(__PPC64__) && defined(__ppc__)
|
|
37
|
+
# include "./archs/linux-ppc/asm/include/openssl/cmp.h"
|
|
38
|
+
#elif defined(_AIX) && defined(_ARCH_PPC64)
|
|
39
|
+
# include "./archs/aix64-gcc-as/asm/include/openssl/cmp.h"
|
|
40
|
+
#elif defined(_AIX) && !defined(_ARCH_PPC64) && defined(_ARCH_PPC)
|
|
41
|
+
# include "./archs/aix-gcc/asm/include/openssl/cmp.h"
|
|
42
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390x__)
|
|
43
|
+
# include "./archs/linux64-s390x/asm/include/openssl/cmp.h"
|
|
44
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390__)
|
|
45
|
+
# include "./archs/linux32-s390x/asm/include/openssl/cmp.h"
|
|
46
|
+
#else
|
|
47
|
+
# include "./archs/linux-elf/asm/include/openssl/cmp.h"
|
|
48
|
+
#endif
|
|
49
|
+
|
|
50
|
+
/* GOST is not included in all platform */
|
|
51
|
+
#ifndef OPENSSL_NO_GOST
|
|
52
|
+
# define OPENSSL_NO_GOST
|
|
53
|
+
#endif
|
|
54
|
+
/* HW_PADLOCK is not included in all platform */
|
|
55
|
+
#ifndef OPENSSL_NO_HW_PADLOCK
|
|
56
|
+
# define OPENSSL_NO_HW_PADLOCK
|
|
57
|
+
#endif
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
#undef OPENSSL_LINUX
|
|
2
|
+
#if defined(__linux) && !defined(__ANDROID__)
|
|
3
|
+
# define OPENSSL_LINUX 1
|
|
4
|
+
#endif
|
|
5
|
+
|
|
6
|
+
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
|
+
# include "./archs/linux-elf/no-asm/include/openssl/cmp.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
|
+
# include "./archs/linux-x86_64/no-asm/include/openssl/cmp.h"
|
|
10
|
+
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
11
|
+
# include "./archs/linux-armv4/no-asm/include/openssl/cmp.h"
|
|
12
|
+
#elif defined(OPENSSL_LINUX) && defined(__aarch64__)
|
|
13
|
+
# include "./archs/linux-aarch64/no-asm/include/openssl/cmp.h"
|
|
14
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__)
|
|
15
|
+
# include "./archs/darwin-i386-cc/no-asm/include/openssl/cmp.h"
|
|
16
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__)
|
|
17
|
+
# include "./archs/darwin64-x86_64-cc/no-asm/include/openssl/cmp.h"
|
|
18
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__)
|
|
19
|
+
# include "./archs/darwin64-arm64-cc/no-asm/include/openssl/cmp.h"
|
|
20
|
+
#elif defined(_WIN32) && defined(_M_IX86)
|
|
21
|
+
# include "./archs/VC-WIN32/no-asm/include/openssl/cmp.h"
|
|
22
|
+
#elif defined(_WIN32) && defined(_M_X64)
|
|
23
|
+
# include "./archs/VC-WIN64A/no-asm/include/openssl/cmp.h"
|
|
24
|
+
#elif defined(_WIN32) && defined(_M_ARM64)
|
|
25
|
+
# include "./archs/VC-WIN64-ARM/no-asm/include/openssl/cmp.h"
|
|
26
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
|
|
27
|
+
# include "./archs/BSD-x86/no-asm/include/openssl/cmp.h"
|
|
28
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__)
|
|
29
|
+
# include "./archs/BSD-x86_64/no-asm/include/openssl/cmp.h"
|
|
30
|
+
#elif defined(__sun) && defined(__i386__)
|
|
31
|
+
# include "./archs/solaris-x86-gcc/no-asm/include/openssl/cmp.h"
|
|
32
|
+
#elif defined(__sun) && defined(__x86_64__)
|
|
33
|
+
# include "./archs/solaris64-x86_64-gcc/no-asm/include/openssl/cmp.h"
|
|
34
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN)
|
|
35
|
+
# include "./archs/linux-ppc64le/no-asm/include/openssl/cmp.h"
|
|
36
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__)
|
|
37
|
+
# include "./archs/linux-ppc64/no-asm/include/openssl/cmp.h"
|
|
38
|
+
#elif defined(OPENSSL_LINUX) && !defined(__PPC64__) && defined(__ppc__)
|
|
39
|
+
# include "./archs/linux-ppc/no-asm/include/openssl/cmp.h"
|
|
40
|
+
#elif defined(_AIX) && defined(_ARCH_PPC64)
|
|
41
|
+
# include "./archs/aix64-gcc-as/no-asm/include/openssl/cmp.h"
|
|
42
|
+
#elif defined(_AIX) && !defined(_ARCH_PPC64) && defined(_ARCH_PPC)
|
|
43
|
+
# include "./archs/aix-gcc/no-asm/include/openssl/cmp.h"
|
|
44
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390x__)
|
|
45
|
+
# include "./archs/linux64-s390x/no-asm/include/openssl/cmp.h"
|
|
46
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390__)
|
|
47
|
+
# include "./archs/linux32-s390x/no-asm/include/openssl/cmp.h"
|
|
48
|
+
#else
|
|
49
|
+
# include "./archs/linux-elf/no-asm/include/openssl/cmp.h"
|
|
50
|
+
#endif
|
|
51
|
+
|
|
52
|
+
/* GOST is not included in all platform */
|
|
53
|
+
#ifndef OPENSSL_NO_GOST
|
|
54
|
+
# define OPENSSL_NO_GOST
|
|
55
|
+
#endif
|
|
56
|
+
/* HW_PADLOCK is not included in all platform */
|
|
57
|
+
#ifndef OPENSSL_NO_HW_PADLOCK
|
|
58
|
+
# define OPENSSL_NO_HW_PADLOCK
|
|
59
|
+
#endif
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
#undef OPENSSL_LINUX
|
|
2
|
+
#if defined(__linux) && !defined(__ANDROID__)
|
|
3
|
+
# define OPENSSL_LINUX 1
|
|
4
|
+
#endif
|
|
5
|
+
|
|
6
|
+
#if defined(OPENSSL_LINUX) && defined(__i386__)
|
|
7
|
+
# include "./archs/linux-elf/asm/include/openssl/cms.h"
|
|
8
|
+
#elif defined(OPENSSL_LINUX) && defined(__x86_64__)
|
|
9
|
+
# include "./archs/linux-x86_64/asm/include/openssl/cms.h"
|
|
10
|
+
#elif defined(OPENSSL_LINUX) && defined(__arm__)
|
|
11
|
+
# include "./archs/linux-armv4/asm/include/openssl/cms.h"
|
|
12
|
+
#elif defined(OPENSSL_LINUX) && defined(__aarch64__)
|
|
13
|
+
# include "./archs/linux-aarch64/asm/include/openssl/cms.h"
|
|
14
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__i386__)
|
|
15
|
+
# include "./archs/darwin-i386-cc/asm/include/openssl/cms.h"
|
|
16
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__x86_64__)
|
|
17
|
+
# include "./archs/darwin64-x86_64-cc/asm/include/openssl/cms.h"
|
|
18
|
+
#elif defined(__APPLE__) && defined(__MACH__) && defined(__arm64__)
|
|
19
|
+
# include "./archs/darwin64-arm64-cc/asm/include/openssl/cms.h"
|
|
20
|
+
#elif defined(_WIN32) && defined(_M_IX86)
|
|
21
|
+
# include "./archs/VC-WIN32/asm/include/openssl/cms.h"
|
|
22
|
+
#elif defined(_WIN32) && defined(_M_X64)
|
|
23
|
+
# include "./archs/VC-WIN64A/asm/include/openssl/cms.h"
|
|
24
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__i386__)
|
|
25
|
+
# include "./archs/BSD-x86/asm/include/openssl/cms.h"
|
|
26
|
+
#elif (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(__x86_64__)
|
|
27
|
+
# include "./archs/BSD-x86_64/asm/include/openssl/cms.h"
|
|
28
|
+
#elif defined(__sun) && defined(__i386__)
|
|
29
|
+
# include "./archs/solaris-x86-gcc/asm/include/openssl/cms.h"
|
|
30
|
+
#elif defined(__sun) && defined(__x86_64__)
|
|
31
|
+
# include "./archs/solaris64-x86_64-gcc/asm/include/openssl/cms.h"
|
|
32
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__) && defined(L_ENDIAN)
|
|
33
|
+
# include "./archs/linux-ppc64le/asm/include/openssl/cms.h"
|
|
34
|
+
#elif defined(OPENSSL_LINUX) && defined(__PPC64__)
|
|
35
|
+
# include "./archs/linux-ppc64/asm/include/openssl/cms.h"
|
|
36
|
+
#elif defined(OPENSSL_LINUX) && !defined(__PPC64__) && defined(__ppc__)
|
|
37
|
+
# include "./archs/linux-ppc/asm/include/openssl/cms.h"
|
|
38
|
+
#elif defined(_AIX) && defined(_ARCH_PPC64)
|
|
39
|
+
# include "./archs/aix64-gcc-as/asm/include/openssl/cms.h"
|
|
40
|
+
#elif defined(_AIX) && !defined(_ARCH_PPC64) && defined(_ARCH_PPC)
|
|
41
|
+
# include "./archs/aix-gcc/asm/include/openssl/cms.h"
|
|
42
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390x__)
|
|
43
|
+
# include "./archs/linux64-s390x/asm/include/openssl/cms.h"
|
|
44
|
+
#elif defined(OPENSSL_LINUX) && defined(__s390__)
|
|
45
|
+
# include "./archs/linux32-s390x/asm/include/openssl/cms.h"
|
|
46
|
+
#else
|
|
47
|
+
# include "./archs/linux-elf/asm/include/openssl/cms.h"
|
|
48
|
+
#endif
|
|
49
|
+
|
|
50
|
+
/* GOST is not included in all platform */
|
|
51
|
+
#ifndef OPENSSL_NO_GOST
|
|
52
|
+
# define OPENSSL_NO_GOST
|
|
53
|
+
#endif
|
|
54
|
+
/* HW_PADLOCK is not included in all platform */
|
|
55
|
+
#ifndef OPENSSL_NO_HW_PADLOCK
|
|
56
|
+
# define OPENSSL_NO_HW_PADLOCK
|
|
57
|
+
#endif
|