diff options
author | Bruce Momjian | 2004-02-02 17:21:08 +0000 |
---|---|---|
committer | Bruce Momjian | 2004-02-02 17:21:08 +0000 |
commit | bd2a8078d3e456e6b4ea710ee31cfc204f6596f1 (patch) | |
tree | 9831cdafc449f760d34a1661fdf12c0b78e23b20 /src/utils/dllinit.c | |
parent | 9e218af7edc63125436c895891119d15873f5a24 (diff) |
> src/backend/commands/user.c file has some parse error at repalloc(),
palloc()$
Fixed. Thanks.
> src/backend/postmaster/pgstat.c miss
> #include "tcop/tcopprot.h" line.
Fixed.
> src/utils/dllinit.c wrong include header line at MinGW.
> #include <cygwin/version.h> must be not included
Fixed.
> by the way,
> I can't compile eccp because I used lower version bison.
> and bin/pg_resetxlog too. in this case I can't find what's wrong.
Fixed.
Diffstat (limited to 'src/utils/dllinit.c')
-rw-r--r-- | src/utils/dllinit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils/dllinit.c b/src/utils/dllinit.c index e30a76a5f25..264806e4abb 100644 --- a/src/utils/dllinit.c +++ b/src/utils/dllinit.c @@ -1,4 +1,6 @@ +#ifdef CYGWIN #include <cygwin/version.h> +#endif #if CYGWIN_VERSION_DLL_MAJOR < 1001 /* dllinit.c -- Portable DLL initialization. |