Annotation of parser3/src/include/pa_config_fixed.h, revision 1.95

1.5       paf         1: /** @file
                      2:        Parser: Configure file for autoconf-disabled platforms.
                      3: 
1.93      moko        4:        Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com)
1.92      moko        5:        Authors: Konstantin Morshnev <moko@design.ru>, Alexandr Petrosian <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.95    ! moko       11: #define IDENT_PA_CONFIG_FIXED_H "$Id: pa_config_fixed.h,v 1.94 2024/11/04 18:18:05 moko Exp $"
1.1       paf        12: 
1.86      moko       13: #if _MSC_VER < 1310
1.6       paf        14: #define inline  __inline
1.86      moko       15: #endif
1.80      moko       16: 
                     17: #define HAVE_STDIO_H
                     18: #define HAVE_SYS_TYPES_H
1.3       paf        19: #define HAVE_SYS_STAT_H
1.81      moko       20: #define HAVE_STDLIB_H
1.8       parser     21: #define HAVE_STDDEF_H
1.80      moko       22: #define HAVE_MEMORY_H
                     23: #define HAVE_STRING_H
                     24: 
                     25: #define HAVE_ASSERT_H
                     26: #define HAVE_LIMITS_H
1.3       paf        27: #define HAVE_CTYPE_H
                     28: #define HAVE_MATH_H
1.80      moko       29: #define HAVE_PROCESS_H
                     30: #define HAVE_STDARG_H
1.8       parser     31: #define HAVE_SETJMP_H
1.80      moko       32: 
                     33: #define HAVE_ERRNO_H
                     34: #define HAVE_FCNTL_H
                     35: #define HAVE_IO_H
1.31      paf        36: #define HAVE_SYS_LOCKING_H
1.80      moko       37: 
1.50      paf        38: #define HAVE_WINSOCK_H
1.91      moko       39: #define HAVE_TLS 1
1.80      moko       40: 
                     41: #define HAVE_TIME_H
1.51      paf        42: #define HAVE_TIMEZONE
                     43: #define HAVE_DAYLIGHT
1.80      moko       44: 
1.34      paf        45: #define USE_SMTP
1.64      paf        46: #define PA_LITTLE_ENDIAN
1.49      paf        47: #define PA_WITH_SJLJ_EXCEPTIONS
                     48: 
1.79      moko       49: //types
                     50: 
                     51: #ifndef ssize_t
                     52: typedef int ssize_t;
                     53: #endif
                     54: 
1.80      moko       55: #ifndef uint8_t
                     56: typedef unsigned __int8 uint8_t;
                     57: #endif
                     58: 
1.83      moko       59: #ifndef uint16_t
                     60: typedef unsigned __int16 uint16_t;
                     61: #endif
                     62: 
1.79      moko       63: #ifndef uint32_t
1.80      moko       64: typedef unsigned __int32 uint32_t;
                     65: #endif
                     66: 
                     67: #ifndef uint64_t
                     68: typedef unsigned __int64 uint64_t;
1.79      moko       69: #endif
1.31      paf        70: 
1.95    ! moko       71: #ifndef int64_t
        !            72: typedef __int64 int64_t;
        !            73: #endif
        !            74: 
1.82      moko       75: #define LT_MODULE_EXT ".dll"
                     76: 
1.40      paf        77: // disable any execs (file::exec, file::cgi, unix mail:send)
                     78: //#define NO_PA_EXECS
                     79: 
1.72      misha      80: // disable stringstream usage
                     81: //#define NO_STRINGSTREAM
                     82: 
1.84      moko       83: #define GC_NOT_DLL
                     84: 
1.89      moko       85: // otherwise functions in libpcre will be declared as __declspec(dllimport)
                     86: #define PCRE_STATIC
                     87: 
1.66      paf        88: //xml-abled parser
                     89: #define XML
1.80      moko       90: 
1.84      moko       91: #define XML_STATIC
1.67      paf        92: 
1.89      moko       93: // otherwise functions in libxml2 will be declared as __declspec(dllimport)
                     94: #ifdef XML_STATIC
                     95: #define LIBXML_STATIC
                     96: #endif
1.77      moko       97: 
1.74      misha      98: #endif

E-mail: