Sorry, replied to wget-patches instead of redirecting it.

I tried a test compile just now, with Visual C++ 6 I get different errors:

string_t.[ch] - iswblank doesn't seem to be available, however there is a 
int isspace( int c );
int iswspace( wint_t c );
Routine Required Header Compatibility 
isspace <ctype.h> ANSI, Win 95, Win NT 
iswspace <ctype.h> or <wchar.h> ANSI, Win 95, Win NT 
isspace returns a non-zero value if c is a white-space character (0x09 -
0x0D or 0x20). iswspace returns a non-zero value if c is a wide character
that corresponds to a standard white-space character or is one of an
implementation-defined set of wide characters for which iswalnum is false.
Each of these routines returns 0 if c does not satisfy the test condition.


Also, the large file support patch introduced syntax errors in mswindows.h
and internal compiler error in retr.c and httpd.c:

Microsoft (R) Program Maintenance Utility   Version 6.00.8168.0
Copyright (C) Microsoft Corp 1988-1998. All rights reserved.

        cd src
        NMAKE

Microsoft (R) Program Maintenance Utility   Version 6.00.8168.0
Copyright (C) Microsoft Corp 1988-1998. All rights reserved.

        cl /nologo /MT /O2 /I. /DWINDOWS /D_CONSOLE /DHAVE_CONFIG_H
/DHAVE_SSL /c http.c hash.c retr.c gen-md5.c gnu-md5.c
http.c
.\mswindows.h(109) : warning C4005: 'stat' : macro redefinition
        .\mswindows.h(101) : see previous definition of 'stat'
http.c(503) : warning C4090: 'function' : different 'const' qualifiers
http.c(503) : warning C4022: 'xrealloc_real' : pointer mismatch for actual
parameter 1
http.c(521) : warning C4090: 'function' : different 'const' qualifiers
http.c(521) : warning C4022: 'xrealloc_real' : pointer mismatch for actual
parameter 1
http.c(675) : warning C4090: 'function' : different 'const' qualifiers
http.c(675) : warning C4022: 'xfree_real' : pointer mismatch for actual
parameter 1
http.c(1891) : warning C4133: 'function' : incompatible types - from 'struct
_stati64 *' to 'struct _stat *'
http.c(1900) : warning C4133: 'function' : incompatible types - from 'struct
_stati64 *' to 'struct _stat *'
http.c(1959) : warning C4133: 'function' : incompatible types - from 'struct
_stati64 *' to 'struct _stat *'
hash.c
.\mswindows.h(109) : warning C4005: 'stat' : macro redefinition
        .\mswindows.h(101) : see previous definition of 'stat'
.\mswindows.h(121) : error C2143: syntax error : missing ')' before '*'
.\mswindows.h(121) : error C2143: syntax error : missing '{' before '*'
.\mswindows.h(121) : error C2059: syntax error : ')'
.\mswindows.h(121) : error C2059: syntax error : ';'
retr.c
.\mswindows.h(109) : warning C4005: 'stat' : macro redefinition
        .\mswindows.h(101) : see previous definition of 'stat'
retr.c(920) : warning C4133: 'function' : incompatible types - from 'struct
_stati64 *' to 'struct _stat *'
gen-md5.c
.\mswindows.h(109) : warning C4005: 'stat' : macro redefinition
        .\mswindows.h(101) : see previous definition of 'stat'
.\mswindows.h(121) : error C2143: syntax error : missing ')' before '*'
.\mswindows.h(121) : error C2143: syntax error : missing '{' before '*'
.\mswindows.h(121) : error C2059: syntax error : ')'
.\mswindows.h(121) : error C2059: syntax error : ';'
gnu-md5.c
.\mswindows.h(109) : warning C4005: 'stat' : macro redefinition
        .\mswindows.h(101) : see previous definition of 'stat'
.\mswindows.h(121) : error C2143: syntax error : missing ')' before '*'
.\mswindows.h(121) : error C2143: syntax error : missing '{' before '*'
.\mswindows.h(121) : error C2059: syntax error : ')'
.\mswindows.h(121) : error C2059: syntax error : ';'
Generating Code...
retr.c(261) : fatal error C1001: INTERNAL COMPILER ERROR
                (compiler file 'E:\8966\vc98\p2\src\P2\main.c', line 494)
    Please choose the Technical Support command on the Visual C++
    Help menu, or open the Technical Support help file for more information
http.c(1412) : warning C4761: integral size mismatch in argument; conversion
supplied
http.c(381) : fatal error C1001: INTERNAL COMPILER ERROR
                (compiler file 'E:\8966\vc98\p2\src\P2\main.c', line 494)
    Please choose the Technical Support command on the Visual C++
    Help menu, or open the Technical Support help file for more information
NMAKE : fatal error U1077: 'cl' : return code '0x2'
Stop.
NMAKE : fatal error U1077: 'C:\PROGRA~1\MICROS~2\VC98\BIN\NMAKE.EXE' :
return code '0x2'
Stop.

Bye
Heiko

-- 
-- PREVINET S.p.A. www.previnet.it
-- Heiko Herold [EMAIL PROTECTED] [EMAIL PROTECTED]
-- +39-041-5907073 ph
-- +39-041-5907472 fax

> -----Original Message-----
> From: Hrvoje Niksic [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, February 23, 2005 11:14 PM
> To: [EMAIL PROTECTED]
> Subject: Large file support
> 
> 
> The most requested feature of the last several years finally arrives
> -- large file support.  With this patch Wget should be able to
> download files larger than 2GB on systems that support them.
> 
> ChangeLog:
> 2005-02-20  Hrvoje Niksic  <[EMAIL PROTECTED]>
....

Reply via email to