|
4 | 4 | eventual use of autoconf to build the server
|
5 | 5 | */
|
6 | 6 |
|
7 |
| -#if defined(WIN32) |
| 7 | +#if defined(win32) |
| 8 | +# defineWIN32 |
8 | 9 | # defineNO_UNISTD_H
|
9 | 10 | # defineUSES_WINSOCK
|
10 | 11 | #endif/* WIN32 */
|
|
29 | 30 | # defineNO_VFORK
|
30 | 31 | #endif
|
31 | 32 |
|
| 33 | + |
| 34 | +/* Debug and various "defines" that should be documented */ |
| 35 | + |
| 36 | +/* found in function aclparse() in src/backend/utils/adt/acl.c */ |
| 37 | +/* #define ACLDEBUG */ |
| 38 | + |
| 39 | +/* found in src/backend/utils/adt/arrayfuncs.c */ |
| 40 | +/* #define LOARRAY */ |
| 41 | +#defineESCAPE_PATCH |
| 42 | +#defineARRAY_PATCH |
| 43 | + |
| 44 | + |
| 45 | +/* found in src/backend/utils/adt/date.c */ |
| 46 | +/* #define DATEDEBUG */ |
| 47 | + |
| 48 | +/* found in src/backend/utils/adt/datetimes.c */ |
| 49 | +/* #define USE_SHORT_YEAR */ |
| 50 | +/* #define AMERICAN_STYLE */ |
| 51 | + |
| 52 | +/*----------------------------------------*/ |
| 53 | +/* found in src/backend/utils/adt/float.c */ |
| 54 | +/*------------------------------------------------------*/ |
| 55 | +/* defining unsafe floats's will make float4 and float8 */ |
| 56 | +/* ops faster at the cost of safety, of course! */ |
| 57 | +/*------------------------------------------------------*/ |
| 58 | +/* #define UNSAFE_FLOATS */ |
| 59 | + |
| 60 | + |