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