head	1.2;
access;
symbols
	RELEASE_5_3_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2004.10.28.04.59.12;	author sf;	state dead;
branches;
next	1.1;

1.1
date	2004.08.11.18.07.36;	author sem;	state Exp;
branches;
next	;


desc
@@


1.2
log
@o update to 0.91.
o respect CFLAGS.
o passing PTHREAD_* bits via makefile.machine.
 With this four patches no longer required.

Approved by:	maintainer
@
text
@Index: Windows/Time.h
@@@@ -41,7 +41,7 @@@@
   fileTime.dwHighDateTime = DWORD(ll >> 32);
 }
 
-inline bool FileTimeToUnixTime(const FILETIME &fileTime, long &unixTime)
+inline bool FileTimeToUnixTime(const FILETIME &fileTime, time_t &unixTime)
 {
   UINT64 winTime = (((UINT64)fileTime.dwHighDateTime) << 32) + fileTime.dwLowDateTime;
   if (winTime < kUnixTimeStartValue)
@@@@ -49,7 +49,7 @@@@
   winTime = (winTime - kUnixTimeStartValue) / kNumTimeQuantumsInSecond;
   if (winTime >= 0xFFFFFFFF)
     return false;
-  unixTime = (long)winTime;
+  unixTime = (time_t)winTime;
   return true;
 }
 
@


1.1
log
@file archiver with highest compression ratio

PR:		ports/69248
Submitted by:	Juergen Lock <nox@@jelal.kn-bremen.de>
@
text
@@

