1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-22 14:32:25 +03:00

Fix Win32/Cygwin problems:

After updating to the latest cvs, and also building most of the addons
(like PLs), the following patch is neededf for win32 + Visual C++.

* Switch to use the new win32 semaphore code
* Rename win32_open to pgwin32_open. win32_open collides with symbols
defined in Perl. MingW didn't detect ig, MSVC did. And it's a bit too
generic a name to export globally, imho...
* Python defines some partially broken #pragmas in the headers when
doing a debug build. Workaround.

Magnus Hagander
This commit is contained in:
Bruce Momjian
2006-06-25 00:18:24 +00:00
parent ac7a126d0c
commit d8f75d4131
4 changed files with 19 additions and 8 deletions

View File

@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/port.h,v 1.92 2006/06/07 22:24:45 momjian Exp $
* $PostgreSQL: pgsql/src/include/port.h,v 1.93 2006/06/25 00:18:24 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -246,10 +246,10 @@ extern bool rmtree(char *path, bool rmtopdir);
/* open() replacement to allow delete of held files and passing
* of special options. */
extern int win32_open(const char *, int,...);
extern int pgwin32_open(const char *, int,...);
#ifndef FRONTEND
#define open(a,b,c) win32_open(a,b,c)
#define open(a,b,c) pgwin32_open(a,b,c)
#endif
#define popen(a,b) _popen(a,b)