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