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:11 -0400 |
commit | ad90ac4d671d320ade3c127f215e97cd49c307fb (patch) | |
tree | 7347c5c1ea95c83b29fbb1b3d76aa89ed0464b1e /src | |
parent | f3094920a567cde6c86adf36a1a033d7431b11ff (diff) | |
download | postgresql-ad90ac4d671d320ade3c127f215e97cd49c307fb.tar.gz postgresql-ad90ac4d671d320ade3c127f215e97cd49c307fb.zip |
Windows portability fix.
Per buildfarm.
Diffstat (limited to 'src')
-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 { |