blob: b76624963d137df6582eba719f523e0b2a77c4b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/* the purpose of this file is to reduce the use of #ifdef's through
the code base by those porting the software, an dto facilitate the
eventual use of autoconf to build the server
*/
#ifndef CONFIG_H
#define CONFIG_H
#define BLCKSZ 8192
#if defined(win32)
# define WIN32
# define NO_UNISTD_H
# define USES_WINSOCK
# define NOFILE 100
#endif /* WIN32 */
#if defined(__FreeBSD__) || defined(__NetBSD__)
# define USE_LIMITS_H
#endif
#if defined(bsdi)
# define USE_LIMITS_H
#endif
#if defined(bsdi_2_1)
# define USE_LIMITS_H
#endif
#if defined(aix)
# define NEED_SYS_SELECT_H
#endif
#if defined(irix5)
# define NO_VFORK
#endif
/* Debug and various "defines" that should be documented */
/* found in function aclparse() in src/backend/utils/adt/acl.c */
/* #define ACLDEBUG */
/* found in src/backend/utils/adt/arrayfuncs.c */
/* #define LOARRAY */
#define ESCAPE_PATCH
#define ARRAY_PATCH
/* found in src/backend/utils/adt/date.c */
/* #define DATEDEBUG */
/* found in src/backend/utils/adt/datetimes.c */
/* #define USE_SHORT_YEAR */
/* #define AMERICAN_STYLE */
/*----------------------------------------*/
/* found in src/backend/utils/adt/float.c */
/*------------------------------------------------------*/
/* defining unsafe floats's will make float4 and float8 */
/* ops faster at the cost of safety, of course! */
/*------------------------------------------------------*/
/* #define UNSAFE_FLOATS */
#endif /* CONFIG_H */
|