Skip to content

Commit bc322c7

Browse files
windows: msvc: Define STDIN/OUT/ERR_FILENO.
This commit (c290e79) was originally back-patched to v15. Commit 97550c0 added a new use of STDERR_FILENO, and it was back-patched all the way to v11, thus breaking MSVC builds for v11 through v14. Since STDERR_FILENO is now needed on older versions, let's back-patch c290e79 down to v11, too. Here follows the original commit message describing the change: Because they are not available we've used _fileno(stdin) in some places, but that doesn't reliably work, because stdin might be closed. This is the prerequisite of the subsequent commit, fixing a failure introduced in 76e38b3. Author: Andres Freund <andres@anarazel.de> Reported-By: Sandeep Thakkar <sandeep.thakkar@enterprisedb.com> Message-Id: 20220520164558.ozb7lm6unakqzezi@alap3.anarazel.de (on pgsql-packagers) Discussion: https://postgr.es/m/20231017164517.GA613565%40nathanxps13 Backpatch-through: 11
1 parent 05b4614 commit bc322c7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/include/port/win32_msvc/unistd.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
/* src/include/port/win32_msvc/unistd.h */
2+
3+
/*
4+
* MSVC does not define these, nor does _fileno(stdin) etc reliably work
5+
* (returns -1 if stdin/out/err are closed).
6+
*/
7+
#define STDIN_FILENO 0
8+
#define STDOUT_FILENO 1
9+
#define STDERR_FILENO 2

0 commit comments

Comments
 (0)