New Configure option --openssldir to replace ssldir.pl.
[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 /* Special defines which change the way the code is built depending on the
62    CPU and OS.  For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
63    even newer MIPS CPU's, but at the moment one size fits all for
64    optimization options.  Older Sparc's work better with only UNROLL, but
65    there's no way to tell at compile time what it is you're running on */
66
67 #if defined( sun )                    /* Newer Sparc's */
68 #  define BF_PTR
69 #elif defined( __ultrix )     /* Older MIPS */
70 #  define BF_PTR
71 #elif defined( __sgi )                /* Newer MIPS */
72 #  define BF_PTR
73 #endif /* Systems-specific speed defines */
74
75 /* use BF_PTR2 for intel boxes,
76  * BF_PTR for sparc and MIPS/SGI
77  * use nothing for Alpha and HP.
78  */
79 #if !defined(BF_PTR) && !defined(BF_PTR2)
80 #define BF_PTR2
81 #endif
82 #endif /* HEADER_BF_LOCL_H */
83
84 #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
85 #define CONFIG_HEADER_DES_LOCL_H
86 #ifndef DES_DEFAULT_OPTIONS
87 /* the following is tweaked from a config script, that is why it is a
88  * protected undef/define */
89 #ifndef DES_PTR
90 #define DES_PTR
91 #endif
92
93 /* This helps C compiler generate the correct code for multiple functional
94  * units.  It reduces register dependancies at the expense of 2 more
95  * registers */
96 #ifndef DES_RISC1
97 #define DES_RISC1
98 #endif
99
100 #ifndef DES_RISC2
101 #undef DES_RISC2
102 #endif
103
104 #if defined(DES_RISC1) && defined(DES_RISC2)
105 YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
106 #endif
107
108 /* Unroll the inner loop, this sometimes helps, sometimes hinders.
109  * Very mucy CPU dependant */
110 #ifndef DES_UNROLL
111 #define DES_UNROLL
112 #endif
113
114 /* These default values were supplied by
115  * Peter Gutman <pgut001@cs.auckland.ac.nz>
116  * They are only used if nothing else has been defined */
117 #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
118 /* Special defines which change the way the code is built depending on the
119    CPU and OS.  For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
120    even newer MIPS CPU's, but at the moment one size fits all for
121    optimization options.  Older Sparc's work better with only UNROLL, but
122    there's no way to tell at compile time what it is you're running on */
123  
124 #if defined( sun )              /* Newer Sparc's */
125 #  define DES_PTR
126 #  define DES_RISC1
127 #  define DES_UNROLL
128 #elif defined( __ultrix )       /* Older MIPS */
129 #  define DES_PTR
130 #  define DES_RISC2
131 #  define DES_UNROLL
132 #elif defined( __osf1__ )       /* Alpha */
133 #  define DES_PTR
134 #  define DES_RISC2
135 #elif defined ( _AIX )          /* RS6000 */
136   /* Unknown */
137 #elif defined( __hpux )         /* HP-PA */
138   /* Unknown */
139 #elif defined( __aux )          /* 68K */
140   /* Unknown */
141 #elif defined( __dgux )         /* 88K (but P6 in latest boxes) */
142 #  define DES_UNROLL
143 #elif defined( __sgi )          /* Newer MIPS */
144 #  define DES_PTR
145 #  define DES_RISC2
146 #  define DES_UNROLL
147 #elif defined( i386 )           /* x86 boxes, should be gcc */
148 #  define DES_PTR
149 #  define DES_RISC1
150 #  define DES_UNROLL
151 #endif /* Systems-specific speed defines */
152 #endif
153
154 #endif /* DES_DEFAULT_OPTIONS */
155 #endif /* HEADER_DES_LOCL_H */