aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-10-19 19:28:11 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2016-10-19 19:28:26 -0400
commitfba888a8779e16ae25c1443e3a7fdea44817c87c (patch)
tree62b2edd0951b3e57545ea301def8cdb41651b020
parent381c4b03b3956f0a9e2eb9a83e4b3038e959adde (diff)
downloadpostgresql-fba888a8779e16ae25c1443e3a7fdea44817c87c.tar.gz
postgresql-fba888a8779e16ae25c1443e3a7fdea44817c87c.zip
Windows portability fix.
Per buildfarm.
-rw-r--r--src/timezone/zic.c3
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
{