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:22 -0400 |
commit | ab1c96e19e074264c57c7536d3beabce16fe5198 (patch) | |
tree | 2e5894e7aa498dd7d828c57c4cfca891c02631bf /src | |
parent | bc59c1236fb6db77b5c4426be3bb5b1a934ae2a7 (diff) | |
download | postgresql-ab1c96e19e074264c57c7536d3beabce16fe5198.tar.gz postgresql-ab1c96e19e074264c57c7536d3beabce16fe5198.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 { |