Skip to content
Snippets Groups Projects
Commit 1b1d799d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Only force _FILE_OFFSET_BITS to 64 on Windows for MSVC builds

Fixes Borland builds.
parent 86e1358f
No related branches found
No related tags found
No related merge requests found
......@@ -273,7 +273,7 @@ typedef intmax_t intptr_t;
typedef int32_t time32_t;
#if defined(_WIN32)
# if !defined _FILE_OFFSET_BITS
# if defined _MSC_VER && !defined _FILE_OFFSET_BITS
# define _FILE_OFFSET_BITS 64
# endif
# if defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS==64)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment