summaryrefslogtreecommitdiff
path: root/src/timezone/README
diff options
context:
space:
mode:
authorTom Lane2019-04-27 01:20:11 +0000
committerTom Lane2019-04-27 01:20:55 +0000
commit48f8fa9ce0f9799c8ae8bcd23c498fe002d5496d (patch)
tree2856966cc216cbec7dbc1037041b212d63804a2c /src/timezone/README
parenta967878414f906a7f88842424c667a5ac31b9625 (diff)
Portability fix for zic.c.
Missed an inttypes.h dependency in previous patch. Per buildfarm.
Diffstat (limited to 'src/timezone/README')
-rw-r--r--src/timezone/README2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/timezone/README b/src/timezone/README
index f547d60d829..8fb26993274 100644
--- a/src/timezone/README
+++ b/src/timezone/README
@@ -117,6 +117,8 @@ to first run the tzcode source files through a sed filter like this:
-e 's/intmax_t/int64/g' \
-e 's/INT32_MIN/PG_INT32_MIN/g' \
-e 's/INT32_MAX/PG_INT32_MAX/g' \
+ -e 's/INTMAX_MIN/PG_INT64_MIN/g' \
+ -e 's/INTMAX_MAX/PG_INT64_MAX/g' \
-e 's/struct[ \t]+tm\b/struct pg_tm/g' \
-e 's/\btime_t\b/pg_time_t/g' \
-e 's/lineno/lineno_t/g' \