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