Annotation of parser3/src/include/pa_config_fixed.h, revision 1.78
1.5 paf 1: /** @file
2: Parser: Configure file for autoconf-disabled platforms.
3:
1.75 moko 4: Copyright (c) 2001-2012 Art. Lebedev Studio (http://www.artlebedev.com)
1.38 paf 5: Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
1.47 paf 6: */
1.5 paf 7:
1.47 paf 8: #ifndef PA_CONFIG_FIXED_H
9: #define PA_CONFIG_FIXED_H
1.5 paf 10:
1.78 ! moko 11: #define IDENT_PA_CONFIG_FIXED_H "$Id: pa_config_fixed.h,v 1.77 2012-06-18 21:51:42 moko Exp $"
1.1 paf 12:
1.6 paf 13: #define inline __inline
1.56 paf 14: #define HAVE_ASSERT_H
1.1 paf 15: #define HAVE_STDARG_H
1.3 paf 16: #define HAVE_PROCESS_H
17: #define HAVE_FCNTL_H
18: #define HAVE_SYS_STAT_H
19: #define HAVE_IO_H
1.8 parser 20: #define HAVE_STDDEF_H
1.3 paf 21: #define HAVE_STDIO_H
22: #define HAVE_ERRNO_H
23: #define HAVE_CTYPE_H
24: #define HAVE_MATH_H
25: #define HAVE_TIME_H
26: #define HAVE_STRING_H
1.4 paf 27: #define HAVE_DIRECT_H
1.8 parser 28: #define HAVE_SETJMP_H
1.11 parser 29: #define HAVE_MEMORY_H
1.78 ! moko 30: #define HAVE_LIMITS_H
1.31 paf 31: #define HAVE_SYS_LOCKING_H
32: #define HAVE_SYS_TYPES_H
1.50 paf 33: #define HAVE_WINSOCK_H
1.31 paf 34: #define HAVE__LOCKING
1.51 paf 35: #define HAVE_TIMEZONE
36: #define HAVE_DAYLIGHT
1.34 paf 37: #define USE_SMTP
1.64 paf 38: #define PA_LITTLE_ENDIAN
1.49 paf 39: #define PA_WITH_SJLJ_EXCEPTIONS
40:
1.45 paf 41: //gmime
42: #define off_t _off_t
43: #define ssize_t int
1.31 paf 44:
1.40 paf 45: // disable any execs (file::exec, file::cgi, unix mail:send)
46: //#define NO_PA_EXECS
47:
1.72 misha 48: // disable stringstream usage
49: //#define NO_STRINGSTREAM
50:
1.43 paf 51: // has $mail:received
1.61 paf 52: //#define WITH_MAILRECEIVE
1.43 paf 53:
1.66 paf 54: //xml-abled parser
55: #define XML
1.56 paf 56: //#define XML_STATIC
57: #ifdef XML_STATIC
58: # define LIBXML_STATIC
59: # define LIBXSLT_STATIC
60: # define LIBEXSLT_STATIC
61: #endif
1.67 paf 62:
1.77 moko 63: // otherwise functions in pcre.h will be declared as __declspec(dllimport)
64: #define PCRE_STATIC
65:
1.74 misha 66: #endif
E-mail: