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