RE: Large file support

2005-02-24 Thread Herold Heiko
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

Re: Large file support

2005-02-24 Thread Hrvoje Niksic
Herold Heiko [EMAIL PROTECTED] writes: I tried a test compile just now, with Visual C++ 6 I get different errors: Thanks for checking it. string_t.[ch] - iswblank doesn't seem to be available, For now, just remove string_t from the Makefile. It's not used anywhere yet. Also, the large

RE: Large file support

2005-02-24 Thread Herold Heiko
From: Hrvoje Niksic [mailto:[EMAIL PROTECTED] Sent: Thursday, February 24, 2005 1:50 PM Thanks for checking it. Don't thank me, I'd like to do more but I have no time available :( http.c(503) : warning C4090: 'function' : different 'const' qualifiers [...] I don't quite understand

Re: Large file support

2005-02-24 Thread Maciej W. Rozycki
On Thu, 24 Feb 2005, Hrvoje Niksic wrote: 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

Re: Large file support

2005-02-24 Thread Hrvoje Niksic
Herold Heiko [EMAIL PROTECTED] writes: http.c(503) : warning C4090: 'function' : different 'const' qualifiers [...] I don't quite understand these warnings. Did they occur before? Definitively, I trie with a rev from March 2004, same warnings. Then we can ignore them for now. I

Re: Large file support

2005-02-24 Thread Hrvoje Niksic
Maciej W. Rozycki [EMAIL PROTECTED] writes: Doesn't GCC work for this target? It does, in the form of Cygwin and MingW. But Heiko was using MS VC before, and we have catered to broken compilers before, so it doesn't hurt to try.