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