Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-03-29 | these are now in the packages/vms dir | Daniel Stenberg | |
2004-03-29 | The select() timeout is better not static since some implementation actually | Daniel Stenberg | |
might change it. I don't *think* it does it when the timeout is 0,0 but it is better to be sure... | |||
2004-03-29 | issue 24 is fixed by making sure the time fields use a static width | Daniel Stenberg | |
2004-03-29 | several noticable recent changes | Daniel Stenberg | |
2004-03-29 | changes changes changes | Daniel Stenberg | |
2004-03-29 | All test targets now run 'make all' before they prcoeed with the actual | Daniel Stenberg | |
testing so that all test files are build first properly. David Byron reported. | |||
2004-03-29 | Gisle Vanem's djgpp/MS-DOS updates | Daniel Stenberg | |
2004-03-29 | fix to figure out the "real" windows path when built and run with mingw | Daniel Stenberg | |
Andrés García helped out! | |||
2004-03-29 | re-indented to use curl-standard source formatting | Daniel Stenberg | |
2004-03-29 | netinet/tcp.h may require netinet/in.h to be include before | Daniel Stenberg | |
2004-03-28 | use the correct struct | Daniel Stenberg | |
2004-03-27 | Tor fixed a left-over from the ip argument to setnodelay | Daniel Stenberg | |
2004-03-26 | Gisle Vanem: | Daniel Stenberg | |
A patch to bypass MS' sillyness with regard to IPv6 and getaddrinfo(). The CURLDEBUG part is to avoid redefinition warning caused by memdebug.h. If ENABLE_IPV6 isn't enabled, it doesn't matter since we never call getaddrinfo(). Allthough we could to support weird protocols like SOCK_RDM that Win-2K/XP has. | |||
2004-03-26 | some more password blurb | Daniel Stenberg | |
2004-03-26 | check for netinet/tcp.h precense before actually including it | Daniel Stenberg | |
2004-03-26 | removed the ip number from the notcpdelay function | Daniel Stenberg | |
2004-03-25 | get the version number from the new curlver.h header file | Daniel Stenberg | |
2004-03-25 | localtime and gmtime are not thread-safe on newer AIXes either so we force | Daniel Stenberg | |
a check for there *_r-versions too | |||
2004-03-25 | force recent AIX versions to check for strerror_r | Daniel Stenberg | |
2004-03-25 | only output one line about the nodelay even if it fails | Daniel Stenberg | |
2004-03-25 | win32 doesn't need and even doesn't build if we extern declare sys_nerr | Daniel Stenberg | |
2004-03-25 | include the strerror.h file without curl_ prefix | Daniel Stenberg | |
2004-03-25 | strerror without prefix | Daniel Stenberg | |
2004-03-25 | cut off 'curl_' from the strerror file names | Daniel Stenberg | |
2004-03-25 | tcp-nodelay patch by Joe Halpin | Daniel Stenberg | |
2004-03-25 | so there are at least two different strerror_r() versions and our brand | Daniel Stenberg | |
new configure script detects them and now this code acts according to what API that was detected | |||
2004-03-25 | Tor Arntsen fixed how this is invoked | Daniel Stenberg | |
2004-03-25 | strerror_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-25 | detect daily snapshots using the new path for this test | Daniel Stenberg | |
2004-03-25 | make clean now removes *dist files too that might be leftovers from | Daniel Stenberg | |
'maketgz' | |||
2004-03-25 | invoke this script via env, as it is more likely to exist at a fixed path | Daniel Stenberg | |
while perl often is installed in /usr/local/bin or elsewhere | |||
2004-03-25 | added curl_strerror to the build | Daniel Stenberg | |
2004-03-25 | extern declare the sys_nerr variable. Required on Solaris at least. | Daniel Stenberg | |
2004-03-25 | Always 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-24 | Added protos for the upcoming curl_*_strerror() functions | Daniel Stenberg | |
2004-03-24 | missed the new header file | Daniel Stenberg | |
2004-03-24 | Gisle Vanem's fix to replace the bad use of strerror(). This introduces | Daniel Stenberg | |
Curl_strerror() that attempts to be thread-safe _and_ works on Windows too! | |||
2004-03-24 | new header file - for Curl_strerror() | Daniel Stenberg | |
2004-03-24 | better comments, added some more variable types we use in the font-lock | Daniel Stenberg | |
2004-03-24 | Tor Arntsen's major ispell patch | Daniel Stenberg | |
2004-03-24 | Tor Arntsen's mkdir-fix to make this run with perl 5.0005 | Daniel Stenberg | |
2004-03-24 | Avoid 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-24 | added check for strerror_r() | Daniel Stenberg | |
2004-03-24 | include curl/curlver.h instead since this only needs the version defines | Daniel Stenberg | |
2004-03-23 | error messages and new test script | Daniel Stenberg | |
2004-03-23 | we are progressing | Daniel Stenberg | |
2004-03-23 | distribute testcurl.pl too starting now | Daniel Stenberg | |
2004-03-23 | Greg Hewgill's version of testcurl.sh rewritten in perl for greater | Daniel Stenberg | |
portability. I put it in this directory instead of the root since I think perhaps it makes more sense. | |||
2004-03-23 | keep current_speed as an curl_off_t for better precision at higher speeds | Daniel Stenberg | |
if large file support is available | |||
2004-03-23 | switch() on the right variable! | Daniel Stenberg | |