100 | | -# endif | 101 | | -# if defined(OPENSSL_NO_UNIT_TEST) && !defined(NO_UNIT_TEST) |
102 | | -# define NO_UNIT_TEST |
103 | | -# endif |
104 | | -# if defined(OPENSSL_NO_WEAK_SSL_CIPHERS) && !defined(NO_WEAK_SSL_CIPHERS) |
105 | | -# define NO_WEAK_SSL_CIPHERS |
106 | | -# endif |
107 | | -#endif |
108 | | - |
109 | | -/* crypto/opensslconf.h.in */ |
110 | | - |
111 | | -/* Generate 80386 code? */ |
112 | | -#undef I386_ONLY |
113 | | - |
114 | | -#if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ |
115 | | -#if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) |
116 | | -#define ENGINESDIR "/usr/local/ssl/lib/engines" |
117 | | -#define OPENSSLDIR "/usr/local/ssl" |
118 | | -#endif |
119 | | -#endif |
120 | | - |
121 | | -#undef OPENSSL_UNISTD |
122 | | -#define OPENSSL_UNISTD <unistd.h> |
123 | | - |
124 | | -#undef OPENSSL_EXPORT_VAR_AS_FUNCTION |
125 | | - |
126 | | -#if defined(HEADER_IDEA_H) && !defined(IDEA_INT) |
127 | | -#define IDEA_INT unsigned int |
128 | | -#endif |
129 | | - |
130 | | -#if defined(HEADER_MD2_H) && !defined(MD2_INT) |
131 | | -#define MD2_INT unsigned int |
132 | | -#endif |
133 | | - |
134 | | -#if defined(HEADER_RC2_H) && !defined(RC2_INT) |
135 | | -/* I need to put in a mod for the alpha - eay */ |
136 | | -#define RC2_INT unsigned int |
137 | | -#endif |
138 | | - |
139 | | -#if defined(HEADER_RC4_H) |
140 | | -#if !defined(RC4_INT) |
141 | | -/* using int types make the structure larger but make the code faster |
142 | | - * on most boxes I have tested - up to %20 faster. */ |
143 | | -/* |
144 | | - * I don't know what does "most" mean, but declaring "int" is a must on: |
145 | | - * - Intel P6 because partial register stalls are very expensive; |
146 | | - * - elder Alpha be
303C
cause it lacks byte load/store instructions; |
147 | | - */ |
148 | | -#define RC4_INT unsigned int |
149 | | -#endif |
150 | | -#if !defined(RC4_CHUNK) |
151 | | -/* |
152 | | - * This enables code handling data aligned at natural CPU word |
153 | | - * boundary. See crypto/rc4/rc4_enc.c for further details. |
154 | | - */ |
155 | | -#undef RC4_CHUNK |
156 | | -#endif |
157 | | -#endif |
158 | | - |
159 | | -#if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) |
160 | | -/* If this is set to 'unsigned int' on a DEC Alpha, this gives about a |
161 | | - * %20 speed up (longs are 8 bytes, int's are 4). */ |
162 | | -#ifndef DES_LONG |
163 | | -#define DES_LONG unsigned long |
164 | | -#endif |
165 | | -#endif |
166 | | - |
167 | | -#if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) |
168 | | -#define CONFIG_HEADER_BN_H |
169 | | -#undef BN_LLONG |
170 | | - |
171 | | -/* Should we define BN_DIV2W here? */ |
172 | | - |
173 | | -/* Only one for the following should be defined */ |
174 | | -#undef SIXTY_FOUR_BIT_LONG |
175 | | -#undef SIXTY_FOUR_BIT |
176 | | -#define THIRTY_TWO_BIT |
177 | | -#endif |
178 | | - |
179 | | -#if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) |
180 | | -#define CONFIG_HEADER_RC4_LOCL_H |
181 | | -/* if this is defined data[i] is used instead of *data, this is a %20 |
182 | | - * speedup on x86 */ |
183 | | -#undef RC4_INDEX |
184 | | -#endif |
185 | | - |
186 | | -#if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) |
187 | | -#define CONFIG_HEADER_BF_LOCL_H |
188 | | -#undef BF_PTR |
189 | | -#endif /* HEADER_BF_LOCL_H */ |
190 | | - |
191 | | -#if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) |
192 | | -#define CONFIG_HEADER_DES_LOCL_H |
193 | | -#ifndef DES_DEFAULT_OPTIONS |
194 | | -/* the following is tweaked from a config script, that is why it is a |
195 | | - * protected undef/define */ |
196 | | -#ifndef DES_PTR |
197 | | -#undef DES_PTR |
198 | | -#endif |
199 | | - |
200 | | -/* This helps C compiler generate the correct code for multiple functional |
201 | | - * units. It reduces register dependancies at the expense of 2 more |
202 | | - * registers */ |
203 | | -#ifndef DES_RISC1 |
204 | | -#undef DES_RISC1 |
205 | | -#endif |
206 | | - |
207 | | -#ifndef DES_RISC2 |
208 | | -#undef DES_RISC2 |
209 | | -#endif |
210 | | - |
211 | | -#if defined(DES_RISC1) && defined(DES_RISC2) |
212 | | -#error YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! |
213 | | -#endif |
214 | | - |
215 | | -/* Unroll the inner loop, this sometimes helps, sometimes hinders. |
216 | | - * Very mucy CPU dependant */ |
217 | | -#ifndef DES_UNROLL |
218 | | -#undef DES_UNROLL |
219 | | -#endif |
220 | | - |
221 | | -/* These default values were supplied by |
222 | | - * Peter Gutman <pgut001@cs.auckland.ac.nz> |
223 | | - * They are only used if nothing else has been defined */ |
224 | | -#if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) |
225 | | -/* Special defines which change the way the code is built depending on the |
226 | | - CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find |
227 | | - even newer MIPS CPU's, but at the moment one size fits all for |
228 | | - optimization options. Older Sparc's work better with only UNROLL, but |
229 | | - there's no way to tell at compile time what it is you're running on */ |
230 | | - |
231 | | -#if defined( __sun ) || defined ( sun ) /* Newer Sparc's */ |
232 | | -# define DES_PTR |
233 | | -# define DES_RISC1 |
234 | | -# define DES_UNROLL |
235 | | -#elif defined( __ultrix ) /* Older MIPS */ |
236 | | -# define DES_PTR |
237 | | -# define DES_RISC2 |
238 | | -# define DES_UNROLL |
239 | | -#elif defined( __osf1__ ) /* Alpha */ |
240 | | -# define DES_PTR |
241 | | -# define DES_RISC2 |
242 | | -#elif defined ( _AIX ) /* RS6000 */ |
243 | | - /* Unknown */ |
244 | | -#elif defined( __hpux ) /* HP-PA */ |
245 | | - /* Unknown */ |
246 | | -#elif defined( __aux ) /* 68K */ |
247 | | - /* Unknown */ |
248 | | -#elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ |
249 | | -# define DES_UNROLL |
250 | | -#elif defined( __sgi ) /* Newer MIPS */ |
251 | | -# define DES_PTR |
252 | | -# define DES_RISC2 |
253 | | -# define DES_UNROLL |
254 | | -#elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ |
255 | | -# define DES_PTR |
256 | | -# define DES_RISC1 |
257 | | -# define DES_UNROLL |
258 | | -#endif /* Systems-specific speed defines */ |
259 | | -#endif |
260 | | - |
261 | | -#endif /* DES_DEFAULT_OPTIONS */ |
262 | | -#endif /* HEADER_DES_LOCL_H */ |
263 | | -#ifdef __cplusplus |
264 | | -} |
265 | | -#endif |
| 1 | +#include "../../config/opensslconf.h" |
0 commit comments