|
|
| version 1.6, 2001/05/10 17:28:11 | version 1.23, 2003/01/21 15:51:10 |
|---|---|
| Line 1 | Line 1 |
| /** @file | /** @file |
| Parser: includes all Configure-d headers | Parser: includes all Configure-d headers |
| Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) | Copyright (c) 2001, 2003 ArtLebedev Group (http://www.artlebedev.com) |
| Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru) | |
| Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf) | |
| $Id$ | |
| when used Configure [HAVE_CONFIG_H] it uses defines from Configure, | when used Configure [HAVE_CONFIG_H] it uses defines from Configure, |
| fixed otherwise. | fixed otherwise. |
| */ | */ |
| #if _MSC_VER | |
| # pragma warning(disable:4291) // disable warning | |
| // "no matching operator delete found; memory will not be freed if initialization throws an exception | |
| #endif | |
| #if HAVE_CONFIG_H | #if HAVE_CONFIG_H |
| # include "pa_config_auto.h" | # include "pa_config_auto.h" |
| #else | #else |
| # include "pa_config_fixed.h" | # include "pa_config_fixed.h" |
| #endif | #endif |
| #ifndef inline | #ifdef __cplusplus |
| /* there must be 'inline' to compile parser */ | # undef inline |
| # define inline inline | |
| #endif | #endif |
| #ifdef HAVE_CTYPE_H | #ifdef HAVE_CTYPE_H |
| Line 47 | Line 47 |
| # include <stdarg.h> | # include <stdarg.h> |
| #endif | #endif |
| #ifdef HAVE_STDDEF_H | |
| # include <stddef.h> | |
| #endif | |
| #ifdef HAVE_STDIO_H | #ifdef HAVE_STDIO_H |
| # include <stdio.h> | # include <stdio.h> |
| #endif | #endif |
| Line 63 | Line 67 |
| # include <math.h> | # include <math.h> |
| #endif | #endif |
| #ifdef HAVE_TIME_H | #if TIME_WITH_SYS_TIME |
| # include <sys/time.h> | |
| # include <time.h> | # include <time.h> |
| #else | |
| # ifdef HAVE_SYS_TIME_H | |
| # include <sys/time.h> | |
| # else | |
| # include <time.h> | |
| # endif | |
| #endif | #endif |
| #ifdef HAVE_STDLIB_H | #ifdef HAVE_STDLIB_H |
| Line 78 | Line 89 |
| #ifdef HAVE_DIRECT_H | #ifdef HAVE_DIRECT_H |
| # include <direct.h> | # include <direct.h> |
| #endif | #endif |
| #ifdef HAVE_SETJMP_H | |
| # include <setjmp.h> | |
| #endif | |
| #ifdef HAVE_MEMORY_H | |
| # include <memory.h> | |
| #endif | |
| #ifdef HAVE_NEW | |
| #include <new> | |
| #endif | |
| #ifdef HAVE_SYS_FILE_H | |
| #include <sys/file.h> | |
| #endif | |
| #ifdef HAVE_SYS_LOCKING_H | |
| #include <sys/locking.h> | |
| #endif | |
| #ifdef HAVE_SYS_TYPES_H | |
| #include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_SELECT_H | |
| #include <sys/select.h> | |
| #endif | |
| #ifdef HAVE_SIGNAL_H | |
| #include <signal.h> | |
| #endif | |
| #ifdef HAVE_SYS_SOCKET_H | |
| #include <sys/socket.h> | |
| #endif | |
| #ifdef HAVE_NETINET_IN_H | |
| #include <netinet/in.h> | |
| #endif | |
| #ifdef HAVE_ARPA_INET_H | |
| #include <arpa/inet.h> | |
| #endif | |
| #ifdef HAVE_NETDB_H | |
| #include <netdb.h> | |
| #endif |