Annotation of parser3/src/include/pa_config_includes.h, revision 1.18

1.5       paf         1: /** @file
                      2:        Parser: includes all Configure-d headers
                      3: 
1.16      paf         4:        Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com)
1.17      paf         5:        Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
1.5       paf         6: 
1.18    ! paf         7:        $Id: pa_config_includes.h,v 1.17 2002/02/08 08:30:12 paf Exp $
1.5       paf         8: 
                      9: 
                     10:        when used Configure [HAVE_CONFIG_H] it uses defines from Configure,
                     11:        fixed otherwise.
                     12: */
1.10      parser     13: 
                     14: #if _MSC_VER
                     15: #      pragma warning(disable:4291)   // disable warning 
                     16: //     "no matching operator delete found; memory will not be freed if initialization throws an exception
                     17: #endif
1.5       paf        18: 
1.1       paf        19: #if HAVE_CONFIG_H
                     20: #      include "pa_config_auto.h"
                     21: #else
                     22: #      include "pa_config_fixed.h"
1.6       paf        23: #endif
                     24: 
1.7       paf        25: #ifdef __cplusplus
                     26: #      undef   inline
1.1       paf        27: #endif
                     28: 
1.3       paf        29: #ifdef HAVE_CTYPE_H
                     30: #      include <ctype.h>
                     31: #endif
                     32: 
                     33: #ifdef HAVE_ERRNO_H
                     34: #      include <errno.h>
                     35: #endif
                     36: 
                     37: #ifdef HAVE_FCNTL_H
                     38: #      include <fcntl.h>
                     39: #endif
                     40: 
                     41: #ifdef HAVE_IO_H
                     42: #      include <io.h>
                     43: #endif
                     44: 
                     45: #ifdef HAVE_PROCESS_H
                     46: #      include <process.h>
                     47: #endif
                     48: 
1.1       paf        49: #ifdef HAVE_STDARG_H
                     50: #      include <stdarg.h>
                     51: #endif
                     52: 
1.8       parser     53: #ifdef HAVE_STDDEF_H
                     54: #      include <stddef.h>
                     55: #endif
                     56: 
1.3       paf        57: #ifdef HAVE_STDIO_H
                     58: #      include <stdio.h>
                     59: #endif
                     60: 
                     61: #ifdef HAVE_SYS_STAT_H
                     62: #      include <sys/stat.h>
                     63: #endif
                     64: 
                     65: #if defined(HAVE_UNISTD_H) && !defined(NO_UNISTD_H)
1.1       paf        66: #      include <unistd.h>
                     67: #endif
1.3       paf        68: 
                     69: #ifdef HAVE_MATH_H
                     70: #      include <math.h>
                     71: #endif
                     72: 
1.15      paf        73: #ifdef HAVE_SYS_TIME_H
                     74: #      include <sys/time.h>
1.18    ! paf        75: #endif
        !            76: #ifdef HAVE_TIME_H
        !            77: #      include <time.h>
1.3       paf        78: #endif
                     79: 
                     80: #ifdef HAVE_STDLIB_H
                     81: #      include <stdlib.h>
                     82: #endif
                     83: 
                     84: #ifdef HAVE_STRING_H
                     85: #      include <string.h>
                     86: #endif
                     87: 
1.4       paf        88: #ifdef HAVE_DIRECT_H
                     89: #      include <direct.h>
1.8       parser     90: #endif
                     91: 
                     92: #ifdef HAVE_SETJMP_H
                     93: #      include <setjmp.h>
1.9       parser     94: #endif
                     95: 
                     96: #ifdef HAVE_MEMORY_H
                     97: #      include <memory.h>
1.13      paf        98: #endif
                     99: 
                    100: #ifdef HAVE_NEW
                    101: #include <new>
1.14      paf       102: #endif
                    103: 
                    104: #ifdef HAVE_SYS_FILE_H
                    105: #include <sys/file.h>
                    106: #endif
                    107: 
                    108: #ifdef HAVE_SYS_LOCKING_H
                    109: #include <sys/locking.h>
                    110: #endif
                    111: 
                    112: #ifdef HAVE_SYS_TYPES_H
                    113: #include <sys/types.h>
1.15      paf       114: #endif
                    115: 
                    116: #ifdef HAVE_SYS_SELECT_H
                    117: #include <sys/select.h>
1.4       paf       118: #endif

E-mail: