Skip to content

Commit

Permalink
Merge pull request #538 from tpaviot/review/MinGW-OpenGl-fixes
Browse files Browse the repository at this point in the history
Fix TKOpenGl MinGW compilation
  • Loading branch information
dbarbier committed Nov 19, 2014
2 parents 4e57d6a + 07f077b commit 98ad2d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/OpenGl/OpenGl_ShaderObject.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <Standard_Assert.hxx>
#include <TCollection_AsciiString.hxx>

#ifdef __BORLANDC__
#if defined(__BORLANDC__) || defined(__MINGW32__)
#include <malloc.h>
#endif

Expand Down
2 changes: 1 addition & 1 deletion src/OpenGl/OpenGl_ShaderProgram.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <OpenGl_ShaderProgram.hxx>
#include <OpenGl_ShaderManager.hxx>

#ifdef __BORLANDC__
#if defined(__BORLANDC__) || defined(__MINGW32__)
#include <malloc.h>
#endif

Expand Down

0 comments on commit 98ad2d7

Please sign in to comment.