Fix MinGW build

The commit 028739df caused a regression by breaking MinGW builds because the line
'#if defined(__MINGW32__)' has been removed.
As a result the 'if defined (FC_OS_WIN64) || defined (FC_OS_WIN32)' has become active
where the types '__int64' or 'unsigned __int64' that are not defined for MinGW
This commit is contained in:
wmayer
2024-03-08 10:23:26 +01:00
committed by wwmayer
parent 2e96599903
commit eb5a1b3339

View File

@@ -93,7 +93,9 @@
//**************************************************************************
// Standard types for Windows
#if defined (FC_OS_WIN64) || defined (FC_OS_WIN32)
#if defined(__MINGW32__)
// Do not remove this line!
#elif defined (FC_OS_WIN64) || defined (FC_OS_WIN32)
#ifndef HAVE_INT8_T
#define HAVE_INT8_T