mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Compilation of libpq for Win32 breaks on 6.4, because of a change that I
missed before the release. It's simply a symbol that is undefined. This patch defines this symbol in "win32.h", so it should have no effect on any other platforms. It should go into 6.4.1 if possible, since compilation is completely broken without it. I am also attaching a patch for the "win32.mak" file - it leaves a file behind when doing "make clean" after the library is built on Visual C++ 6.0. This is not at all as urgent, but I don't see it breaking here, so I think it might as well go in there too? //Magnus
This commit is contained in:
parent
9396802f14
commit
66d64b727f
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#define NO_UNISTD_H
|
#define NO_UNISTD_H
|
||||||
|
#define SOCKET_SIZE_TYPE int
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Some compat functions
|
* Some compat functions
|
||||||
|
@ -33,7 +33,7 @@ CLEAN :
|
|||||||
-@erase "$(OUTDIR)\libpq.lib"
|
-@erase "$(OUTDIR)\libpq.lib"
|
||||||
-@erase "$(OUTDIR)\libpq.dll"
|
-@erase "$(OUTDIR)\libpq.dll"
|
||||||
-@erase "$(OUTDIR)\libpq.res"
|
-@erase "$(OUTDIR)\libpq.res"
|
||||||
-@erase "vc50.pch"
|
-@erase "*.pch"
|
||||||
-@erase "$(OUTDIR)\libpq.pch"
|
-@erase "$(OUTDIR)\libpq.pch"
|
||||||
-@erase "$(OUTDIR)\libpqdll.exp"
|
-@erase "$(OUTDIR)\libpqdll.exp"
|
||||||
-@erase "$(OUTDIR)\libpqdll.lib"
|
-@erase "$(OUTDIR)\libpqdll.lib"
|
||||||
|
Loading…
Reference in New Issue
Block a user