From 37dd2851e9e654bda125ef8bd76f91555c469907 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 27 Mar 2007 08:43:59 +0000 Subject: [PATCH] Added #include for non Win32/Mingw build --- src/osgPlugins/shp/ESRIShape.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/osgPlugins/shp/ESRIShape.cpp b/src/osgPlugins/shp/ESRIShape.cpp index cec390155..c5c3579d9 100644 --- a/src/osgPlugins/shp/ESRIShape.cpp +++ b/src/osgPlugins/shp/ESRIShape.cpp @@ -1,7 +1,9 @@ -#include #if defined(_MSC_VER) || defined(__MINGW32__) + #include #include +#else + #include #endif #include "ESRIShape.h"