From d509e8c86f9bfcf1e9033a1e15e840c3b15d8731 Mon Sep 17 00:00:00 2001 From: Andreas Huggel Date: Sun, 11 Dec 2005 16:10:41 +0000 Subject: [PATCH] Fixed include for utime.h to compile on Windows --- src/actions.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/actions.cpp b/src/actions.cpp index 47bbe8a4..19fd2100 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -66,7 +66,11 @@ EXIV2_RCSID("@(#) $Id$"); #ifdef EXV_HAVE_UNISTD_H # include // for stat() #endif -#include +#ifdef _MSC_VER +# include +#else +# include +#endif // ***************************************************************************** // local declarations