2 /* WARNING: Generated automatically from opensslconf.h.in by Configure. */
4 /* OpenSSL was configured with the following options: */
5 #ifndef OPENSSL_SYSNAME_MACOSX
6 # define OPENSSL_SYSNAME_MACOSX
8 #ifndef OPENSSL_DOING_MAKEDEPEND
11 #ifndef OPENSSL_NO_CAMELLIA
12 # define OPENSSL_NO_CAMELLIA
14 #ifndef OPENSSL_NO_CAPIENG
15 # define OPENSSL_NO_CAPIENG
17 #ifndef OPENSSL_NO_CMS
18 # define OPENSSL_NO_CMS
20 #ifndef OPENSSL_NO_GMP
21 # define OPENSSL_NO_GMP
23 #ifndef OPENSSL_NO_IDEA
24 # define OPENSSL_NO_IDEA
26 #ifndef OPENSSL_NO_JPAKE
27 # define OPENSSL_NO_JPAKE
29 #ifndef OPENSSL_NO_KRB5
30 # define OPENSSL_NO_KRB5
32 #ifndef OPENSSL_NO_RFC3779
33 # define OPENSSL_NO_RFC3779
36 #endif /* OPENSSL_DOING_MAKEDEPEND */
38 #ifndef OPENSSL_THREADS
39 # define OPENSSL_THREADS
42 # define OPENSSL_NO_HW
44 #ifndef OPENSSL_NO_STATIC_ENGINE
45 # define OPENSSL_NO_STATIC_ENGINE
48 /* The OPENSSL_NO_* macros are also defined as NO_* if the application
49 asks for it. This is a transient feature that is provided for those
50 who haven't had the time to do the appropriate changes in their
52 #ifdef OPENSSL_ALGORITHM_DEFINES
53 # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA)
56 # if defined(OPENSSL_NO_CAPIENG) && !defined(NO_CAPIENG)
59 # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS)
62 # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
65 # if defined(OPENSSL_NO_IDEA) && !defined(NO_IDEA)
68 # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
71 # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
74 # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779)
79 /* crypto/opensslconf.h.in */
81 #ifdef OPENSSL_DOING_MAKEDEPEND
83 /* Include any symbols here that have to be explicitly set to enable a feature
84 * that should be visible to makedepend.
86 * [Our "make depend" doesn't actually look at this, we use actual build settings
87 * instead; we want to make it easy to remove subdirectories with disabled algorithms.]
96 /* Generate 80386 code? */
99 #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
100 #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
101 #define ENGINESDIR "/usr/lib/openssl/engines"
102 #define OPENSSLDIR "/System/Library/OpenSSL"
106 #undef OPENSSL_UNISTD
107 #define OPENSSL_UNISTD <unistd.h>
109 #undef OPENSSL_EXPORT_VAR_AS_FUNCTION
111 #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
112 #define IDEA_INT unsigned int
115 #if defined(HEADER_MD2_H) && !defined(MD2_INT)
116 #define MD2_INT unsigned int
119 #if defined(HEADER_RC2_H) && !defined(RC2_INT)
120 /* I need to put in a mod for the alpha - eay */
121 #define RC2_INT unsigned int
124 #if defined(HEADER_RC4_H)
125 #if !defined(RC4_INT)
126 /* using int types make the structure larger but make the code faster
127 * on most boxes I have tested - up to %20 faster. */
129 * I don't know what does "most" mean, but declaring "int" is a must on:
130 * - Intel P6 because partial register stalls are very expensive;
131 * - elder Alpha because it lacks byte load/store instructions;
133 #define RC4_INT unsigned char
135 #if !defined(RC4_CHUNK)
137 * This enables code handling data aligned at natural CPU word
138 * boundary. See crypto/rc4/rc4_enc.c for further details.
140 #define RC4_CHUNK unsigned long
144 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
145 /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
146 * %20 speed up (longs are 8 bytes, int's are 4). */
149 #define DES_LONG unsigned int
151 #define DES_LONG unsigned long
156 #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
157 #define CONFIG_HEADER_BN_H
164 /* Should we define BN_DIV2W here? */
166 /* Only one for the following should be defined */
167 /* The prime number generation stuff may not work when
168 * EIGHT_BIT but I don't care since I've only used this mode
169 * for debuging the bignum libraries */
171 #define SIXTY_FOUR_BIT_LONG
173 #undef SIXTY_FOUR_BIT_LONG
175 #undef SIXTY_FOUR_BIT
177 #undef THIRTY_TWO_BIT
179 #define THIRTY_TWO_BIT
185 #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
186 #define CONFIG_HEADER_RC4_LOCL_H
187 /* if this is defined data[i] is used instead of *data, this is a %20
192 #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
193 #define CONFIG_HEADER_BF_LOCL_H
199 #endif /* HEADER_BF_LOCL_H */
201 #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
202 #define CONFIG_HEADER_DES_LOCL_H
203 #ifndef DES_DEFAULT_OPTIONS
204 /* the following is tweaked from a config script, that is why it is a
205 * protected undef/define */
210 /* This helps C compiler generate the correct code for multiple functional
211 * units. It reduces register dependancies at the expense of 2 more
221 #if defined(DES_RISC1) && defined(DES_RISC2)
222 YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED
!!!!!
225 /* Unroll the inner loop, this sometimes helps, sometimes hinders.
226 * Very mucy CPU dependant */
231 /* These default values were supplied by
232 * Peter Gutman <pgut001@cs.auckland.ac.nz>
233 * They are only used if nothing else has been defined */
234 #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
235 /* Special defines which change the way the code is built depending on the
236 CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
237 even newer MIPS CPU's, but at the moment one size fits all for
238 optimization options. Older Sparc's work better with only UNROLL, but
239 there's no way to tell at compile time what it is you're running on */
241 #if defined( sun ) /* Newer Sparc's */
245 #elif defined( __ultrix ) /* Older MIPS */
249 #elif defined( __osf1__ ) /* Alpha */
252 #elif defined ( _AIX ) /* RS6000 */
254 #elif defined( __hpux ) /* HP-PA */
256 #elif defined( __aux ) /* 68K */
258 #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */
260 #elif defined( __sgi ) /* Newer MIPS */
264 #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */
268 #endif /* Systems-specific speed defines */
271 #endif /* DES_DEFAULT_OPTIONS */
272 #endif /* HEADER_DES_LOCL_H */