39 lines
681 B
C
39 lines
681 B
C
|
@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
|