diff options
Diffstat (limited to 'src/lib/libcrypto/arch/powerpc64/opensslconf.h')
-rw-r--r-- | src/lib/libcrypto/arch/powerpc64/opensslconf.h | 149 |
1 files changed, 0 insertions, 149 deletions
diff --git a/src/lib/libcrypto/arch/powerpc64/opensslconf.h b/src/lib/libcrypto/arch/powerpc64/opensslconf.h index 6fc15643a4..f8cbb5d652 100644 --- a/src/lib/libcrypto/arch/powerpc64/opensslconf.h +++ b/src/lib/libcrypto/arch/powerpc64/opensslconf.h | |||
@@ -147,152 +147,3 @@ YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | |||
147 | 147 | ||
148 | #endif /* DES_DEFAULT_OPTIONS */ | 148 | #endif /* DES_DEFAULT_OPTIONS */ |
149 | #endif /* HEADER_DES_LOCL_H */ | 149 | #endif /* HEADER_DES_LOCL_H */ |
150 | #include <openssl/opensslfeatures.h> | ||
151 | /* crypto/opensslconf.h.in */ | ||
152 | |||
153 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
154 | #define OPENSSLDIR "/etc/ssl" | ||
155 | #endif | ||
156 | |||
157 | #undef OPENSSL_UNISTD | ||
158 | #define OPENSSL_UNISTD <unistd.h> | ||
159 | |||
160 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
161 | |||
162 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
163 | #define IDEA_INT unsigned int | ||
164 | #endif | ||
165 | |||
166 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
167 | #define MD2_INT unsigned int | ||
168 | #endif | ||
169 | |||
170 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
171 | /* I need to put in a mod for the alpha - eay */ | ||
172 | #define RC2_INT unsigned int | ||
173 | #endif | ||
174 | |||
175 | #if defined(HEADER_RC4_H) | ||
176 | #if !defined(RC4_INT) | ||
177 | /* using int types make the structure larger but make the code faster | ||
178 | * on most boxes I have tested - up to %20 faster. */ | ||
179 | /* | ||
180 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
181 | * - Intel P6 because partial register stalls are very expensive; | ||
182 | * - elder Alpha because it lacks byte load/store instructions; | ||
183 | */ | ||
184 | #define RC4_INT unsigned int | ||
185 | #endif | ||
186 | #if !defined(RC4_CHUNK) | ||
187 | /* | ||
188 | * This enables code handling data aligned at natural CPU word | ||
189 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
190 | */ | ||
191 | #define RC4_CHUNK unsigned long | ||
192 | #endif | ||
193 | #endif | ||
194 | |||
195 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
196 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
197 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
198 | #ifndef DES_LONG | ||
199 | #define DES_LONG unsigned int | ||
200 | #endif | ||
201 | #endif | ||
202 | |||
203 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
204 | #define CONFIG_HEADER_BN_H | ||
205 | #undef BN_LLONG | ||
206 | |||
207 | /* Should we define BN_DIV2W here? */ | ||
208 | |||
209 | /* Only one for the following should be defined */ | ||
210 | #define SIXTY_FOUR_BIT_LONG | ||
211 | #undef SIXTY_FOUR_BIT | ||
212 | #undef THIRTY_TWO_BIT | ||
213 | #endif | ||
214 | |||
215 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
216 | #define CONFIG_HEADER_RC4_LOCL_H | ||
217 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
218 | * speedup on x86 */ | ||
219 | #undef RC4_INDEX | ||
220 | #endif | ||
221 | |||
222 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
223 | #define CONFIG_HEADER_BF_LOCL_H | ||
224 | #undef BF_PTR | ||
225 | #endif /* HEADER_BF_LOCL_H */ | ||
226 | |||
227 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
228 | #define CONFIG_HEADER_DES_LOCL_H | ||
229 | #ifndef DES_DEFAULT_OPTIONS | ||
230 | /* the following is tweaked from a config script, that is why it is a | ||
231 | * protected undef/define */ | ||
232 | #ifndef DES_PTR | ||
233 | #undef DES_PTR | ||
234 | #endif | ||
235 | |||
236 | /* This helps C compiler generate the correct code for multiple functional | ||
237 | * units. It reduces register dependancies at the expense of 2 more | ||
238 | * registers */ | ||
239 | #ifndef DES_RISC1 | ||
240 | #undef DES_RISC1 | ||
241 | #endif | ||
242 | |||
243 | #ifndef DES_RISC2 | ||
244 | #undef DES_RISC2 | ||
245 | #endif | ||
246 | |||
247 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
248 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
249 | #endif | ||
250 | |||
251 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
252 | * Very mucy CPU dependant */ | ||
253 | #ifndef DES_UNROLL | ||
254 | #define DES_UNROLL | ||
255 | #endif | ||
256 | |||
257 | /* These default values were supplied by | ||
258 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
259 | * They are only used if nothing else has been defined */ | ||
260 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
261 | /* Special defines which change the way the code is built depending on the | ||
262 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
263 | even newer MIPS CPU's, but at the moment one size fits all for | ||
264 | optimization options. Older Sparc's work better with only UNROLL, but | ||
265 | there's no way to tell at compile time what it is you're running on */ | ||
266 | |||
267 | #if defined( sun ) /* Newer Sparc's */ | ||
268 | # define DES_PTR | ||
269 | # define DES_RISC1 | ||
270 | # define DES_UNROLL | ||
271 | #elif defined( __ultrix ) /* Older MIPS */ | ||
272 | # define DES_PTR | ||
273 | # define DES_RISC2 | ||
274 | # define DES_UNROLL | ||
275 | #elif defined( __osf1__ ) /* Alpha */ | ||
276 | # define DES_PTR | ||
277 | # define DES_RISC2 | ||
278 | #elif defined ( _AIX ) /* RS6000 */ | ||
279 | /* Unknown */ | ||
280 | #elif defined( __hpux ) /* HP-PA */ | ||
281 | /* Unknown */ | ||
282 | #elif defined( __aux ) /* 68K */ | ||
283 | /* Unknown */ | ||
284 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
285 | # define DES_UNROLL | ||
286 | #elif defined( __sgi ) /* Newer MIPS */ | ||
287 | # define DES_PTR | ||
288 | # define DES_RISC2 | ||
289 | # define DES_UNROLL | ||
290 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
291 | # define DES_PTR | ||
292 | # define DES_RISC1 | ||
293 | # define DES_UNROLL | ||
294 | #endif /* Systems-specific speed defines */ | ||
295 | #endif | ||
296 | |||
297 | #endif /* DES_DEFAULT_OPTIONS */ | ||
298 | #endif /* HEADER_DES_LOCL_H */ | ||