1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

> 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.
This commit is contained in:
Bruce Momjian
2004-02-02 17:21:08 +00:00
parent 9e218af7ed
commit bd2a8078d3
3 changed files with 14 additions and 6 deletions

View File

@ -1,4 +1,6 @@
#ifdef CYGWIN
#include <cygwin/version.h>
#endif
#if CYGWIN_VERSION_DLL_MAJOR < 1001
/* dllinit.c -- Portable DLL initialization.