summaryrefslogtreecommitdiff
path: root/src/lib/libssl/crypto/arch
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/crypto/arch')
-rw-r--r--src/lib/libssl/crypto/arch/alpha/opensslconf.h27
-rw-r--r--src/lib/libssl/crypto/arch/amd64/opensslconf.h27
-rw-r--r--src/lib/libssl/crypto/arch/arm/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/hppa/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/i386/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/m68k/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/m88k/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/mips64/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/powerpc/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/sh/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/sparc/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/sparc64/opensslconf.h25
-rw-r--r--src/lib/libssl/crypto/arch/vax/opensslconf.h25
13 files changed, 260 insertions, 69 deletions
diff --git a/src/lib/libssl/crypto/arch/alpha/opensslconf.h b/src/lib/libssl/crypto/arch/alpha/opensslconf.h
index c57f794ded..a49bd23031 100644
--- a/src/lib/libssl/crypto/arch/alpha/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/alpha/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
@@ -148,8 +163,6 @@
148#define SIXTY_FOUR_BIT_LONG 163#define SIXTY_FOUR_BIT_LONG
149#undef SIXTY_FOUR_BIT 164#undef SIXTY_FOUR_BIT
150#undef THIRTY_TWO_BIT 165#undef THIRTY_TWO_BIT
151#undef SIXTEEN_BIT
152#undef EIGHT_BIT
153#endif 166#endif
154 167
155#if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) 168#if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
diff --git a/src/lib/libssl/crypto/arch/amd64/opensslconf.h b/src/lib/libssl/crypto/arch/amd64/opensslconf.h
index 48bcf742e3..16314dbc1e 100644
--- a/src/lib/libssl/crypto/arch/amd64/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/amd64/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
@@ -148,8 +163,6 @@
148#define SIXTY_FOUR_BIT_LONG 163#define SIXTY_FOUR_BIT_LONG
149#undef SIXTY_FOUR_BIT 164#undef SIXTY_FOUR_BIT
150#undef THIRTY_TWO_BIT 165#undef THIRTY_TWO_BIT
151#undef SIXTEEN_BIT
152#undef EIGHT_BIT
153#endif 166#endif
154 167
155#if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) 168#if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
diff --git a/src/lib/libssl/crypto/arch/arm/opensslconf.h b/src/lib/libssl/crypto/arch/arm/opensslconf.h
index fb0979fce3..c1fc4e5d11 100644
--- a/src/lib/libssl/crypto/arch/arm/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/arm/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/hppa/opensslconf.h b/src/lib/libssl/crypto/arch/hppa/opensslconf.h
index fb0979fce3..c1fc4e5d11 100644
--- a/src/lib/libssl/crypto/arch/hppa/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/hppa/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/i386/opensslconf.h b/src/lib/libssl/crypto/arch/i386/opensslconf.h
index 93568f382f..a222ec1007 100644
--- a/src/lib/libssl/crypto/arch/i386/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/i386/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/m68k/opensslconf.h b/src/lib/libssl/crypto/arch/m68k/opensslconf.h
index fb0979fce3..c1fc4e5d11 100644
--- a/src/lib/libssl/crypto/arch/m68k/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/m68k/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/m88k/opensslconf.h b/src/lib/libssl/crypto/arch/m88k/opensslconf.h
index fb0979fce3..c1fc4e5d11 100644
--- a/src/lib/libssl/crypto/arch/m88k/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/m88k/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/mips64/opensslconf.h b/src/lib/libssl/crypto/arch/mips64/opensslconf.h
index c57f794ded..10cb4e721d 100644
--- a/src/lib/libssl/crypto/arch/mips64/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/mips64/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/powerpc/opensslconf.h b/src/lib/libssl/crypto/arch/powerpc/opensslconf.h
index fb0979fce3..c1fc4e5d11 100644
--- a/src/lib/libssl/crypto/arch/powerpc/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/powerpc/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/sh/opensslconf.h b/src/lib/libssl/crypto/arch/sh/opensslconf.h
index fb0979fce3..c1fc4e5d11 100644
--- a/src/lib/libssl/crypto/arch/sh/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/sh/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/sparc/opensslconf.h b/src/lib/libssl/crypto/arch/sparc/opensslconf.h
index fb0979fce3..c1fc4e5d11 100644
--- a/src/lib/libssl/crypto/arch/sparc/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/sparc/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/sparc64/opensslconf.h b/src/lib/libssl/crypto/arch/sparc64/opensslconf.h
index c57f794ded..10cb4e721d 100644
--- a/src/lib/libssl/crypto/arch/sparc64/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/sparc64/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94
diff --git a/src/lib/libssl/crypto/arch/vax/opensslconf.h b/src/lib/libssl/crypto/arch/vax/opensslconf.h
index fb0979fce3..c1fc4e5d11 100644
--- a/src/lib/libssl/crypto/arch/vax/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/vax/opensslconf.h
@@ -7,21 +7,24 @@
7#ifndef OPENSSL_NO_CAMELLIA 7#ifndef OPENSSL_NO_CAMELLIA
8# define OPENSSL_NO_CAMELLIA 8# define OPENSSL_NO_CAMELLIA
9#endif 9#endif
10#ifndef OPENSSL_NO_CAPIENG
11# define OPENSSL_NO_CAPIENG
12#endif
13#ifndef OPENSSL_NO_CMS 10#ifndef OPENSSL_NO_CMS
14# define OPENSSL_NO_CMS 11# define OPENSSL_NO_CMS
15#endif 12#endif
16#ifndef OPENSSL_NO_GMP 13#ifndef OPENSSL_NO_GMP
17# define OPENSSL_NO_GMP 14# define OPENSSL_NO_GMP
18#endif 15#endif
16#ifndef OPENSSL_NO_GOST
17# define OPENSSL_NO_GOST
18#endif
19#ifndef OPENSSL_NO_JPAKE 19#ifndef OPENSSL_NO_JPAKE
20# define OPENSSL_NO_JPAKE 20# define OPENSSL_NO_JPAKE
21#endif 21#endif
22#ifndef OPENSSL_NO_KRB5 22#ifndef OPENSSL_NO_KRB5
23# define OPENSSL_NO_KRB5 23# define OPENSSL_NO_KRB5
24#endif 24#endif
25#ifndef OPENSSL_NO_MD2
26# define OPENSSL_NO_MD2
27#endif
25#ifndef OPENSSL_NO_MDC2 28#ifndef OPENSSL_NO_MDC2
26# define OPENSSL_NO_MDC2 29# define OPENSSL_NO_MDC2
27#endif 30#endif
@@ -34,6 +37,9 @@
34#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
35# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
36#endif 39#endif
40#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE
42#endif
37 43
38#endif /* OPENSSL_DOING_MAKEDEPEND */ 44#endif /* OPENSSL_DOING_MAKEDEPEND */
39#ifndef OPENSSL_THREADS 45#ifndef OPENSSL_THREADS
@@ -57,9 +63,18 @@
57# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) 63# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
58# define NO_GMP 64# define NO_GMP
59# endif 65# endif
66# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
67# define NO_GOST
68# endif
69# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
70# define NO_JPAKE
71# endif
60# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) 72# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
61# define NO_KRB5 73# define NO_KRB5
62# endif 74# endif
75# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
76# define NO_MD2
77# endif
63# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) 78# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
64# define NO_MDC2 79# define NO_MDC2
65# endif 80# endif
@@ -72,8 +87,8 @@
72# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
73# define NO_SEED 88# define NO_SEED
74# endif 89# endif
75# if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) 90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
76# define NO_TLSEXT 91# define NO_STORE
77# endif 92# endif
78#endif 93#endif
79 94