aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-02-26Gisle Vanem's added support calloc()-debugging and outputting mode forDaniel Stenberg
fopen() as well.
2004-02-26use calloc instead of malloc and we won't have to memset() the structDaniel Stenberg
2004-02-26When this is verified to be a CVS tree, we remove the two generated sourceDaniel Stenberg
files from the source dir to make certain they're generated in the build process.
2004-02-26Clear up int/long/size_t/ssize_t usage a bitDaniel Stenberg
2004-02-26minor fixes to avoid MIPSPro pedantic warningsDaniel Stenberg
2004-02-26don't mix int and size_t, it generates warnings!Daniel Stenberg
2004-02-26Make icc ignore "invalid format string conversion" warnings as well. TheyDaniel Stenberg
appear because of our home-grown option '%Od' for the curl_off_t output.
2004-02-26use %ld when printf()ing long variables (and removed use of 'register')Daniel Stenberg
2004-02-26added the ever-present source headerDaniel Stenberg
2004-02-26Don't call the lock/unlock functions if they are NULL. They can still beDaniel Stenberg
NULL without violating protocol.
2004-02-26Use __INTEL_COMPILER instead of __ICC to the cpp to detect the Intel iccDaniel Stenberg
compiler!
2004-02-26runtests.pl now provides the srcdir to the ftpserver so that it can passDaniel Stenberg
that to loadtest properly.
2004-02-26modified loadtest() to produce better error message when it fails to loadDaniel Stenberg
a test file
2004-02-26The build logs were created in the "wrong" dir and thus never removedDaniel Stenberg
after use, this is an attempt to fix this.
2004-02-25today's workDaniel Stenberg
2004-02-25typecast to int when printfing CURLcodeDaniel Stenberg
2004-02-25use %ld when printfing longsDaniel Stenberg
2004-02-25disable the use of long double, we don't use itDaniel Stenberg
2004-02-25if ares is present, run aclocal in that dir before autoconf is runDaniel Stenberg
2004-02-25added the better debug option logic from curl by adding acinclude.m4 to theDaniel Stenberg
configure stuff
2004-02-25Based on a patch by Greg Hewgill I modified how long long is used, as weDaniel Stenberg
can use a 64bit type with MSVC that is a long long equivalent.
2004-02-25set debug options when using the icc compilerDaniel Stenberg
2004-02-25better formatting of the share optionsDaniel Stenberg
2004-02-25mark the function nameDaniel Stenberg
2004-02-25added CURLOPT_SHAREDaniel Stenberg
2004-02-25Moved most of the set-debug-options-depending-on-compiler logic to the newDaniel Stenberg
CURL_CC_DEBUG_OPTS function in acinclude.m4
2004-02-25Output $CC and $CFLAGS as well. A Tor Arntsen patch.Daniel Stenberg
2004-02-25Don't check for HAVE_ defines in this header file, it is meant to be publicDaniel Stenberg
and we can't depend on configure-defines in it. This logic is borrowed from the public curl headers.
2004-02-25fixDaniel Stenberg
2004-02-25Dan Fandrich fixed a minor flaw in Dominick's fix!Daniel Stenberg
2004-02-23check for a few basic header filesDaniel Stenberg
2004-02-23include sys/select.hDaniel Stenberg
2004-02-23fixed some warnings in the (both new and old) base64 usageDaniel Stenberg
2004-02-23features no one seem to care much about are now moved over to the 7.11.2Daniel Stenberg
release
2004-02-23make newer MSCV7 compilers use _strtoi64() as a strtoll() replacementDaniel Stenberg
2004-02-23limit rate and windows timeoutsDaniel Stenberg
2004-02-23ares_free_errmem is goneDaniel Stenberg
2004-02-23unused and now removedDaniel Stenberg
2004-02-23Removed getpass from here. The fact this still was present here indicatesDaniel Stenberg
that this file is out of date!
2004-02-23curl_off_t is 8 bytes big on windowsDaniel Stenberg
2004-02-23switch the arguments according to the c sourceDaniel Stenberg
2004-02-23oops, the decode() function got its arguments reversed in my cleanupDaniel Stenberg
operation!
2004-02-23correct the input data structsDaniel Stenberg
2004-02-23use size_t to keep strlen() resultsDaniel Stenberg
2004-02-23simplied how create_hostcache_id() is used, and also its function somewhatDaniel Stenberg
cleared up some ssize_t/size_t mixups
2004-02-23adjusted to the modified base64 protosDaniel Stenberg
2004-02-23More size_t cleanups in the base64 functions.Daniel Stenberg
2004-02-23The base64 encode function now takes a size_t for size, not an int asDaniel Stenberg
previously.
2004-02-23more int vs long/size_t fixes after icc compiler warningsDaniel Stenberg
2004-02-23more int/long fixes after icc "remarks"Daniel Stenberg