From 09b5e95d65193bc0f158363e4f2c7556a246bb24 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 18 Jul 2011 09:40:58 +0000 Subject: [PATCH] Changed the HAVE_CONFIG_H guard so that it uses #ifndef _MSC_VER rather than _WIN32 to avoid problems with Mingw and Cygwin builds of DCMTK. --- src/osgPlugins/dicom/ReaderWriterDICOM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/dicom/ReaderWriterDICOM.cpp b/src/osgPlugins/dicom/ReaderWriterDICOM.cpp index 785ac9eac..500cb7ec8 100644 --- a/src/osgPlugins/dicom/ReaderWriterDICOM.cpp +++ b/src/osgPlugins/dicom/ReaderWriterDICOM.cpp @@ -19,7 +19,7 @@ #include #ifdef USE_DCMTK - #ifndef _WIN32 + #ifndef _MSC_VER #define HAVE_CONFIG_H #endif