diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 07:30:55 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 07:30:55 +0000 |
commit | e733befeed1eded642d622a523e758831839bcf8 (patch) | |
tree | 54e0a01a72ad1c5c54ca8c0d916e239ca89d69ee /src | |
parent | 849292a188125fdb7ca7e9c7c51def4c3392922f (diff) | |
download | postgresql-e733befeed1eded642d622a523e758831839bcf8.tar.gz postgresql-e733befeed1eded642d622a523e758831839bcf8.zip |
One file at a time, one directory after the other...this is going
to be one helluva chore to clean up...
Diffstat (limited to 'src')
-rw-r--r-- | src/include/config.h | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/src/include/config.h b/src/include/config.h index 0bf483d4ca3..2f1cd1b72e3 100644 --- a/src/include/config.h +++ b/src/include/config.h @@ -4,7 +4,8 @@ eventual use of autoconf to build the server */ -#if defined(WIN32) +#if defined(win32) +# define WIN32 # define NO_UNISTD_H # define USES_WINSOCK #endif /* WIN32 */ @@ -29,3 +30,31 @@ # 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 */ + + |