File: acconfig.h

package info (click to toggle)
up-imapproxy 1.2.7-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 832 kB
  • ctags: 247
  • sloc: ansic: 3,961; sh: 2,897; makefile: 140; perl: 12
file content (32 lines) | stat: -rwxr-xr-x 441 bytes parent folder | download | duplicates (8)
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

#ifndef _IMAPROXY_CONFIG_H
#define _IMAPROXY_CONFIG_H

@TOP@

/* Define if you have the nfds_t typedef.  */
#undef HAVE_NFDS_T

@BOTTOM@

#if HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif

#ifndef MAP_FAILED
#define MAP_FAILED	((void *) -1)
#endif

#if HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif

#ifndef MAXPATHLEN
#define MAXPATHLEN	4096
#endif

#ifndef HAVE_NFDS_T
typedef unsigned int nfds_t;
#endif

#endif /* _IMAPROXY_CONFIG_H */