public inbox for bzip2-devel@sourceware.org
 help / color / mirror / Atom feed
* Unable to build under Windows
@ 2022-02-19 21:45 Dmitry Tsarevich
  2022-04-19 22:36 ` Mark Wielaard
  0 siblings, 1 reply; 2+ messages in thread
From: Dmitry Tsarevich @ 2022-02-19 21:45 UTC (permalink / raw)
  To: bzip2-devel

Hello!

I'm trying to build bzip2 under Windows / MSVC

Unfortunately, STDERR_FILENO is *nix specific and is not defined under MSVC.

What I can suggest is to patch bzip2.c to define STDERR_FILENO under MSVC:

diff --git a/bzip2.c b/bzip2.c
index d1f2fa8..d4550a9 100644
--- a/bzip2.c
+++ b/bzip2.c
@@ -150,6 +150,8 @@
          ERROR_IF_MINUS_ONE ( retVal );               \
       } while ( 0 )

+#define STDERR_FILENO _fileno(stderr)
+
 #endif /* BZ_LCCWIN32 */

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-04-19 22:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-19 21:45 Unable to build under Windows Dmitry Tsarevich
2022-04-19 22:36 ` Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).