OSDN Git Service

2937da7b620ff3c1192a44bd3c6d90b0dd9c90a3
[ffftp/ffftp.git] / contrib / openssl / include / openssl / e_os2.h
1 /* e_os2.h */\r
2 /* ====================================================================\r
3  * Copyright (c) 1998-2000 The OpenSSL Project.  All rights reserved.\r
4  *\r
5  * Redistribution and use in source and binary forms, with or without\r
6  * modification, are permitted provided that the following conditions\r
7  * are met:\r
8  *\r
9  * 1. Redistributions of source code must retain the above copyright\r
10  *    notice, this list of conditions and the following disclaimer.\r
11  *\r
12  * 2. Redistributions in binary form must reproduce the above copyright\r
13  *    notice, this list of conditions and the following disclaimer in\r
14  *    the documentation and/or other materials provided with the\r
15  *    distribution.\r
16  *\r
17  * 3. All advertising materials mentioning features or use of this\r
18  *    software must display the following acknowledgment:\r
19  *    "This product includes software developed by the OpenSSL Project\r
20  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"\r
21  *\r
22  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to\r
23  *    endorse or promote products derived from this software without\r
24  *    prior written permission. For written permission, please contact\r
25  *    openssl-core@openssl.org.\r
26  *\r
27  * 5. Products derived from this software may not be called "OpenSSL"\r
28  *    nor may "OpenSSL" appear in their names without prior written\r
29  *    permission of the OpenSSL Project.\r
30  *\r
31  * 6. Redistributions of any form whatsoever must retain the following\r
32  *    acknowledgment:\r
33  *    "This product includes software developed by the OpenSSL Project\r
34  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"\r
35  *\r
36  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY\r
37  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
39  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR\r
40  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
41  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\r
42  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
43  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
44  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\r
45  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
46  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\r
47  * OF THE POSSIBILITY OF SUCH DAMAGE.\r
48  * ====================================================================\r
49  *\r
50  * This product includes cryptographic software written by Eric Young\r
51  * (eay@cryptsoft.com).  This product includes software written by Tim\r
52  * Hudson (tjh@cryptsoft.com).\r
53  *\r
54  */\r
55 \r
56 #include <openssl/opensslconf.h>\r
57 \r
58 #ifndef HEADER_E_OS2_H\r
59 #define HEADER_E_OS2_H\r
60 \r
61 #ifdef  __cplusplus\r
62 extern "C" {\r
63 #endif\r
64 \r
65 /******************************************************************************\r
66  * Detect operating systems.  This probably needs completing.\r
67  * The result is that at least one OPENSSL_SYS_os macro should be defined.\r
68  * However, if none is defined, Unix is assumed.\r
69  **/\r
70 \r
71 #define OPENSSL_SYS_UNIX\r
72 \r
73 /* ----------------------- Macintosh, before MacOS X ----------------------- */\r
74 #if defined(__MWERKS__) && defined(macintosh) || defined(OPENSSL_SYSNAME_MAC)\r
75 # undef OPENSSL_SYS_UNIX\r
76 # define OPENSSL_SYS_MACINTOSH_CLASSIC\r
77 #endif\r
78 \r
79 /* ----------------------- NetWare ----------------------------------------- */\r
80 #if defined(NETWARE) || defined(OPENSSL_SYSNAME_NETWARE)\r
81 # undef OPENSSL_SYS_UNIX\r
82 # define OPENSSL_SYS_NETWARE\r
83 #endif\r
84 \r
85 /* ---------------------- Microsoft operating systems ---------------------- */\r
86 \r
87 /* Note that MSDOS actually denotes 32-bit environments running on top of\r
88    MS-DOS, such as DJGPP one. */\r
89 #if defined(OPENSSL_SYSNAME_MSDOS)\r
90 # undef OPENSSL_SYS_UNIX\r
91 # define OPENSSL_SYS_MSDOS\r
92 #endif\r
93 \r
94 /* For 32 bit environment, there seems to be the CygWin environment and then\r
95    all the others that try to do the same thing Microsoft does... */\r
96 #if defined(OPENSSL_SYSNAME_UWIN)\r
97 # undef OPENSSL_SYS_UNIX\r
98 # define OPENSSL_SYS_WIN32_UWIN\r
99 #else\r
100 # if defined(__CYGWIN32__) || defined(OPENSSL_SYSNAME_CYGWIN32)\r
101 #  undef OPENSSL_SYS_UNIX\r
102 #  define OPENSSL_SYS_WIN32_CYGWIN\r
103 # else\r
104 #  if defined(_WIN32) || defined(OPENSSL_SYSNAME_WIN32)\r
105 #   undef OPENSSL_SYS_UNIX\r
106 #   define OPENSSL_SYS_WIN32\r
107 #  endif\r
108 #  if defined(OPENSSL_SYSNAME_WINNT)\r
109 #   undef OPENSSL_SYS_UNIX\r
110 #   define OPENSSL_SYS_WINNT\r
111 #  endif\r
112 #  if defined(OPENSSL_SYSNAME_WINCE)\r
113 #   undef OPENSSL_SYS_UNIX\r
114 #   define OPENSSL_SYS_WINCE\r
115 #  endif\r
116 # endif\r
117 #endif\r
118 \r
119 /* Anything that tries to look like Microsoft is "Windows" */\r
120 #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WINNT) || defined(OPENSSL_SYS_WINCE)\r
121 # undef OPENSSL_SYS_UNIX\r
122 # define OPENSSL_SYS_WINDOWS\r
123 # ifndef OPENSSL_SYS_MSDOS\r
124 #  define OPENSSL_SYS_MSDOS\r
125 # endif\r
126 #endif\r
127 \r
128 /* DLL settings.  This part is a bit tough, because it's up to the application\r
129    implementor how he or she will link the application, so it requires some\r
130    macro to be used. */\r
131 #ifdef OPENSSL_SYS_WINDOWS\r
132 # ifndef OPENSSL_OPT_WINDLL\r
133 #  if defined(_WINDLL) /* This is used when building OpenSSL to indicate that\r
134                           DLL linkage should be used */\r
135 #   define OPENSSL_OPT_WINDLL\r
136 #  endif\r
137 # endif\r
138 #endif\r
139 \r
140 /* -------------------------------- OpenVMS -------------------------------- */\r
141 #if defined(__VMS) || defined(VMS) || defined(OPENSSL_SYSNAME_VMS)\r
142 # undef OPENSSL_SYS_UNIX\r
143 # define OPENSSL_SYS_VMS\r
144 # if defined(__DECC)\r
145 #  define OPENSSL_SYS_VMS_DECC\r
146 # elif defined(__DECCXX)\r
147 #  define OPENSSL_SYS_VMS_DECC\r
148 #  define OPENSSL_SYS_VMS_DECCXX\r
149 # else\r
150 #  define OPENSSL_SYS_VMS_NODECC\r
151 # endif\r
152 #endif\r
153 \r
154 /* --------------------------------- OS/2 ---------------------------------- */\r
155 #if defined(__EMX__) || defined(__OS2__)\r
156 # undef OPENSSL_SYS_UNIX\r
157 # define OPENSSL_SYS_OS2\r
158 #endif\r
159 \r
160 /* --------------------------------- Unix ---------------------------------- */\r
161 #ifdef OPENSSL_SYS_UNIX\r
162 # if defined(linux) || defined(__linux__) || defined(OPENSSL_SYSNAME_LINUX)\r
163 #  define OPENSSL_SYS_LINUX\r
164 # endif\r
165 # ifdef OPENSSL_SYSNAME_MPE\r
166 #  define OPENSSL_SYS_MPE\r
167 # endif\r
168 # ifdef OPENSSL_SYSNAME_SNI\r
169 #  define OPENSSL_SYS_SNI\r
170 # endif\r
171 # ifdef OPENSSL_SYSNAME_ULTRASPARC\r
172 #  define OPENSSL_SYS_ULTRASPARC\r
173 # endif\r
174 # ifdef OPENSSL_SYSNAME_NEWS4\r
175 #  define OPENSSL_SYS_NEWS4\r
176 # endif\r
177 # ifdef OPENSSL_SYSNAME_MACOSX\r
178 #  define OPENSSL_SYS_MACOSX\r
179 # endif\r
180 # ifdef OPENSSL_SYSNAME_MACOSX_RHAPSODY\r
181 #  define OPENSSL_SYS_MACOSX_RHAPSODY\r
182 #  define OPENSSL_SYS_MACOSX\r
183 # endif\r
184 # ifdef OPENSSL_SYSNAME_SUNOS\r
185 #  define OPENSSL_SYS_SUNOS\r
186 #endif\r
187 # if defined(_CRAY) || defined(OPENSSL_SYSNAME_CRAY)\r
188 #  define OPENSSL_SYS_CRAY\r
189 # endif\r
190 # if defined(_AIX) || defined(OPENSSL_SYSNAME_AIX)\r
191 #  define OPENSSL_SYS_AIX\r
192 # endif\r
193 #endif\r
194 \r
195 /* --------------------------------- VOS ----------------------------------- */\r
196 #ifdef OPENSSL_SYSNAME_VOS\r
197 # define OPENSSL_SYS_VOS\r
198 #endif\r
199 \r
200 /* ------------------------------- VxWorks --------------------------------- */\r
201 #ifdef OPENSSL_SYSNAME_VXWORKS\r
202 # define OPENSSL_SYS_VXWORKS\r
203 #endif\r
204 \r
205 /* --------------------------------- BeOS ---------------------------------- */\r
206 #if defined(__BEOS__)\r
207 # define OPENSSL_SYS_BEOS\r
208 # include <sys/socket.h>\r
209 # if defined(BONE_VERSION)\r
210 #  define OPENSSL_SYS_BEOS_BONE\r
211 # else\r
212 #  define OPENSSL_SYS_BEOS_R5\r
213 # endif\r
214 #endif\r
215 \r
216 /**\r
217  * That's it for OS-specific stuff\r
218  *****************************************************************************/\r
219 \r
220 \r
221 /* Specials for I/O an exit */\r
222 #ifdef OPENSSL_SYS_MSDOS\r
223 # define OPENSSL_UNISTD_IO <io.h>\r
224 # define OPENSSL_DECLARE_EXIT extern void exit(int);\r
225 #else\r
226 # define OPENSSL_UNISTD_IO OPENSSL_UNISTD\r
227 # define OPENSSL_DECLARE_EXIT /* declared in unistd.h */\r
228 #endif\r
229 \r
230 /* Definitions of OPENSSL_GLOBAL and OPENSSL_EXTERN, to define and declare\r
231    certain global symbols that, with some compilers under VMS, have to be\r
232    defined and declared explicitely with globaldef and globalref.\r
233    Definitions of OPENSSL_EXPORT and OPENSSL_IMPORT, to define and declare\r
234    DLL exports and imports for compilers under Win32.  These are a little\r
235    more complicated to use.  Basically, for any library that exports some\r
236    global variables, the following code must be present in the header file\r
237    that declares them, before OPENSSL_EXTERN is used:\r
238 \r
239    #ifdef SOME_BUILD_FLAG_MACRO\r
240    # undef OPENSSL_EXTERN\r
241    # define OPENSSL_EXTERN OPENSSL_EXPORT\r
242    #endif\r
243 \r
244    The default is to have OPENSSL_EXPORT, OPENSSL_IMPORT and OPENSSL_GLOBAL\r
245    have some generally sensible values, and for OPENSSL_EXTERN to have the\r
246    value OPENSSL_IMPORT.\r
247 */\r
248 \r
249 #if defined(OPENSSL_SYS_VMS_NODECC)\r
250 # define OPENSSL_EXPORT globalref\r
251 # define OPENSSL_IMPORT globalref\r
252 # define OPENSSL_GLOBAL globaldef\r
253 #elif defined(OPENSSL_SYS_WINDOWS) && defined(OPENSSL_OPT_WINDLL)\r
254 # define OPENSSL_EXPORT extern __declspec(dllexport)\r
255 # define OPENSSL_IMPORT extern __declspec(dllimport)\r
256 # define OPENSSL_GLOBAL\r
257 #else\r
258 # define OPENSSL_EXPORT extern\r
259 # define OPENSSL_IMPORT extern\r
260 # define OPENSSL_GLOBAL\r
261 #endif\r
262 #define OPENSSL_EXTERN OPENSSL_IMPORT\r
263 \r
264 /* Macros to allow global variables to be reached through function calls when\r
265    required (if a shared library version requires it, for example.\r
266    The way it's done allows definitions like this:\r
267 \r
268         // in foobar.c\r
269         OPENSSL_IMPLEMENT_GLOBAL(int,foobar,0)\r
270         // in foobar.h\r
271         OPENSSL_DECLARE_GLOBAL(int,foobar);\r
272         #define foobar OPENSSL_GLOBAL_REF(foobar)\r
273 */\r
274 #ifdef OPENSSL_EXPORT_VAR_AS_FUNCTION\r
275 # define OPENSSL_IMPLEMENT_GLOBAL(type,name,value)                      \\r
276         type *_shadow_##name(void)                                      \\r
277         { static type _hide_##name=value; return &_hide_##name; }\r
278 # define OPENSSL_DECLARE_GLOBAL(type,name) type *_shadow_##name(void)\r
279 # define OPENSSL_GLOBAL_REF(name) (*(_shadow_##name()))\r
280 #else\r
281 # define OPENSSL_IMPLEMENT_GLOBAL(type,name,value) OPENSSL_GLOBAL type _shadow_##name=value;\r
282 # define OPENSSL_DECLARE_GLOBAL(type,name) OPENSSL_EXPORT type _shadow_##name\r
283 # define OPENSSL_GLOBAL_REF(name) _shadow_##name\r
284 #endif\r
285 \r
286 #ifdef  __cplusplus\r
287 }\r
288 #endif\r
289 #endif\r