ThingWorx C SDK
opensslconf.h
1 /* opensslconf.h */
2 /* WARNING: Generated automatically from opensslconf.h.in by Configure. */
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 /* OpenSSL was configured with the following options: */
8 #ifndef OPENSSL_SYSNAME_MACOSX
9 # define OPENSSL_SYSNAME_MACOSX
10 #endif
11 #ifndef OPENSSL_DOING_MAKEDEPEND
12 
13 
14 #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
15 # define OPENSSL_NO_EC_NISTP_64_GCC_128
16 #endif
17 #ifndef OPENSSL_NO_GMP
18 # define OPENSSL_NO_GMP
19 #endif
20 #ifndef OPENSSL_NO_JPAKE
21 # define OPENSSL_NO_JPAKE
22 #endif
23 #ifndef OPENSSL_NO_KRB5
24 # define OPENSSL_NO_KRB5
25 #endif
26 #ifndef OPENSSL_NO_LIBUNBOUND
27 # define OPENSSL_NO_LIBUNBOUND
28 #endif
29 #ifndef OPENSSL_NO_MD2
30 # define OPENSSL_NO_MD2
31 #endif
32 #ifndef OPENSSL_NO_RC5
33 # define OPENSSL_NO_RC5
34 #endif
35 #ifndef OPENSSL_NO_RFC3779
36 # define OPENSSL_NO_RFC3779
37 #endif
38 #ifndef OPENSSL_NO_SCTP
39 # define OPENSSL_NO_SCTP
40 #endif
41 #ifndef OPENSSL_NO_SSL_TRACE
42 # define OPENSSL_NO_SSL_TRACE
43 #endif
44 #ifndef OPENSSL_NO_SSL2
45 # define OPENSSL_NO_SSL2
46 #endif
47 #ifndef OPENSSL_NO_STORE
48 # define OPENSSL_NO_STORE
49 #endif
50 #ifndef OPENSSL_NO_UNIT_TEST
51 # define OPENSSL_NO_UNIT_TEST
52 #endif
53 #ifndef OPENSSL_NO_WEAK_SSL_CIPHERS
54 # define OPENSSL_NO_WEAK_SSL_CIPHERS
55 #endif
56 
57 #endif /* OPENSSL_DOING_MAKEDEPEND */
58 
59 #ifndef OPENSSL_THREADS
60 # define OPENSSL_THREADS
61 #endif
62 #ifndef OPENSSL_NO_STATIC_ENGINE
63 # define OPENSSL_NO_STATIC_ENGINE
64 #endif
65 
66 /* The OPENSSL_NO_* macros are also defined as NO_* if the application
67  asks for it. This is a transient feature that is provided for those
68  who haven't had the time to do the appropriate changes in their
69  applications. */
70 #ifdef OPENSSL_ALGORITHM_DEFINES
71 # if defined(OPENSSL_NO_EC_NISTP_64_GCC_128) && !defined(NO_EC_NISTP_64_GCC_128)
72 # define NO_EC_NISTP_64_GCC_128
73 # endif
74 # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
75 # define NO_GMP
76 # endif
77 # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
78 # define NO_JPAKE
79 # endif
80 # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
81 # define NO_KRB5
82 # endif
83 # if defined(OPENSSL_NO_LIBUNBOUND) && !defined(NO_LIBUNBOUND)
84 # define NO_LIBUNBOUND
85 # endif
86 # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
87 # define NO_MD2
88 # endif
89 # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5)
90 # define NO_RC5
91 # endif
92 # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779)
93 # define NO_RFC3779
94 # endif
95 # if defined(OPENSSL_NO_SCTP) && !defined(NO_SCTP)
96 # define NO_SCTP
97 # endif
98 # if defined(OPENSSL_NO_SSL_TRACE) && !defined(NO_SSL_TRACE)
99 # define NO_SSL_TRACE
100 # endif
101 # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
102 # define NO_SSL2
103 # endif
104 # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
105 # define NO_STORE
106 # endif
107 # if defined(OPENSSL_NO_UNIT_TEST) && !defined(NO_UNIT_TEST)
108 # define NO_UNIT_TEST
109 # endif
110 # if defined(OPENSSL_NO_WEAK_SSL_CIPHERS) && !defined(NO_WEAK_SSL_CIPHERS)
111 # define NO_WEAK_SSL_CIPHERS
112 # endif
113 #endif
114 
115 #define OPENSSL_CPUID_OBJ
116 
117 /* crypto/opensslconf.h.in */
118 
119 /* Generate 80386 code? */
120 #undef I386_ONLY
121 
122 #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
123 #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
124 #define ENGINESDIR "/tmp/openssl/lib/engines"
125 #define OPENSSLDIR "/tmp/openssl"
126 #endif
127 #endif
128 
129 #undef OPENSSL_UNISTD
130 #define OPENSSL_UNISTD <unistd.h>
131 
132 #undef OPENSSL_EXPORT_VAR_AS_FUNCTION
133 
134 #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
135 #define IDEA_INT unsigned int
136 #endif
137 
138 #if defined(HEADER_MD2_H) && !defined(MD2_INT)
139 #define MD2_INT unsigned int
140 #endif
141 
142 #if defined(HEADER_RC2_H) && !defined(RC2_INT)
143 /* I need to put in a mod for the alpha - eay */
144 #define RC2_INT unsigned int
145 #endif
146 
147 #if defined(HEADER_RC4_H)
148 #if !defined(RC4_INT)
149 /* using int types make the structure larger but make the code faster
150  * on most boxes I have tested - up to %20 faster. */
151 /*
152  * I don't know what does "most" mean, but declaring "int" is a must on:
153  * - Intel P6 because partial register stalls are very expensive;
154  * - elder Alpha because it lacks byte load/store instructions;
155  */
156 #define RC4_INT unsigned int
157 #endif
158 #if !defined(RC4_CHUNK)
159 /*
160  * This enables code handling data aligned at natural CPU word
161  * boundary. See crypto/rc4/rc4_enc.c for further details.
162  */
163 #define RC4_CHUNK unsigned long
164 #endif
165 #endif
166 
167 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
168 /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
169  * %20 speed up (longs are 8 bytes, int's are 4). */
170 #ifndef DES_LONG
171 #define DES_LONG unsigned int
172 #endif
173 #endif
174 
175 #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
176 #define CONFIG_HEADER_BN_H
177 #undef BN_LLONG
178 
179 /* Should we define BN_DIV2W here? */
180 
181 /* Only one for the following should be defined */
182 #define SIXTY_FOUR_BIT_LONG
183 #undef SIXTY_FOUR_BIT
184 #undef THIRTY_TWO_BIT
185 #endif
186 
187 #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
188 #define CONFIG_HEADER_RC4_LOCL_H
189 /* if this is defined data[i] is used instead of *data, this is a %20
190  * speedup on x86 */
191 #undef RC4_INDEX
192 #endif
193 
194 #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
195 #define CONFIG_HEADER_BF_LOCL_H
196 #undef BF_PTR
197 #endif /* HEADER_BF_LOCL_H */
198 
199 #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
200 #define CONFIG_HEADER_DES_LOCL_H
201 #ifndef DES_DEFAULT_OPTIONS
202 /* the following is tweaked from a config script, that is why it is a
203  * protected undef/define */
204 #ifndef DES_PTR
205 #undef DES_PTR
206 #endif
207 
208 /* This helps C compiler generate the correct code for multiple functional
209  * units. It reduces register dependancies at the expense of 2 more
210  * registers */
211 #ifndef DES_RISC1
212 #undef DES_RISC1
213 #endif
214 
215 #ifndef DES_RISC2
216 #undef DES_RISC2
217 #endif
218 
219 #if defined(DES_RISC1) && defined(DES_RISC2)
220 #error YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
221 #endif
222 
223 /* Unroll the inner loop, this sometimes helps, sometimes hinders.
224  * Very mucy CPU dependant */
225 #ifndef DES_UNROLL
226 #define DES_UNROLL
227 #endif
228 
229 /* These default values were supplied by
230  * Peter Gutman <pgut001@cs.auckland.ac.nz>
231  * They are only used if nothing else has been defined */
232 #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
233 /* Special defines which change the way the code is built depending on the
234  CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
235  even newer MIPS CPU's, but at the moment one size fits all for
236  optimization options. Older Sparc's work better with only UNROLL, but
237  there's no way to tell at compile time what it is you're running on */
238 
239 #if defined( __sun ) || defined ( sun ) /* Newer Sparc's */
240 # define DES_PTR
241 # define DES_RISC1
242 # define DES_UNROLL
243 #elif defined( __ultrix ) /* Older MIPS */
244 # define DES_PTR
245 # define DES_RISC2
246 # define DES_UNROLL
247 #elif defined( __osf1__ ) /* Alpha */
248 # define DES_PTR
249 # define DES_RISC2
250 #elif defined ( _AIX ) /* RS6000 */
251  /* Unknown */
252 #elif defined( __hpux ) /* HP-PA */
253  /* Unknown */
254 #elif defined( __aux ) /* 68K */
255  /* Unknown */
256 #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */
257 # define DES_UNROLL
258 #elif defined( __sgi ) /* Newer MIPS */
259 # define DES_PTR
260 # define DES_RISC2
261 # define DES_UNROLL
262 #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */
263 # define DES_PTR
264 # define DES_RISC1
265 # define DES_UNROLL
266 #endif /* Systems-specific speed defines */
267 #endif
268 
269 #endif /* DES_DEFAULT_OPTIONS */
270 #endif /* HEADER_DES_LOCL_H */
271 #ifdef __cplusplus
272 }
273 #endif