root/cherokee/trunk/config.h.win32

Revision 198, 0.8 kB (checked in by alo, 3 years ago)

--

Line 
1 /* -*- Mode: C; TABs are evil */
2
3 /* Cherokee
4  *
5  * Authors:
6  *      Gisle Vanem <giva@bgnett.no>
7  *
8  */
9
10 #ifndef _CONFIG_H_WIN32_
11 #define _CONFIG_H_WIN32_
12
13 /* Headers
14  */
15 #ifdef __MINGW32__
16 #define HAVE_INTTYPES_H 1
17 #endif
18
19 #define HAVE_STDINT_H   1
20 #define HAVE_FCNTL_H    1
21
22 /* Functions & features
23  */
24 #define HAVE_INT_TIMEZONE  1
25 #define HAVE_MEMMOVE 1
26 #define HAVE_INET_PTON 1
27 #define HAVE_INET_NTOP 1
28 #define HAVE_CRYPT 1
29 #define HAVE_GETDTABLESIZE 1
30 #define HAVE_WIN32_SELECT 1
31
32 /* Types
33  */
34 #define UWORD32 unsigned long
35
36 /* Misc
37  */
38 #define FD_SETSIZE   256
39 #define _PC_NAME_MAX 256
40 #define SO_SUFFIX    "dll"
41 #define OS_TYPE      "Win32"
42
43
44 #ifdef __MINGW32__
45 #define HAVE_INLINE  1
46 #endif
47
48 #ifndef WEXITSTATUS
49 #define WEXITSTATUS(x) ((x) & 0xff)
50 #endif
51
52 #endif
Note: See TracBrowser for help on using the browser.