Fix MinGW build
The commit c4859975 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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user