1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Win32 adjustments for dirmod and configure/configure.in.

This commit is contained in:
Bruce Momjian
2004-02-02 22:20:33 +00:00
parent 67aa1962b7
commit 9dac52649d
4 changed files with 19 additions and 6 deletions

View File

@ -10,14 +10,20 @@
* Win32 (NT, Win2k, XP). replace() doesn't work on Win95/98/Me.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/dirmod.c,v 1.9 2004/02/02 00:17:23 momjian Exp $
* $PostgreSQL: pgsql/src/port/dirmod.c,v 1.10 2004/02/02 22:20:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef TEST_VERSION
#if defined(WIN32) || defined(CYGWIN)
#ifndef FRONTEND
#include "postgres.h"
#else
#include "postgres_fe.h"
#endif
#undef rename
#undef unlink
@ -95,6 +101,7 @@ pgunlink(const char *path)
return 0;
}
#endif
#else