Annotation of sql/oracle/config_includes.h, revision 1.5

1.1       parser      1: /** @file
                      2:        Parser PgSQL driver: includes all Configure-d headers
                      3: 
1.5     ! moko        4:        Copyright (c) 2001-2012 Art. Lebedev Studio (http://www.artlebedev.com)
1.1       parser      5: 
                      6:        Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)
                      7: 
1.5     ! moko        8:        $Id: config_includes.h,v 1.4 2003-01-21 15:51:29 paf Exp $
1.1       parser      9: 
                     10: 
                     11:        when used Configure [HAVE_CONFIG_H] it uses defines from Configure,
                     12:        fixed otherwise.
                     13: */
                     14: 
                     15: #if HAVE_CONFIG_H
                     16: #      include "config_auto.h"
                     17: #else
                     18: #      include "config_fixed.h"
                     19: #endif
                     20: 
                     21: #ifdef HAVE_STRING_H
                     22: #      include <string.h>
                     23: #endif
                     24: 
                     25: #ifdef HAVE_STDIO_H
                     26: #      include <stdio.h>
                     27: #endif
                     28: 
                     29: #ifdef HAVE_STDLIB_H
                     30: #      include <stdlib.h>
                     31: #endif
                     32: 
1.2       paf        33: #ifdef HAVE_CTYPE_H
                     34: #      include <ctype.h>
                     35: #endif
                     36: 
1.1       parser     37: #ifdef HAVE_SETJMP_H
                     38: #      include <setjmp.h>
                     39: #endif

E-mail: