Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-02-12 | provide a source path to the servers to make them find the tests when run | Daniel Stenberg | |
outside the source dir, not needing any symlinks | |||
2004-02-12 | stop doing the weirdo symlinks | Daniel Stenberg | |
2004-02-12 | removed the subchar variable, it was only set and never used | Daniel Stenberg | |
2004-02-12 | removed the ldaptext variable, it was only set and never used | Daniel Stenberg | |
2004-02-12 | removed the nth variable, it was only set and never used anyway | Daniel Stenberg | |
2004-02-12 | No longer receive the return code in ConnectionKillOne() that wasn't dealt | Daniel Stenberg | |
with anyway and thus caused picky compiler to warn. | |||
2004-02-11 | Andrés García's additional fix to make the OpenSSL stuff work for msys/mingw | Daniel Stenberg | |
2004-02-11 | #if-check for SIGALRM before assuming it is present | Daniel Stenberg | |
2004-02-11 | use libtoolize --force to overwrite existing (older) files | Daniel Stenberg | |
2004-02-11 | install ares_version.h as well | Daniel Stenberg | |
2004-02-11 | Dirk Manske's fix to install ares_version.h as well | Daniel Stenberg | |
2004-02-09 | mondays are busy days catching up with the patches from the weekend! ;-) | Daniel Stenberg | |
2004-02-09 | Dominick Meglio's update | Daniel Stenberg | |
2004-02-09 | recent updates | Daniel Stenberg | |
2004-02-09 | Modified the default HTTP Accept: header to only be Accept: */* | Daniel Stenberg | |
2004-02-09 | Removed, this was only used to work out what went wrong with test 91, and | Daniel Stenberg | |
we seem to have nailed that one now! | |||
2004-02-09 | Oops. I broke the flow with the previous commit. | Daniel Stenberg | |
2004-02-09 | P R Schaffner updated this to work for 7.11.0 | Daniel Stenberg | |
2004-02-09 | Dominick Meglio's added share interface documentation | Daniel Stenberg | |
2004-02-09 | removed the state file renaming I accidentally left there | Daniel Stenberg | |
2004-02-09 | some annoying compilers warn about "(void)foo;" lines so we avoid them | Daniel Stenberg | |
2004-02-09 | Make param2text() take an int argument, as that is what's being passed in. | Daniel Stenberg | |
This is made to prevent compiler warnings. | |||
2004-02-09 | use VAR_NONE instead of 0 in the table to prevent compiler warning | Daniel Stenberg | |
2004-02-09 | return 'res' to better discover test failures and to stop compiler warnings | Daniel Stenberg | |
about it never being used | |||
2004-02-09 | Uninitialized variable set. | Daniel Stenberg | |
2004-02-09 | Tor Arntsen's patch for working around a notorious bug in the AIX5 | Daniel Stenberg | |
getaddrinfo() implementation. | |||
2004-02-09 | Ken Rastatter's fixes to improve portability of this example: | Daniel Stenberg | |
These minor changes remove portability issues with the this example and allow it to run on Win32. Specifically: * The use of pthread_create() has been replaced by g_thread_create(). This removes the dependency on the pthreads library. Since this is an example using GTK+, g_thread_create() is available as it is a part of glibc. * The CURLOPT_FILE option is now referred to by its "newer name" CURLOPT_WRITEDATA. * The use of CURLOPT_WRITEFUNCTION has been added. As described in the docs, this avoids the crashes when using a DLL under Win32. * The output file has been renamed from "/tmp/test.curl" to "test.curl". It's unlikely that there is a /tmp when in Win32 and other examples in libcurl write their output files to the working directory. | |||
2004-02-06 | mingw configure fix, host: fix, compiler warnings in ldap.c | Daniel Stenberg | |
2004-02-06 | updated with recent fixes | Daniel Stenberg | |
2004-02-06 | The Curl_strtoll() issue | Daniel Stenberg | |
2004-02-06 | updated | Daniel Stenberg | |
2004-02-06 | Rewrote the gethostbyname() check after Andrés García's provided patch | Daniel Stenberg | |
for finding it using mingw on windows. I also made the script skip the search for gethostbyname_r and gethostbyaddr_r when ipv6 is enabled. | |||
2004-02-06 | Added documentation of a few command line options that were still undocumented | Daniel Stenberg | |
here. | |||
2004-02-06 | A custom Host: header is only considered if the request is not made by | Daniel Stenberg | |
following a location. After discussions with Tim Baker. | |||
2004-02-06 | The MIPSPro compiler complains on constructs such as "(void)foo;" so | Daniel Stenberg | |
we avoid it where possible. | |||
2004-02-06 | Make sure DynaGetFunction() returns a function pointer, not a data pointer. | Daniel Stenberg | |
The standards don't actually allow typecasts between data and functions so some picky compilers warn about this. | |||
2004-02-06 | Remove the attempt to detect if we already tested the same source setup. | Daniel Stenberg | |
We really don't care, and so many other things could've changed to make the new test interesting anyway. | |||
2004-02-05 | numerous things went in today | Daniel Stenberg | |
2004-02-05 | added the missing stdin section | Daniel Stenberg | |
2004-02-05 | An attempt to only set both libz-related defines at the same time. We need | Daniel Stenberg | |
both the lib and the header present for both defines to be set. If only one of the files is found, we issue a warning and set no define. | |||
2004-02-05 | Andrés García's updates | Daniel Stenberg | |
2004-02-05 | if an empty 'transfer-encoding:' header is provided, we switch off the | Daniel Stenberg | |
chunky coding of uploads | |||
2004-02-05 | Made a test that sends data on stdin to PUT, with a given length and | Daniel Stenberg | |
chunked transfer-encoding disabled. Fixed to work after Len Krause's bug report. | |||
2004-02-05 | Gisle Vanem fixed a windows compiler warning | Daniel Stenberg | |
2004-02-05 | changed the test() function to return type int | Daniel Stenberg | |
2004-02-05 | include process.h to get the _getpid() proto | Daniel Stenberg | |
2004-02-05 | when using --enable-debug and gcc, provide the -Wno-format-nonliteral option | Daniel Stenberg | |
to prevent the warning in mprintf.c: (currently line 930) "format not a string literal, argument types not checked" | |||
2004-02-05 | options we get as longs need to be typecasted when assigned to prevent | Daniel Stenberg | |
picky compiler warnings | |||
2004-02-05 | fix return type to silence compiler warnings | Daniel Stenberg | |
2004-02-05 | prevent warning from that picky MIPSpro compiler | Daniel Stenberg | |