aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-03-12When we append stuff to the URL, we must make sure the text is properlyDaniel Stenberg
URL encoded before. Test case 58 added to verify this.
2003-03-12-m on curl on windows with telnet doesn't workDaniel Stenberg
2003-03-12This verifies that my fix for bug report #700275 works.Daniel Stenberg
2003-03-12test58 addedDaniel Stenberg
2003-03-12improved the header checksDaniel Stenberg
--enable-libgcc check for a sed before using it
2003-03-12Add include files to prevent warnings on some (HPUX) systems.Daniel Stenberg
2003-03-12include "config.h" from the lib's private dirDaniel Stenberg
2003-03-12Setup include path to the lib dir to enable inclusion of "config.h"Daniel Stenberg
2003-03-12Made set_local_option() properly static as reported by Rick JonesDaniel Stenberg
2003-03-12Prefix defines and symbols with CURL_ to reduce the risk of colliding withDaniel Stenberg
various system's other defines.
2003-03-12support a few more common typedefsDaniel Stenberg
2003-03-12Massige use of AC_HELP_STRING() all over makes the --help output so muchDaniel Stenberg
nicer!
2003-03-11another week of changes, especially libtool gave us an adventure to rememberDaniel Stenberg
2003-03-11syntax errorDaniel Stenberg
2003-03-11Christophe Demory fixed the check to work better for non-blocking on HP-UXDaniel Stenberg
systems. Bug report #701749.
2003-03-11Use ssize_t instead of 'int' to make the 64 bit sparc compiler happier.Daniel Stenberg
Fix by Richard Gorton.
2003-03-11Richard Gorton improved the random_the_seed() function for systems whereDaniel Stenberg
we don't find/know of a good random source. This way, we get a better randomness which in turn should make SSL connections more secure.
2003-03-11don't check for netinet/if_ether.h, we don't include it and it causesDaniel Stenberg
configure warnings on many systems
2003-03-11Martin C. Martin's fix to produce an error message in case of failureDaniel Stenberg
in the Curl_is_connected() function.
2003-03-10added things to fix at the next major release/changeDaniel Stenberg
2003-03-10clarifyDaniel Stenberg
2003-03-10no the data is not freed, this is left for the app to do when neededDaniel Stenberg
2003-03-10AAAARGDaniel Stenberg
libtool 1.4.3 is scary as hell and caused just about every build on all sorts of platforms to stop working, thanks to the fact that it ruquires a SED variables somehow set by the configure script. It works fine on my linux running autoconf 2.57 and automake 1.7 but others seem not to do as fine. Reverting back to the ltmain.sh we had previously, which I believe is 1.4.2 including handmade patches for FreeBSD. ALERT ALERT ALERT before we try 1.4.3 or similar versions again, check the ${SED} stuff and similar carefully.
2003-03-10Include sys/types.h as well. Ray DeGennaro reports successful compiling onDaniel Stenberg
AIX when this fix is applied and I cannot see how this will break any systems.
2003-03-07figure out the path to a 'sed' as otherwise libtool gets crazyDaniel Stenberg
2003-03-07libtoolize 1.4.3 brought theseDaniel Stenberg
2003-03-04Removed define, risc os build, POST-GET bug fixed, AIX 4.3 problems solvedDaniel Stenberg
and two makefiles fixed.
2003-03-03output the md5sum as the last stepDaniel Stenberg
2003-03-03Added share.objDaniel Stenberg
2003-03-03moved the disable-thread warning to the switch code so that the AIX 4.3Daniel Stenberg
automatic disable won't cause a warning
2003-03-03Detect AIX 4.3 or later, and if found disable the check for the thread-safeDaniel Stenberg
*_r() functions as they're not needed (and if fact mess things up for us). Brought to our attention by the friendly Troels Walsted Hansen in bug report #696217.
2003-03-03AIX 4.3 or later should use gethostbyname() and not the *_r() version.Daniel Stenberg
2003-03-03Added typecast to please the MSVC compiler.Daniel Stenberg
2003-03-03another typecast added to please the borland compilerDaniel Stenberg
2003-03-03Add (void) on our uses of the swrite() macro when we don't read the returnDaniel Stenberg
code as this makes compiler warnings. We *should* fix the code to deal with the return codes instead...
2003-03-02Init postdata properly before issuing a request, so that there isn't anyDaniel Stenberg
lingering POST-stuff that confuses GET requests. Juan F. Codagnone reported this problem in bug report #653859.
2003-03-02moved a variable declaration to remove a compiler warnings with the MSVCDaniel Stenberg
compiler, mentioned by Andi Jahja
2003-02-28include the engine stuffDaniel Stenberg
2003-02-28Andres Garcia Garcia updated to build with the most recent OpenSSL andDaniel Stenberg
the recent libcurl changes.
2003-02-28James Bursa made it compile on RISC OS as well.Daniel Stenberg
2003-02-28James Bursa wrote a section about cross-compiling for RISC OSDaniel Stenberg
2003-02-28the strequal and strnequal should now be called with the proper curl_ prefixDaniel Stenberg
2003-02-28Removed the defines for strequal() and strnequal().Daniel Stenberg
2003-02-28recent stuffDaniel Stenberg
2003-02-28mention what happens if size is set to -1Daniel Stenberg
2003-02-28spell out that POSTFIELDS should be url-encoded in most casesDaniel Stenberg
2003-02-27spell betterDaniel Stenberg
2003-02-27Updated to better reflect reality. Also displays how the CURLMsg structDaniel Stenberg
looks like.
2003-02-27It appears that there are FTP-servers that return size 0 for filesDaniel Stenberg
when SIZE is used on the file while being in BINARY mode. To work around that (stupid) behavior, we attempt to parse the RETR response even if the SIZE returned size zero. Debugging help from Salvatore Sorrentino on February 26, 2003.
2003-02-26test138 is for RETR without size and without a working SIZEDaniel Stenberg