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