1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Un-break MSVC build, per Andrew Dunstan.

This commit is contained in:
Tom Lane
2005-01-10 00:19:51 +00:00
parent ab3bb9cf78
commit 8e4f4078d8
3 changed files with 17 additions and 3 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/path.c,v 1.49 2005/01/06 21:41:45 tgl Exp $
* $PostgreSQL: pgsql/src/port/path.c,v 1.50 2005/01/10 00:19:51 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -18,7 +18,14 @@
#include <ctype.h>
#include <sys/stat.h>
#ifdef WIN32
#ifdef _WIN32_IE
#undef _WIN32_IE
#endif
#define _WIN32_IE 0x0400
#ifdef near
#undef near
#endif
#define near
#include <shlobj.h>
#else
#include <unistd.h>