66 * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
77 * Portions Copyright (c) 1994, Regents of the University of California
88 *
9- * $PostgreSQL: pgsql/src/include/port.h,v 1.77 2005/07/04 19:54:51 momjian Exp $
9+ * $PostgreSQL: pgsql/src/include/port.h,v 1.78 2005/07/05 17:24:30 momjian Exp $
1010 *
1111 *-------------------------------------------------------------------------
1212 */
@@ -178,7 +178,7 @@ extern intpclose_check(FILE *stream);
178178#define TZNAME_GLOBAL _tzname
179179#endif
180180
181- #if defined(WIN32 )|| defined(__CYGWIN__ )
181+ #if ( defined(WIN32 )|| defined(__CYGWIN__ )) && !defined( NO_PGPORT )
182182/*
183183 *Win32 doesn't have reliable rename/unlink during concurrent access,
184184 *and we need special code to do symlinks.
@@ -204,11 +204,11 @@ extern intpgsymlink(const char *oldpath, const char *newpath);
204204#define symlink (oldpath ,newpath )pgsymlink(oldpath, newpath)
205205#endif
206206
207- #endif /* defined(WIN32) || defined(__CYGWIN__) */
207+ #endif /* defined(WIN32) || defined(__CYGWIN__)&& !defined(NO_PGPORT) */
208208
209209extern bool rmtree (char * path ,bool rmtopdir );
210210
211- #if defined(WIN32 )&& !defined(__CYGWIN__ )
211+ #if defined(WIN32 )&& !defined(__CYGWIN__ )&& !defined( NO_PGPORT )
212212
213213/* open() replacement to allow delete of held files and passing
214214 * of special options. */