7461592a | 25-Mar-2004 |
Daniel Stenberg |
strerror_r() detection changes: 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 t
strerror_r() detection changes: 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.
show more ...
|
50b0e72f | 25-Mar-2004 |
Daniel Stenberg |
detect daily snapshots using the new path for this test |
76e73cfe | 25-Mar-2004 |
Daniel Stenberg |
make clean now removes *dist files too that might be leftovers from 'maketgz' |
5d8ec172 | 25-Mar-2004 |
Daniel Stenberg |
invoke this script via env, as it is more likely to exist at a fixed path while perl often is installed in /usr/local/bin or elsewhere |
0953140b | 25-Mar-2004 |
Daniel Stenberg |
added curl_strerror to the build |
6c282599 | 25-Mar-2004 |
Daniel Stenberg |
extern declare the sys_nerr variable. Required on Solaris at least. |
accc6eb9 | 25-Mar-2004 |
Daniel Stenberg |
Always include setup.h as the first header file. 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
Always include setup.h as the first header file. 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.
show more ...
|
eab8cdc6 | 24-Mar-2004 |
Daniel Stenberg |
Added protos for the upcoming curl_*_strerror() functions |
dc9d0f25 | 24-Mar-2004 |
Daniel Stenberg |
missed the new header file |
b60d6404 | 24-Mar-2004 |
Daniel Stenberg |
Gisle Vanem's fix to replace the bad use of strerror(). This introduces Curl_strerror() that attempts to be thread-safe _and_ works on Windows too! |
08fe4b32 | 24-Mar-2004 |
Daniel Stenberg |
new header file - for Curl_strerror() |
0e60a118 | 24-Mar-2004 |
Daniel Stenberg |
better comments, added some more variable types we use in the font-lock |
4b78b412 | 24-Mar-2004 |
Daniel Stenberg |
Tor Arntsen's major ispell patch |
0d6d9af7 | 24-Mar-2004 |
Daniel Stenberg |
Tor Arntsen's mkdir-fix to make this run with perl 5.0005 |
41cd36b8 | 24-Mar-2004 |
Daniel Stenberg |
Avoid doing chdir .., as it breaks the ability to use symlinks properly. chdir to absolute directory names instead. (this flaw exists in the shell version too) |
242be557 | 24-Mar-2004 |
Daniel Stenberg |
added check for strerror_r() |
7cf47ea5 | 24-Mar-2004 |
Daniel Stenberg |
include curl/curlver.h instead since this only needs the version defines |
6fb00128 | 23-Mar-2004 |
Daniel Stenberg |
error messages and new test script |
9d1ce9c0 | 23-Mar-2004 |
Daniel Stenberg |
we are progressing |
5947e4e9 | 23-Mar-2004 |
Daniel Stenberg |
distribute testcurl.pl too starting now |
e992aa6a | 23-Mar-2004 |
Daniel Stenberg |
Greg Hewgill's version of testcurl.sh rewritten in perl for greater portability. I put it in this directory instead of the root since I think perhaps it makes more sense. |
2cf21861 | 23-Mar-2004 |
Daniel Stenberg |
keep current_speed as an curl_off_t for better precision at higher speeds if large file support is available |
fe6f0aeb | 23-Mar-2004 |
Daniel Stenberg |
switch() on the right variable! |
bd04c6fb | 23-Mar-2004 |
Daniel Stenberg |
curl_strequal() returns int, keep return variables in an int |
c5637baa | 23-Mar-2004 |
Daniel Stenberg |
make the variables that hold the result of strlen() size_t |