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:18 -0400 |
commit | 9ee22f1ff66ae3632a4cd0391c487a327ef401ca (patch) | |
tree | 23d819b242d2451a912ef45ded3880dfbfcea301 | |
parent | 7fec5e101a12acbabea6ecef3e7101c5de81e609 (diff) |
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 52d8004ff73..04f4df27cec 100644 --- a/src/timezone/zic.c +++ b/src/timezone/zic.c @@ -35,6 +35,9 @@ typedef int64 zic_t; #define MKDIR_UMASK 0755 #endif #endif +#ifndef S_ISLNK +#define S_ISLNK(m) 0 +#endif struct rule { |