de373087 | 19-Feb-2004 |
Daniel Stenberg |
if not yacc or bison is found, check if we *really* need it, and if we do we bail out! |
7729c63b | 19-Feb-2004 |
Daniel Stenberg |
fixed the no-ssl version to return int as well |
eebcf909 | 19-Feb-2004 |
Daniel Stenberg |
provide protos to the functions to prevent warnings |
fa8ecd3d | 19-Feb-2004 |
Daniel Stenberg |
typecast the type to an int on return |
134cb661 | 19-Feb-2004 |
Daniel Stenberg |
return int from test() |
349a15b0 | 19-Feb-2004 |
Daniel Stenberg |
provide a test() proto |
c14fa2c9 | 19-Feb-2004 |
Daniel Stenberg |
use a die and a log function to die and log texts better detect test suite failures remove the buildlog at exit make a random buildlog file name, now in the same dir where the build dir
use a die and a log function to die and log texts better detect test suite failures remove the buildlog at exit make a random buildlog file name, now in the same dir where the build dir is created checks if the ares build succeeded
show more ...
|
6ca7af34 | 19-Feb-2004 |
Daniel Stenberg |
remove the build.log too at exit, and also use the proper $pwd prefix to find the files/dirs to remove so that it still works if we "die" after having done a 'cd' |
afa59244 | 19-Feb-2004 |
Daniel Stenberg |
very minor phrase edit |
bd63a557 | 19-Feb-2004 |
Daniel Stenberg |
fixes from the recent days |
49aa7980 | 19-Feb-2004 |
Daniel Stenberg |
check for standard headers when --enable-debug is used |
c6e5b671 | 19-Feb-2004 |
Daniel Stenberg |
Doug Porter's patch that changes the order of preferences on how to find the default netrc file. We now read and uses HOME _before_ we use getpwuid() to better allow users to move around HOME
Doug Porter's patch that changes the order of preferences on how to find the default netrc file. We now read and uses HOME _before_ we use getpwuid() to better allow users to move around HOME to use different .netrc files without having to rely on even blacker magic.
show more ...
|
e7050f97 | 19-Feb-2004 |
Daniel Stenberg |
If --enable-debug is used and gcc, we figure out which version and then we use as aggressive warning options as possible for the used compiler version. |
b28f3d43 | 19-Feb-2004 |
Daniel Stenberg |
item 19 is considered fixed until we get to hear differently item 25 is now dealt with using the curlx_ prefix, mentioned in detail here: http://curl.haxx.se/mail/lib-2004-02/0215.html |
edd467a1 | 19-Feb-2004 |
Daniel Stenberg |
Use the strtoofft.h header file from the lib directory, as we are now officially using library-code when building the app (at least for the platforms that don't have a strtoll() on their own). |
0bf1bd51 | 19-Feb-2004 |
Daniel Stenberg |
Remade to use curlx_-prefix. This means this function can be compiled and linked separately by the application. This function is not provided by the libcurl API. It can only be accessed by ap
Remade to use curlx_-prefix. This means this function can be compiled and linked separately by the application. This function is not provided by the libcurl API. It can only be accessed by apps if they compile and use this particular source code.
show more ...
|
4cf70e30 | 18-Feb-2004 |
Daniel Stenberg |
AIX and Tru64 have what Tor calls "horribly broken 'which' programs" so we now scan the PATH ourself to find the path to (g)libtool |
9efddfed | 18-Feb-2004 |
Daniel Stenberg |
removed some "jhrg" from comments |
4b11e19f | 18-Feb-2004 |
Daniel Stenberg |
I removed the socklen_t requirement from memdebug.h, so we don't need to figure it out here anymore to build debug builds. |
de681d3b | 18-Feb-2004 |
Daniel Stenberg |
Made curl_accept() take a 'void *' instead of 'socklen_t *' in the 3rd argument to also not force the casual includer to know about the socklen_t type. |
f33be3c3 | 18-Feb-2004 |
Daniel Stenberg |
Modified curl_accept() to take a 'void *' in the 2nd argument instead of sockaddr *. This has the added benefit that source files that include memdebug.h doesn't have to know about "sockaddr". |
62a12b7f | 18-Feb-2004 |
Daniel Stenberg |
No longer uses the 'ret' variable in the plain ipv4-version of my_getaddrinfo() (caused a warning by the IRIX MIPSPro compiler). Also clarified the situation for the 3-arg version of gethostb
No longer uses the 'ret' variable in the plain ipv4-version of my_getaddrinfo() (caused a warning by the IRIX MIPSPro compiler). Also clarified the situation for the 3-arg version of gethostbyname_r() with a huge comment.
show more ...
|
e75ab79b | 18-Feb-2004 |
Daniel Stenberg |
The --enable-debug option really requires this to be built as part of curl. When using it, we now set the include path to better find the devel curl headers, and we check for the socklen_t ty
The --enable-debug option really requires this to be built as part of curl. When using it, we now set the include path to better find the devel curl headers, and we check for the socklen_t type since the curl memdebug stuff needs it.
show more ...
|
abd7e32c | 18-Feb-2004 |
Daniel Stenberg |
simplified and better commented config.h include logic |
e2b6a45c | 18-Feb-2004 |
Daniel Stenberg |
Make sure dns cache timeout -1 really means forever, as it is documented to be. Simply skip the pruning. |