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