source: lab.git/Dev/utvpn/utvpn-unix-v101-7101-public/src/Mayaqua/openssl/opensslconf.h @ a1bae3e

trunk
Last change on this file since a1bae3e was a1bae3e, checked in by mitty <mitty@…>, 12 years ago
  • copy vendor drop to trunk

git-svn-id: https://lab.mitty.jp/svn/lab/trunk@147 7d2118f6-f56c-43e7-95a2-4bb3031d96e7

  • Property mode set to 100644
File size: 5.8 KB
Line 
1/* opensslconf.h */
2/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
3
4/* OpenSSL was configured with the following options: */
5#ifndef OPENSSL_DOING_MAKEDEPEND
6
7#ifndef OPENSSL_NO_GMP
8# define OPENSSL_NO_GMP
9#endif
10#ifndef OPENSSL_NO_KRB5
11# define OPENSSL_NO_KRB5
12#endif
13#ifndef OPENSSL_NO_MDC2
14# define OPENSSL_NO_MDC2
15#endif
16#ifndef OPENSSL_NO_RC5
17# define OPENSSL_NO_RC5
18#endif
19
20#endif /* OPENSSL_DOING_MAKEDEPEND */
21#ifndef OPENSSL_NO_DYNAMIC_ENGINE
22# define OPENSSL_NO_DYNAMIC_ENGINE
23#endif
24
25/* The OPENSSL_NO_* macros are also defined as NO_* if the application
26   asks for it.  This is a transient feature that is provided for those
27   who haven't had the time to do the appropriate changes in their
28   applications.  */
29#ifdef OPENSSL_ALGORITHM_DEFINES
30# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
31#  define NO_GMP
32# endif
33# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
34#  define NO_KRB5
35# endif
36# if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
37#  define NO_MDC2
38# endif
39# if defined(OPENSSL_NO_RC5) && !defined(NO_RC5)
40#  define NO_RC5
41# endif
42#endif
43
44/* crypto/opensslconf.h.in */
45
46/* Generate 80386 code? */
47#undef I386_ONLY
48
49#if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
50#if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
51#define ENGINESDIR "/usr/local/ssl/lib/engines"
52#define OPENSSLDIR "/usr/local/ssl"
53#endif
54#endif
55
56#undef OPENSSL_UNISTD
57#define OPENSSL_UNISTD <unistd.h>
58
59#undef OPENSSL_EXPORT_VAR_AS_FUNCTION
60
61#if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
62#define IDEA_INT unsigned int
63#endif
64
65#if defined(HEADER_MD2_H) && !defined(MD2_INT)
66#define MD2_INT unsigned int
67#endif
68
69#if defined(HEADER_RC2_H) && !defined(RC2_INT)
70/* I need to put in a mod for the alpha - eay */
71#define RC2_INT unsigned int
72#endif
73
74#if defined(HEADER_RC4_H)
75#if !defined(RC4_INT)
76/* using int types make the structure larger but make the code faster
77 * on most boxes I have tested - up to %20 faster. */
78/*
79 * I don't know what does "most" mean, but declaring "int" is a must on:
80 * - Intel P6 because partial register stalls are very expensive;
81 * - elder Alpha because it lacks byte load/store instructions;
82 */
83#define RC4_INT unsigned int
84#endif
85#if !defined(RC4_CHUNK)
86/*
87 * This enables code handling data aligned at natural CPU word
88 * boundary. See crypto/rc4/rc4_enc.c for further details.
89 */
90#undef RC4_CHUNK
91#endif
92#endif
93
94#if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
95/* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
96 * %20 speed up (longs are 8 bytes, int's are 4). */
97#ifndef DES_LONG
98#define DES_LONG unsigned long
99#endif
100#endif
101
102#if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
103#define CONFIG_HEADER_BN_H
104#undef BN_LLONG
105
106/* Should we define BN_DIV2W here? */
107
108/* Only one for the following should be defined */
109/* The prime number generation stuff may not work when
110 * EIGHT_BIT but I don't care since I've only used this mode
111 * for debuging the bignum libraries */
112#undef SIXTY_FOUR_BIT_LONG
113#undef SIXTY_FOUR_BIT
114#define THIRTY_TWO_BIT
115#undef SIXTEEN_BIT
116#undef EIGHT_BIT
117#endif
118
119#if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
120#define CONFIG_HEADER_RC4_LOCL_H
121/* if this is defined data[i] is used instead of *data, this is a %20
122 * speedup on x86 */
123#undef RC4_INDEX
124#endif
125
126#if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
127#define CONFIG_HEADER_BF_LOCL_H
128#undef BF_PTR
129#endif /* HEADER_BF_LOCL_H */
130
131#if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
132#define CONFIG_HEADER_DES_LOCL_H
133#ifndef DES_DEFAULT_OPTIONS
134/* the following is tweaked from a config script, that is why it is a
135 * protected undef/define */
136#ifndef DES_PTR
137#undef DES_PTR
138#endif
139
140/* This helps C compiler generate the correct code for multiple functional
141 * units.  It reduces register dependancies at the expense of 2 more
142 * registers */
143#ifndef DES_RISC1
144#undef DES_RISC1
145#endif
146
147#ifndef DES_RISC2
148#undef DES_RISC2
149#endif
150
151#if defined(DES_RISC1) && defined(DES_RISC2)
152YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
153#endif
154
155/* Unroll the inner loop, this sometimes helps, sometimes hinders.
156 * Very mucy CPU dependant */
157#ifndef DES_UNROLL
158#undef DES_UNROLL
159#endif
160
161/* These default values were supplied by
162 * Peter Gutman <pgut001@cs.auckland.ac.nz>
163 * They are only used if nothing else has been defined */
164#if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
165/* Special defines which change the way the code is built depending on the
166   CPU and OS.  For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
167   even newer MIPS CPU's, but at the moment one size fits all for
168   optimization options.  Older Sparc's work better with only UNROLL, but
169   there's no way to tell at compile time what it is you're running on */
170 
171#if defined( sun )      /* Newer Sparc's */
172#  define DES_PTR
173#  define DES_RISC1
174#  define DES_UNROLL
175#elif defined( __ultrix )   /* Older MIPS */
176#  define DES_PTR
177#  define DES_RISC2
178#  define DES_UNROLL
179#elif defined( __osf1__ )   /* Alpha */
180#  define DES_PTR
181#  define DES_RISC2
182#elif defined ( _AIX )      /* RS6000 */
183  /* Unknown */
184#elif defined( __hpux )     /* HP-PA */
185  /* Unknown */
186#elif defined( __aux )      /* 68K */
187  /* Unknown */
188#elif defined( __dgux )     /* 88K (but P6 in latest boxes) */
189#  define DES_UNROLL
190#elif defined( __sgi )      /* Newer MIPS */
191#  define DES_PTR
192#  define DES_RISC2
193#  define DES_UNROLL
194#elif defined(i386) || defined(__i386__)    /* x86 boxes, should be gcc */
195#  define DES_PTR
196#  define DES_RISC1
197#  define DES_UNROLL
198#endif /* Systems-specific speed defines */
199#endif
200
201#endif /* DES_DEFAULT_OPTIONS */
202#endif /* HEADER_DES_LOCL_H */
Note: See TracBrowser for help on using the repository browser.