From 3715320b85323050bc880d4114835660711f7d83 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 6 Dec 2002 09:19:35 +0000 Subject: [PATCH] Fixes from Norman Vine for Cygwin support. --- src/osgDB/FileNameUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgDB/FileNameUtils.cpp b/src/osgDB/FileNameUtils.cpp index f591732ad..9b01c201f 100644 --- a/src/osgDB/FileNameUtils.cpp +++ b/src/osgDB/FileNameUtils.cpp @@ -2,7 +2,7 @@ #if defined(__sgi) #include -#elif !defined(WIN32) || defined(__MWERKS__) +#elif defined(__GNUC__) || !defined(WIN32) || defined(__MWERKS__) #include using std::tolower; using std::strlen;