[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a
Maximiliano Curia
maxy at moszumanska.debian.org
Thu Jul 13 17:37:20 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=d509e8c
The following commit has been merged in the master branch:
commit d509e8c86f9bfcf1e9033a1e15e840c3b15d8731
Author: Andreas Huggel <ahuggel at gmx.net>
Date: Sun Dec 11 16:10:41 2005 +0000
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 47bbe8a..19fd210 100644
--- a/src/actions.cpp
+++ b/src/actions.cpp
@@ -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
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list