+2002-12-16 Bruno Haible <bruno@clisp.org>
+
+ * configure.in: Add test for <utime.h>. Needed for mingw32.
+
2002-12-07 Bruno Haible <bruno@clisp.org>
Switch to autoconf-2.57 and automake-1.7.2.
dnl Checks for header files.
AC_HEADER_STDC
-AC_CHECK_HEADERS(limits.h malloc.h string.h unistd.h values.h)
+AC_CHECK_HEADERS(limits.h malloc.h string.h unistd.h utime.h values.h)
gt_STDBOOL_H
dnl Checks for typedefs, structures, and compiler characteristics.
+2002-12-16 Bruno Haible <bruno@clisp.org>
+
+ * copy-file.c: Include <sys/utime.h> if <utime.h> doesn't exist.
+ Needed for mingw32.
+ Reported by Steven Edwards <Steven_Ed4153@yahoo.com>.
+
2002-11-22 Bruno Haible <bruno@clisp.org>
* safe-write.h: New file, from current gnulib version.
#endif
#if HAVE_UTIME || HAVE_UTIMES
-# include <utime.h>
+# if HAVE_UTIME_H
+# include <utime.h>
+# else
+# include <sys/utime.h>
+# endif
#endif
#include "error.h"