Fixed include for utime.h to compile on Windows

v0.27.3
Andreas Huggel 20 years ago
parent c5d91d374a
commit d509e8c86f

@ -66,7 +66,11 @@ EXIV2_RCSID("@(#) $Id$");
#ifdef EXV_HAVE_UNISTD_H
# include <unistd.h> // for stat()
#endif
#include <utime.h>
#ifdef _MSC_VER
# include <sys/utime.h>
#else
# include <utime.h>
#endif
// *****************************************************************************
// local declarations

Loading…
Cancel
Save