]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - secure/lib/libcrypto/opensslconf.h.in
OpenSSL: Reduce diff with the upstream
[FreeBSD/FreeBSD.git] / secure / lib / libcrypto / opensslconf.h.in
1 /* $FreeBSD$ */
2 /*
3  * WARNING: do not edit!
4  * Generated by Makefile from include/openssl/opensslconf.h.in
5  *
6  * Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
7  *
8  * Licensed under the OpenSSL license (the "License").  You may not use
9  * this file except in compliance with the License.  You can obtain a copy
10  * in the file LICENSE in the source distribution or at
11  * https://www.openssl.org/source/license.html
12  */
13
14 #include <openssl/opensslv.h>
15
16 #ifdef  __cplusplus
17 extern "C" {
18 #endif
19
20 #ifdef OPENSSL_ALGORITHM_DEFINES
21 # error OPENSSL_ALGORITHM_DEFINES no longer supported
22 #endif
23
24 /*
25  * OpenSSL was configured with the following options:
26  */
27
28 #ifndef OPENSSL_NO_MD2
29 # define OPENSSL_NO_MD2
30 #endif
31 #ifndef OPENSSL_THREADS
32 # define OPENSSL_THREADS
33 #endif
34 #ifndef OPENSSL_RAND_SEED_OS
35 # define OPENSSL_RAND_SEED_OS
36 #endif
37 #ifndef OPENSSL_NO_AFALGENG
38 # define OPENSSL_NO_AFALGENG
39 #endif
40 #ifndef OPENSSL_NO_ASAN
41 # define OPENSSL_NO_ASAN
42 #endif
43 %%NO_ASM%%#ifndef OPENSSL_NO_ASM
44 %%NO_ASM%%# define OPENSSL_NO_ASM
45 %%NO_ASM%%#endif
46 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
47 # define OPENSSL_NO_CRYPTO_MDEBUG
48 #endif
49 #ifndef OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
50 # define OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
51 #endif
52 #ifndef OPENSSL_NO_DEVCRYPTOENG
53 # define OPENSSL_NO_DEVCRYPTOENG
54 #endif
55 #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
56 # define OPENSSL_NO_EC_NISTP_64_GCC_128
57 #endif
58 #ifndef OPENSSL_NO_EGD
59 # define OPENSSL_NO_EGD
60 #endif
61 #ifndef OPENSSL_NO_EXTERNAL_TESTS
62 # define OPENSSL_NO_EXTERNAL_TESTS
63 #endif
64 #ifndef OPENSSL_NO_FUZZ_AFL
65 # define OPENSSL_NO_FUZZ_AFL
66 #endif
67 #ifndef OPENSSL_NO_FUZZ_LIBFUZZER
68 # define OPENSSL_NO_FUZZ_LIBFUZZER
69 #endif
70 #ifndef OPENSSL_NO_HEARTBEATS
71 # define OPENSSL_NO_HEARTBEATS
72 #endif
73 #ifndef OPENSSL_NO_MSAN
74 # define OPENSSL_NO_MSAN
75 #endif
76 #ifndef OPENSSL_NO_SCTP
77 # define OPENSSL_NO_SCTP
78 #endif
79 #ifndef OPENSSL_NO_SSL_TRACE
80 # define OPENSSL_NO_SSL_TRACE
81 #endif
82 #ifndef OPENSSL_NO_UBSAN
83 # define OPENSSL_NO_UBSAN
84 #endif
85 #ifndef OPENSSL_NO_UNIT_TEST
86 # define OPENSSL_NO_UNIT_TEST
87 #endif
88 #ifndef OPENSSL_NO_WEAK_SSL_CIPHERS
89 # define OPENSSL_NO_WEAK_SSL_CIPHERS
90 #endif
91 #ifndef OPENSSL_NO_STATIC_ENGINE
92 # define OPENSSL_NO_STATIC_ENGINE
93 #endif
94
95
96 /*
97  * Sometimes OPENSSSL_NO_xxx ends up with an empty file and some compilers
98  * don't like that.  This will hopefully silence them.
99  */
100 #define NON_EMPTY_TRANSLATION_UNIT static void *dummy = &dummy;
101
102 /*
103  * Applications should use -DOPENSSL_API_COMPAT=<version> to suppress the
104  * declarations of functions deprecated in or before <version>. Otherwise, they
105  * still won't see them if the library has been built to disable deprecated
106  * functions.
107  */
108 #ifndef DECLARE_DEPRECATED
109 # define DECLARE_DEPRECATED(f)   f;
110 # ifdef __GNUC__
111 #  if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 0)
112 #   undef DECLARE_DEPRECATED
113 #   define DECLARE_DEPRECATED(f)    f __attribute__ ((deprecated));
114 #  endif
115 # elif defined(__SUNPRO_C)
116 #  if (__SUNPRO_C >= 0x5130)
117 #   undef DECLARE_DEPRECATED
118 #   define DECLARE_DEPRECATED(f)    f __attribute__ ((deprecated));
119 #  endif
120 # endif
121 #endif
122
123 #ifndef OPENSSL_FILE
124 # ifdef OPENSSL_NO_FILENAMES
125 #  define OPENSSL_FILE ""
126 #  define OPENSSL_LINE 0
127 # else
128 #  define OPENSSL_FILE __FILE__
129 #  define OPENSSL_LINE __LINE__
130 # endif
131 #endif
132
133 #ifndef OPENSSL_MIN_API
134 # define OPENSSL_MIN_API 0
135 #endif
136
137 #if !defined(OPENSSL_API_COMPAT) || OPENSSL_API_COMPAT < OPENSSL_MIN_API
138 # undef OPENSSL_API_COMPAT
139 # define OPENSSL_API_COMPAT OPENSSL_MIN_API
140 #endif
141
142 /*
143  * Do not deprecate things to be deprecated in version 1.2.0 before the
144  * OpenSSL version number matches.
145  */
146 #if OPENSSL_VERSION_NUMBER < 0x10200000L
147 # define DEPRECATEDIN_1_2_0(f)   f;
148 #elif OPENSSL_API_COMPAT < 0x10200000L
149 # define DEPRECATEDIN_1_2_0(f)   DECLARE_DEPRECATED(f)
150 #else
151 # define DEPRECATEDIN_1_2_0(f)
152 #endif
153
154 #if OPENSSL_API_COMPAT < 0x10100000L
155 # define DEPRECATEDIN_1_1_0(f)   DECLARE_DEPRECATED(f)
156 #else
157 # define DEPRECATEDIN_1_1_0(f)
158 #endif
159
160 #if OPENSSL_API_COMPAT < 0x10000000L
161 # define DEPRECATEDIN_1_0_0(f)   DECLARE_DEPRECATED(f)
162 #else
163 # define DEPRECATEDIN_1_0_0(f)
164 #endif
165
166 #if OPENSSL_API_COMPAT < 0x00908000L
167 # define DEPRECATEDIN_0_9_8(f)   DECLARE_DEPRECATED(f)
168 #else
169 # define DEPRECATEDIN_0_9_8(f)
170 #endif
171
172 /* Generate 80386 code? */
173 #undef I386_ONLY
174
175 #undef OPENSSL_UNISTD
176 #define OPENSSL_UNISTD <unistd.h>
177
178 #undef OPENSSL_EXPORT_VAR_AS_FUNCTION
179
180 /*
181  * The following are cipher-specific, but are part of the public API.
182  */
183 #if !defined(OPENSSL_SYS_UEFI)
184 #ifdef __LP64__
185 # undef BN_LLONG
186 /* Only one for the following should be defined */
187 # define SIXTY_FOUR_BIT_LONG
188 # undef SIXTY_FOUR_BIT
189 # undef THIRTY_TWO_BIT
190 #else
191 # define BN_LLONG
192 /* Only one for the following should be defined */
193 # undef SIXTY_FOUR_BIT_LONG
194 # undef SIXTY_FOUR_BIT
195 # define THIRTY_TWO_BIT
196 #endif
197 #endif
198
199 #define RC4_INT unsigned int
200
201 #ifdef  __cplusplus
202 }
203 #endif