Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7e33fae

Browse files
committed
Add NO_PGPORT defines to fix win32/cygwin builds for new target platform
build of zic.
1 parent4f979e8 commit7e33fae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎src/include/port.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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
#defineTZNAME_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
#definesymlink(oldpath,newpath)pgsymlink(oldpath, newpath)
205205
#endif
206206

207-
#endif/* defined(WIN32) || defined(__CYGWIN__) */
207+
#endif/* defined(WIN32) || defined(__CYGWIN__)&& !defined(NO_PGPORT)*/
208208

209209
externboolrmtree(char*path,boolrmtopdir);
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. */

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp