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