Convert casted X509_INFO stacks to type-safe STACK_OF(X509_INFO).
[openssl.git] / crypto / opensslconf.h.in
1 /* crypto/opensslconf.h */
2 /* WARNING: This file is autogenerated by Configure */
3
4 #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
5 #define OPENSSLDIR "/usr/local/ssl"
6 #endif
7
8 #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
9 #define IDEA_INT unsigned int
10 #endif
11
12 #if defined(HEADER_MD2_H) && !defined(MD2_INT)
13 #define MD2_INT unsigned int
14 #endif
15
16 #if defined(HEADER_RC2_H) && !defined(RC2_INT)
17 /* I need to put in a mod for the alpha - eay */
18 #define RC2_INT unsigned int
19 #endif
20
21 #if defined(HEADER_RC4_H) && !defined(RC4_INT)
22 /* using int types make the structure larger but make the code faster
23  * on most boxes I have tested - up to %20 faster. */
24 #define RC4_INT unsigned int
25 #endif
26
27 #if defined(HEADER_DES_H) && !defined(DES_LONG)
28 /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
29  * %20 speed up (longs are 8 bytes, int's are 4). */
30 #ifndef DES_LONG
31 #define DES_LONG unsigned long
32 #endif
33 #endif
34
35 #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
36 #define CONFIG_HEADER_BN_H
37 #define BN_LLONG
38
39 /* Should we define BN_DIV2W here? */
40
41 /* Only one for the following should be defined */
42 /* The prime number generation stuff may not work when
43  * EIGHT_BIT but I don't care since I've only used this mode
44  * for debuging the bignum libraries */
45 #undef SIXTY_FOUR_BIT_LONG
46 #undef SIXTY_FOUR_BIT
47 #define THIRTY_TWO_BIT
48 #undef SIXTEEN_BIT
49 #undef EIGHT_BIT
50 #endif
51
52 #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
53 #define CONFIG_HEADER_RC4_LOCL_H
54 /* if this is defined data[i] is used instead of *data, this is a %20
55  * speedup on x86 */
56 #define RC4_INDEX
57 #endif
58
59 #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
60 #define CONFIG_HEADER_BF_LOCL_H
61 #undef BF_PTR
62 #endif /* HEADER_BF_LOCL_H */
63
64 #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
65 #define CONFIG_HEADER_DES_LOCL_H
66 #ifndef DES_DEFAULT_OPTIONS
67 /* the following is tweaked from a config script, that is why it is a
68  * protected undef/define */
69 #ifndef DES_PTR
70 #define DES_PTR
71 #endif
72
73 /* This helps C compiler generate the correct code for multiple functional
74  * units.  It reduces register dependancies at the expense of 2 more
75  * registers */
76 #ifndef DES_RISC1
77 #define DES_RISC1
78 #endif
79
80 #ifndef DES_RISC2
81 #undef DES_RISC2
82 #endif
83
84 #if defined(DES_RISC1) && defined(DES_RISC2)
85 YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
86 #endif
87
88 /* Unroll the inner loop, this sometimes helps, sometimes hinders.
89  * Very mucy CPU dependant */
90 #ifndef DES_UNROLL
91 #define DES_UNROLL
92 #endif
93
94 /* These default values were supplied by
95  * Peter Gutman <pgut001@cs.auckland.ac.nz>
96  * They are only used if nothing else has been defined */
97 #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
98 /* Special defines which change the way the code is built depending on the
99    CPU and OS.  For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
100    even newer MIPS CPU's, but at the moment one size fits all for
101    optimization options.  Older Sparc's work better with only UNROLL, but
102    there's no way to tell at compile time what it is you're running on */
103  
104 #if defined( sun )              /* Newer Sparc's */
105 #  define DES_PTR
106 #  define DES_RISC1
107 #  define DES_UNROLL
108 #elif defined( __ultrix )       /* Older MIPS */
109 #  define DES_PTR
110 #  define DES_RISC2
111 #  define DES_UNROLL
112 #elif defined( __osf1__ )       /* Alpha */
113 #  define DES_PTR
114 #  define DES_RISC2
115 #elif defined ( _AIX )          /* RS6000 */
116   /* Unknown */
117 #elif defined( __hpux )         /* HP-PA */
118   /* Unknown */
119 #elif defined( __aux )          /* 68K */
120   /* Unknown */
121 #elif defined( __dgux )         /* 88K (but P6 in latest boxes) */
122 #  define DES_UNROLL
123 #elif defined( __sgi )          /* Newer MIPS */
124 #  define DES_PTR
125 #  define DES_RISC2
126 #  define DES_UNROLL
127 #elif defined( i386 )           /* x86 boxes, should be gcc */
128 #  define DES_PTR
129 #  define DES_RISC1
130 #  define DES_UNROLL
131 #endif /* Systems-specific speed defines */
132 #endif
133
134 #endif /* DES_DEFAULT_OPTIONS */
135 #endif /* HEADER_DES_LOCL_H */