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