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