File: libetpan-config.h.in

package info (click to toggle)
libetpan 0.48-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 7,744 kB
  • ctags: 5,766
  • sloc: ansic: 92,516; sh: 8,369; makefile: 608; cpp: 16
file content (38 lines) | stat: -rw-r--r-- 681 bytes parent folder | download
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
@ifndef LIBETPAN_CONFIG_H

@define LIBETPAN_CONFIG_H

#ifndef CONFIG_H
#define CONFIG_H
#include "config.h"
#endif
@ifdef _MSC_VER
@	define MMAP_UNAVAILABLE
@	define inline __inline
@endif
#ifdef HAVE_LIMITS_H
@include <limits.h>
#endif
#ifdef HAVE_SYS_PARAM_H
/* support for ARM platforms with a 2.95.3 arm-gcc suite */
@include <sys/param.h>
#endif
#if HAVE_INTTYPES_H
@include <inttypes.h>
#endif

@define MAIL_DIR_SEPARATOR '/'

@define MAIL_DIR_SEPARATOR_S "/"

@ifdef _MSC_VER
@    ifdef LIBETPAN_DLL
@       define LIBETPAN_EXPORT __declspec(dllexport)
@   else
@        define LIBETPAN_EXPORT __declspec(dllimport)
@   endif
@else
@   define LIBETPAN_EXPORT
@endif

@endif