diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-10-19 19:28:11 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-10-19 19:28:26 -0400 |
commit | fba888a8779e16ae25c1443e3a7fdea44817c87c (patch) | |
tree | 62b2edd0951b3e57545ea301def8cdb41651b020 | |
parent | 381c4b03b3956f0a9e2eb9a83e4b3038e959adde (diff) | |
download | postgresql-fba888a8779e16ae25c1443e3a7fdea44817c87c.tar.gz postgresql-fba888a8779e16ae25c1443e3a7fdea44817c87c.zip |
Windows portability fix.
Per buildfarm.
-rw-r--r-- | src/timezone/zic.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/timezone/zic.c b/src/timezone/zic.c index b698a7cf7c5..22179e5b253 100644 --- a/src/timezone/zic.c +++ b/src/timezone/zic.c @@ -40,6 +40,9 @@ typedef int64 zic_t; #define MKDIR_UMASK 0755 #endif #endif +#ifndef S_ISLNK +#define S_ISLNK(m) 0 +#endif struct rule { |