aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-03-26some more password blurbDaniel Stenberg
2004-03-26check for netinet/tcp.h precense before actually including itDaniel Stenberg
2004-03-26removed the ip number from the notcpdelay functionDaniel Stenberg
2004-03-25get the version number from the new curlver.h header fileDaniel Stenberg
2004-03-25localtime and gmtime are not thread-safe on newer AIXes either so we forceDaniel Stenberg
a check for there *_r-versions too
2004-03-25force recent AIX versions to check for strerror_rDaniel Stenberg
2004-03-25only output one line about the nodelay even if it failsDaniel Stenberg
2004-03-25win32 doesn't need and even doesn't build if we extern declare sys_nerrDaniel Stenberg
2004-03-25include the strerror.h file without curl_ prefixDaniel Stenberg
2004-03-25strerror without prefixDaniel Stenberg
2004-03-25cut off 'curl_' from the strerror file namesDaniel Stenberg
2004-03-25tcp-nodelay patch by Joe HalpinDaniel Stenberg
2004-03-25so there are at least two different strerror_r() versions and our brandDaniel Stenberg
new configure script detects them and now this code acts according to what API that was detected
2004-03-25Tor Arntsen fixed how this is invokedDaniel Stenberg
2004-03-25strerror_r() detection changes:Daniel Stenberg
1. Try with _THREAD_SAFE instead of _REENTRANT, as AIX seems to require it and if _REENTRANT is required we should already have it set since one of the previous tests. 2. Added API-detection for what kind of strerror_r() that is provided. The POSIX style or the glibc style. Tor Arntsen provided the necessary feedback these changes are based upon.
2004-03-25detect daily snapshots using the new path for this testDaniel Stenberg
2004-03-25make clean now removes *dist files too that might be leftovers fromDaniel Stenberg
'maketgz'
2004-03-25invoke this script via env, as it is more likely to exist at a fixed pathDaniel Stenberg
while perl often is installed in /usr/local/bin or elsewhere
2004-03-25added curl_strerror to the buildDaniel Stenberg
2004-03-25extern declare the sys_nerr variable. Required on Solaris at least.Daniel Stenberg
2004-03-25Always include setup.h as the first header file.Daniel Stenberg
Added a more verbose comment about what strerror_r() can set errno to in case of failure. This file still doesn't build on Solaris due to a missing 'sys_nerr' symbol.
2004-03-24Added protos for the upcoming curl_*_strerror() functionsDaniel Stenberg
2004-03-24missed the new header fileDaniel Stenberg
2004-03-24Gisle Vanem's fix to replace the bad use of strerror(). This introducesDaniel Stenberg
Curl_strerror() that attempts to be thread-safe _and_ works on Windows too!
2004-03-24new header file - for Curl_strerror()Daniel Stenberg
2004-03-24better comments, added some more variable types we use in the font-lockDaniel Stenberg
2004-03-24Tor Arntsen's major ispell patchDaniel Stenberg
2004-03-24Tor Arntsen's mkdir-fix to make this run with perl 5.0005Daniel Stenberg
2004-03-24Avoid doing chdir .., as it breaks the ability to use symlinks properly.Daniel Stenberg
chdir to absolute directory names instead. (this flaw exists in the shell version too)
2004-03-24added check for strerror_r()Daniel Stenberg
2004-03-24include curl/curlver.h instead since this only needs the version definesDaniel Stenberg
2004-03-23error messages and new test scriptDaniel Stenberg
2004-03-23we are progressingDaniel Stenberg
2004-03-23distribute testcurl.pl too starting nowDaniel Stenberg
2004-03-23Greg Hewgill's version of testcurl.sh rewritten in perl for greaterDaniel Stenberg
portability. I put it in this directory instead of the root since I think perhaps it makes more sense.
2004-03-23keep current_speed as an curl_off_t for better precision at higher speedsDaniel Stenberg
if large file support is available
2004-03-23switch() on the right variable!Daniel Stenberg
2004-03-23curl_strequal() returns int, keep return variables in an intDaniel Stenberg
2004-03-23make the variables that hold the result of strlen() size_tDaniel Stenberg
2004-03-23stricter variable type usageDaniel Stenberg
2004-03-23variable type usage cleanup to please picky compilersDaniel Stenberg
2004-03-23get strlen() results in a size_t, delete 'register'Daniel Stenberg
2004-03-23made time2str() use longs internally instead to prevent compiler warningsDaniel Stenberg
when converting to ints
2004-03-23added explicit typecasts to prevent compiler warnings on variable conversionsDaniel Stenberg
2004-03-23If localbind fails, provide a more portable error message.Daniel Stenberg
2004-03-23minor update by KevinDaniel Stenberg
2004-03-23src/version.h was not properly made!Daniel Stenberg
2004-03-23progress meter fix, CURLINFO_CONTENT_LENGTH_DOWNLOAD fix, cygwin package fixDaniel Stenberg
2004-03-23it actually fits to make a NNNd NNh display so this can be used up toDaniel Stenberg
999 days
2004-03-23Fixed the time fields no never get wider than 8 letters. They can now switchDaniel Stenberg
to a "days + hours" or even "just days" display if the time value is very large. I also switched several calculations over to fixed-point instead of the previous doubles.