forked from cherokee/webserver
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.h.win32
More file actions
52 lines (41 loc) · 774 Bytes
/
config.h.win32
File metadata and controls
52 lines (41 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* -*- Mode: C; TABs are evil */
/* Cherokee
*
* Authors:
* Gisle Vanem <giva@bgnett.no>
*
*/
#ifndef _CONFIG_H_WIN32_
#define _CONFIG_H_WIN32_
/* Headers
*/
#ifdef __MINGW32__
#define HAVE_INTTYPES_H 1
#endif
#define HAVE_STDINT_H 1
#define HAVE_FCNTL_H 1
/* Functions & features
*/
#define HAVE_INT_TIMEZONE 1
#define HAVE_MEMMOVE 1
#define HAVE_INET_PTON 1
#define HAVE_INET_NTOP 1
#define HAVE_CRYPT 1
#define HAVE_GETDTABLESIZE 1
#define HAVE_WIN32_SELECT 1
/* Types
*/
#define UWORD32 unsigned long
/* Misc
*/
#define FD_SETSIZE 256
#define _PC_NAME_MAX 256
#define SO_SUFFIX "dll"
#define OS_TYPE "Win32"
#ifdef __MINGW32__
#define HAVE_INLINE 1
#endif
#ifndef WEXITSTATUS
#define WEXITSTATUS(x) ((x) & 0xff)
#endif
#endif