]> granicus.if.org Git - postgresql/commit
Fix unportable setvbuf() usage in initdb.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 15 May 2014 19:58:11 +0000 (15:58 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 15 May 2014 19:58:11 +0000 (15:58 -0400)
commit1dd0b3eeccaffd33b9c970a91c53fe42692ce8c2
tree604dcb1becd72d90f054993a367bde5b81d6eeb2
parent56693cfb30911cd46c9759e129a047aa9d03b945
Fix unportable setvbuf() usage in initdb.

In yesterday's commit 2dc4f011fd61501cce507be78c39a2677690d44b, I tried
to force buffering of stdout/stderr in initdb to be what it is by
default when the program is run interactively on Unix (since that's how
most manual testing is done).  This tripped over the fact that Windows
doesn't support _IOLBF mode.  We dealt with that a long time ago in
syslogger.c by falling back to unbuffered mode on Windows.  Export that
solution in port.h and use it in initdb.

Back-patch to 8.4, like the previous commit.
src/backend/postmaster/syslogger.c
src/bin/initdb/initdb.c
src/include/port.h