c7775c59 | 21-Feb-2004 |
Daniel Stenberg |
mention in --limit-rate that --speed-limit might ruin the limiting slightly. |
243bd5bb | 21-Feb-2004 |
Daniel Stenberg |
David Byron's fix to allow the speed-limit logic work even if you set limit-rate. It does work on the expense of the rate limiter. |
4bde7701 | 21-Feb-2004 |
Daniel Stenberg |
added some extra typecasts to prevent compiler warnings when converting int to various types |
9af7e46f | 21-Feb-2004 |
Daniel Stenberg |
inlcude krb4.h to get the proto for Curl_krb_kauth() to satisfy picky compilers |
7d844c43 | 20-Feb-2004 |
Daniel Stenberg |
Gisle Vanem brings name resolving timeout possibilities to windows people. This works by magicly starting up a new thread that can be killed when the timeout is reached. testtesttest! |
4f953b64 | 20-Feb-2004 |
Daniel Stenberg |
that icc attempt in configure |
44995d68 | 20-Feb-2004 |
Daniel Stenberg |
Some compilers warn on completely empty source files, we provide a blank one to prevent that. |
2ebc8215 | 20-Feb-2004 |
Daniel Stenberg |
Convert functions to ANSI-style declaration to prevent compiler warnings |
907bb78f | 20-Feb-2004 |
Daniel Stenberg |
When the built-in manual is disabled, we generate a function doing nothing just to avoid making a totally empty file. Just to avoid compiler warnings. |
b2e1bf7e | 20-Feb-2004 |
Daniel Stenberg |
No longer support Z as a flag to print size_t, it isn't used by libcurl and I doubt anyone else uses it. Better preprocessor magic for the O flag (for curl_off_t printing) to prevent
No longer support Z as a flag to print size_t, it isn't used by libcurl and I doubt anyone else uses it. Better preprocessor magic for the O flag (for curl_off_t printing) to prevent compiler warnings.
show more ...
|
7173a0f7 | 20-Feb-2004 |
Daniel Stenberg |
cool.haxx.se, no longer sourceforge |
a49bebc7 | 20-Feb-2004 |
Daniel Stenberg |
Only use -Wstrict-prototypes with gcc 3.3 or later. It is working with earlier versions, but when I use it with 3.0.3, I can't get it to ignore errors in "system headers" with -isystem so we
Only use -Wstrict-prototypes with gcc 3.3 or later. It is working with earlier versions, but when I use it with 3.0.3, I can't get it to ignore errors in "system headers" with -isystem so we get excessive amounts of warnings on SSL headers which is very annoying.
show more ...
|
8777ba7e | 20-Feb-2004 |
Daniel Stenberg |
include sys/select.h to prevent picky compiler warnings when using select() without proto |
a3966919 | 20-Feb-2004 |
Daniel Stenberg |
we call the macro CURLMAX() isntead of MAX(), just because it turned up it collides with another MAX define on some platforms (like netbsd 1.6.1) |
2c0c75e3 | 20-Feb-2004 |
Daniel Stenberg |
oops, missed a define when I changed from Curl_ to curlx_ |
236337ce | 20-Feb-2004 |
Daniel Stenberg |
fix protos to prevent warnings |
224ccc78 | 20-Feb-2004 |
Daniel Stenberg |
added getpart.h for the spitout() proto |
ccde85d1 | 20-Feb-2004 |
Daniel Stenberg |
%HTTPPORT supported in subVariables |
9e7657d6 | 20-Feb-2004 |
Daniel Stenberg |
mention what ports the test suite uses |
7ac455fc | 20-Feb-2004 |
Daniel Stenberg |
When trying to see if there's a friendly http server on "our" port, we only accept return code 7 to indicate that there's no server present. |
e295cd75 | 19-Feb-2004 |
Daniel Stenberg |
-Wcast-align is a bit too annoying |
a472cd93 | 19-Feb-2004 |
Daniel Stenberg |
Anything that looks like gcc 5.0 or more is no longer treated as gcc. I hope this will make us exclude icc 8.0 etc. |
8794cb28 | 19-Feb-2004 |
Daniel Stenberg |
refer to FILEFORMAT |
455b1af2 | 19-Feb-2004 |
Daniel Stenberg |
When --enable-debug is used, for every -I provided to $CPPFLAGS we add a corresponding -isystem, if using gcc, to inhibit warnings on those headers. |
d765a00a | 19-Feb-2004 |
Daniel Stenberg |
Tor Arntsen's tiny fix! |