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