mirror of https://github.com/CGAL/cgal
workaround in src/Geomview_stream.C for MINGW compiler.
This commit is contained in:
parent
06c149e3c2
commit
4a985f37c8
|
|
@ -1,5 +1,8 @@
|
|||
CHANGES to the Geomview package.
|
||||
|
||||
Ver 3.37 (14 January 2003)
|
||||
- Workaronund for MINGW compiler. The Geomview_stream.C file should not be compiled on Windows OS.
|
||||
|
||||
Ver 3.36 (8 January 2003)
|
||||
- Workaround for SunPRO.
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@
|
|||
// ============================================================================
|
||||
|
||||
// Geomview doesn't work on M$ at the moment, so we don't compile this file.
|
||||
#if !defined(__BORLANDC__) && !defined(_MSC_VER) && !defined(__MWERKS__)
|
||||
#if !defined(__BORLANDC__) && !defined(_MSC_VER) && \
|
||||
!defined(__MWERKS__) && !defined(__MINGW32__)
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue