]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Do not include <sys/utime.h> on Borland
authorBrad King <brad.king@kitware.com>
Wed, 11 Nov 2009 14:20:32 +0000 (09:20 -0500)
committerBrad King <brad.king@kitware.com>
Wed, 11 Nov 2009 14:20:32 +0000 (09:20 -0500)
The compiler does not provide this header, but it does not seem to be
needed anyway.

SVN-Revision: 1644

libarchive/archive_windows.c

index 2970c49618d1a93e4d65a049f91bc6538b62be82..78b7ce39617aff501a509905ed75fac3cdd4fab7 100644 (file)
@@ -51,7 +51,9 @@
 #include <ctype.h>
 #include <errno.h>
 #include <stddef.h>
+#ifndef __BORLANDC__
 #include <sys/utime.h>
+#endif
 #include <sys/stat.h>
 #include <process.h>
 #include <stdlib.h>