|
|
| version 1.13, 2001/11/15 18:04:18 | version 1.27, 2003/11/20 15:35:30 |
|---|---|
| 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: Alexander Petrosyan <paf@design.ru> (http://paf.design.ru) | Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru) |
| $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. |
| */ | */ |
| #ifndef PA_CONFIG_INCLUDES_H | |
| #define PA_CONFIG_INCLUDES_H | |
| #if _MSC_VER | #if _MSC_VER |
| # pragma warning(disable:4291) // disable warning | # pragma warning(disable:4291) // disable warning |
| // "no matching operator delete found; memory will not be freed if initialization throws an exception | // "no matching operator delete found; memory will not be freed if initialization throws an exception |
| Line 26 | Line 26 |
| # undef inline | # undef inline |
| #endif | #endif |
| #ifdef HAVE_ASSERT_H | |
| # include <assert.h> | |
| #endif | |
| #ifdef HAVE_CTYPE_H | #ifdef HAVE_CTYPE_H |
| # include <ctype.h> | # include <ctype.h> |
| #endif | #endif |
| Line 70 | Line 74 |
| # include <math.h> | # include <math.h> |
| #endif | #endif |
| #ifdef HAVE_TIME_H | #include <stdlib.h> |
| # include <time.h> | |
| #endif | |
| #ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| #endif | |
| #ifdef HAVE_STRING_H | #ifdef HAVE_STRING_H |
| # include <string.h> | # include <string.h> |
| Line 97 | Line 95 |
| #ifdef HAVE_NEW | #ifdef HAVE_NEW |
| #include <new> | #include <new> |
| #endif | #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> | |
| #else | |
| # if defined(HAVE_WINSOCK_H) && !defined(_MSC_VER) && !defined(CYGWIN) | |
| # include <winsock.h> | |
| # endif | |
| #endif | |
| // must go anywhere after winsock [cygwin time.h checks for already inclusion of winsock.h] | |
| #if TIME_WITH_SYS_TIME | |
| # include <sys/time.h> | |
| # include <time.h> | |
| #else | |
| # ifdef HAVE_SYS_TIME_H | |
| # include <sys/time.h> | |
| # else | |
| # include <time.h> | |
| # endif | |
| #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 | |
| // math function replacements | |
| #ifdef __cplusplus | |
| #ifndef HAVE_TRUNC | |
| inline double trunc(double param) { return param > 0? floor(param) : ceil(param); } | |
| #endif | |
| #ifndef HAVE_ROUND | |
| inline double round(double param) { return floor(param+0.5); } | |
| #endif | |
| #ifndef HAVE_SIGN | |
| inline double sign(double param) { return param > 0 ? 1 : ( param < 0 ? -1 : 0 ); } | |
| #endif | |
| #if !defined(max) | |
| inline int max(int a, int b) { return a>b?a:b; } | |
| inline int min(int a, int b){ return a<b?a:b; } | |
| inline size_t max(size_t a, size_t b) { return a>b?a:b; } | |
| inline size_t min(size_t a, size_t b){ return a<b?a:b; } | |
| #endif | |
| #endif | |
| #if _MSC_VER | |
| // using this in calls to parent constructors | |
| #pragma warning(disable:4355) | |
| //# pragma warning(disable:4065) // switch statement contains 'default' | |
| // but no 'case' labels | |
| //# pragma warning(disable:4800) // (bool)(1&2) | |
| // assignment operator could not be generated | |
| //#pragma warning(disable:4512) | |
| // identifier was truncated to '255' characters in the debug information | |
| #pragma warning(disable:4786) | |
| // copy constructor could not be generated | |
| #pragma warning(disable:4511) | |
| // assignment operator could not be generated | |
| #pragma warning(disable:4512) | |
| // unreferenced local function has been removed | |
| #pragma warning(disable:4505) | |
| // conditional expression is constant; while(true) OK | |
| #pragma warning(disable:4127) | |
| // assignment within conditional expression if(type var=somethig) OK | |
| #pragma warning(disable:4706) | |
| #if 0 | |
| #ifdef _DEBUG | |
| # define _CRTDBG_MAP_ALLOC | |
| // When the _CRTDBG_MAP_ALLOC flag is defined in the debug version of an application, | |
| // the base version of the heap functions are directly mapped to their debug versions | |
| #endif | |
| #endif | |
| #endif | |
| #endif |