Le vendredi 18 Juin 2004 22:20, Hans-Juergen Taenzer a écrit :
> I don't think there would be problems with the new version 3.0 if
> there wasn't the problem with the 'long long' datatype. Just using
> a suitable typdef for this datatype would resolve the problem
> (maybe there have to be changes to printf() too, I haven't checked
> it yet).

It should compile with MSC as os_win.h already contains the needed 
definitions:

#if defined(_MSC_VER) || defined(__BORLANDC__)
  typedef __int64 off_t;
#else
# if !defined(_CYGWIN_TYPES_H)
  typedef long long off_t;
#   if defined(__MINGW32__)
#     define    _OFF_T_
#   endif
# endif
#endif

Maybe some defines checking needed.

-- 
JCR
aka DJ Anubis
LAB Project Initiator & coordinator

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to