e7c6b7c9817eede4f160f9fad56644fdb2eb0c07
[openssl.git] / MacOS / opensslconf.h
1 /* MacOS/opensslconf.h */
2
3 #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
4 #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
5 #define OPENSSLDIR "/usr/local/ssl"
6 #endif
7 #endif
8
9 #define OPENSSL_UNISTD <unistd.h>
10
11 #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
12 #define IDEA_INT unsigned int
13 #endif
14
15 #if defined(HEADER_MD2_H) && !defined(MD2_INT)
16 #define MD2_INT unsigned int
17 #endif
18
19 #if defined(HEADER_RC2_H) && !defined(RC2_INT)
20 /* I need to put in a mod for the alpha - eay */
21 #define RC2_INT unsigned int
22 #endif
23
24 #if defined(HEADER_RC4_H)
25 #if !defined(RC4_INT)
26 /* using int types make the structure larger but make the code faster
27  * on most boxes I have tested - up to %20 faster. */
28 /*
29  * I don't know what does "most" mean, but declaring "int" is a must on:
30  * - Intel P6 because partial register stalls are very expensive;
31  * - elder Alpha because it lacks byte load/store instructions;
32  */
33 #define RC4_INT unsigned char
34 #endif
35 #if !defined(RC4_CHUNK)
36 /*
37  * This enables code handling data aligned at natural CPU word
38  * boundary. See crypto/rc4/rc4_enc.c for further details.
39  */
40 #define RC4_CHUNK unsigned long
41 #endif
42 #endif
43
44 #if defined(HEADER_DES_H) && !defined(DES_LONG)
45 /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
46  * %20 speed up (longs are 8 bytes, int's are 4). */
47 #ifndef DES_LONG
48 #define DES_LONG unsigned long
49 #endif
50 #endif
51
52 #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
53 #define CONFIG_HEADER_BN_H
54 #if __option(longlong)
55 #  define BN_LLONG
56 #else
57 #  undef BN_LLONG
58 #endif
59
60 /* Should we define BN_DIV2W here? */
61
62 /* Only one for the following should be defined */
63 /* The prime number generation stuff may not work when
64  * EIGHT_BIT but I don't care since I've only used this mode
65  * for debuging the bignum libraries */
66 #undef SIXTY_FOUR_BIT_LONG
67 #undef SIXTY_FOUR_BIT
68 #define THIRTY_TWO_BIT
69 #undef SIXTEEN_BIT
70 #undef EIGHT_BIT
71 #endif
72
73 #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
74 #define CONFIG_HEADER_RC4_LOCL_H
75 /* if this is defined data[i] is used instead of *data, this is a %20
76  * speedup on x86 */
77 #undef RC4_INDEX
78 #endif
79
80 #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
81 #define CONFIG_HEADER_BF_LOCL_H
82 #define BF_PTR
83 #endif /* HEADER_BF_LOCL_H */
84
85 #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
86 #define CONFIG_HEADER_DES_LOCL_H
87 /* the following is tweaked from a config script, that is why it is a
88  * protected undef/define */
89 #ifndef DES_PTR
90 #define DES_PTR
91 #endif
92
93 /* This helps C compiler generate the correct code for multiple functional
94  * units.  It reduces register dependancies at the expense of 2 more
95  * registers */
96 #ifndef DES_RISC1
97 #define DES_RISC1
98 #endif
99
100 #ifndef DES_RISC2
101 #undef DES_RISC2
102 #endif
103
104 #if defined(DES_RISC1) && defined(DES_RISC2)
105 YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
106 #endif
107
108 /* Unroll the inner loop, this sometimes helps, sometimes hinders.
109  * Very mucy CPU dependant */
110 #ifndef DES_UNROLL
111 #define DES_UNROLL
112 #endif
113
114 #endif /* HEADER_DES_LOCL_H */
115
116 #ifndef __POWERPC__
117 #define SHA_XARRAY
118 #endif