Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-06-30 | Detect (or at least infer) glibc-style strerror_r even when cross-compiling. | Dan Fandrich | |
2005-05-18 | adjusted the strerror_r test more, use _REENTRANT instead of _THREAD_SAFE | Daniel Stenberg | |
when looking for the prototype | |||
2005-05-18 | The configure check for strerror_r() failed to detect the proper API at | Daniel Stenberg | |
times, like on my HP-UX 10.20 tests. And then lib/strerror.c badly assumed the glibc version if the posix define wasn't set (since it _had_ found a strerror_r). | |||
2005-05-02 | Sort of "fixed" KNOWN_BUGS #4: curl now builds IPv6 enabled on AIX 4.3. At | Daniel Stenberg | |
least it should no longer cause a compiler error. However, it does not have AI_NUMERICHOST so we cannot getaddrinfo() any numerical addresses with it (we use that for FTP PORT/EPRT)! So, I modified the configure check that checks if the getaddrinfo() is working, to use AI_NUMERICHOST since then it'll fail on AIX 4.3 and it will automatically build with IPv6 support disabled. | |||
2005-05-02 | Now configure checks for struct sockaddr_storage and the ftp code tries | Daniel Stenberg | |
to survive without it if not found. AIX 4.3 targetted adjustment. | |||
2005-03-22 | When cross-compiling, we do some better checking for the NI_WITHSCOPEID ↵ | Daniel Stenberg | |
option instead of just assuming it is present. | |||
2005-03-15 | Finally fixed the LDAP library searching bug on libtool ver. 1.5 | Dan Fandrich | |
2005-03-14 | Use the libtool variables better to make LDAP library search work on | Dan Fandrich | |
more platforms. | |||
2005-03-11 | Work around a bug in libtool ver. 1.5 during LDAP library detection. | Dan Fandrich | |
2005-03-11 | Fixed LDAP library file name bug (KNOWN_BUGS #1). configure now auto-detects | Dan Fandrich | |
the correct dynamic library names by default, and provides override switches --with-ldap-lib, --with-lber-lib and --without-lber-lib. Added CURL_DISABLE_LDAP to platform-specific config files to disable LDAP support on those platforms that probably don't have dynamic OpenLDAP libraries available to avoid compile errors. | |||
2004-12-22 | Marcin Konicki provided two configure fixes and a source fix to make curl | Daniel Stenberg | |
build out-of-the-box on BeOS. | |||
2004-12-20 | gcc 2.7 can't handle a few warning options that gcc 2.95 can. | Dan Fandrich | |
2004-12-15 | Fix the --enable-debug compiler warning options for older versions of gcc. | Dan Fandrich | |
2004-06-07 | Reverted the previous change and redid it differently as it seemed to not | Daniel Stenberg | |
work. This is supposed to detect cross-compiling and alert the user, and not do the POSIX-check for strerror_r() if it already detected a glibc-compatible strerror_r(). | |||
2004-06-04 | 1 - do better when cross-compiling when checking for strerror_r() - alert | Daniel Stenberg | |
the user. 2 - don't check for POSIX-style if glibc-style is found first | |||
2004-05-06 | typo AGAIN | Daniel Stenberg | |
2004-05-06 | When using the icc compiler, we also ignore remark #1418 "external definition | Daniel Stenberg | |
with no prior declaration" since this is a habit we have in the code. | |||
2004-05-06 | if no strerror_r prototype is found, we provide our own to prevent picky | Daniel Stenberg | |
compilers to warn | |||
2004-05-05 | gcc 3.4 now uses the -Wunreachable-code option, I believe we can make older | Daniel Stenberg | |
ones use this too... | |||
2004-04-01 | Applied Joe Halpin's bugfixes to the NI_WITHSCOPEID test program. | Daniel Stenberg | |
2004-03-31 | HAVE_NI_WITHSCOPEID spelled right! | Daniel Stenberg | |
2004-03-31 | Andrés García fixed a warning in the ioctlsocket() usage. | Daniel Stenberg | |
2004-03-31 | modified the NI_WITHSCOPEID to use an AF_INET6 socket immediately and | Daniel Stenberg | |
added some more debug output to make it easier to detect failure reasons in the autobuild logs | |||
2004-03-30 | Added CURL_CHECK_NI_WITHSCOPEID that checks if NI_WITHSCOPEID exists and | Daniel Stenberg | |
works. No code actually uses the HAVE_NI_WITHSCOPEID (that a positive test results in), but this is still only for testing purposes. | |||
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-24 | added check for strerror_r() | Daniel Stenberg | |
2004-03-10 | ignore the icc warning 981 "operands are evaluated in unspecified order" | Daniel Stenberg | |
2004-03-08 | we ignore the ICC warning 1419 as well | Daniel Stenberg | |
2004-03-01 | Perhaps -Wundef is better on gcc versions after 2.95, since the autobuild | Daniel Stenberg | |
on FreeBSD gives us lots of warnings in system headers and I suspect this option is what causes them! | |||
2004-03-01 | When setting aggressive pedantic compiler options, display what options | Daniel Stenberg | |
that were set. For easier debugging/changing of this. | |||
2004-02-26 | Make icc ignore "invalid format string conversion" warnings as well. They | Daniel Stenberg | |
appear because of our home-grown option '%Od' for the curl_off_t output. | |||
2004-02-26 | Use __INTEL_COMPILER instead of __ICC to the cpp to detect the Intel icc | Daniel Stenberg | |
compiler! | |||
2004-02-25 | set debug options when using the icc compiler | Daniel Stenberg | |
2004-02-25 | Moved most of the set-debug-options-depending-on-compiler logic to the new | Daniel Stenberg | |
CURL_CC_DEBUG_OPTS function in acinclude.m4 | |||
2004-01-15 | Added escaping of the function name in the AC_DEFUN() macros, so that | Daniel Stenberg | |
automake 1.8+ stops complaining! | |||
2003-10-30 | Added proper #ifdef's for the #include files when checking for in_addr_t, | Daniel Stenberg | |
which made the test start working nicely on BeOS. Shard verified it. | |||
2003-10-06 | O_NONBLOCK does not work on BeOS according to Shard | Daniel Stenberg | |
2003-10-05 | improved the non-block check a lot: | Daniel Stenberg | |
* several tests ALWAYS failed due to bad test programs * the IoctlSocket() test now is linked on test as it could otherwise compile fine on many systems that doesn't support it * added a test for the BeOS way of doing non-blocking sockets (based on a patch from Shard) | |||
2003-05-15 | change the order of the in_addr_t tests, so that 'unsigned long' is tested | Daniel Stenberg | |
for first, as it seems to be what many systems use | |||
2003-01-20 | added description in all AC_DEFINE() calls | Daniel Stenberg | |
2002-01-31 | Albert Chin: | Daniel Stenberg | |
Forgot one case. On HP-UX 11.00, gethostbyname_r() is properly defined if -D_REENTRANT is used. Without it, the compiler still accepts the function prototype but gives a warning about hostent_data going out of scope. This is because struct hostent_data is not declared. So, we force an error by trying to set a variable to the struct. | |||
2002-01-14 | Stoned Elipot's patch for the in_addr_t test | Daniel Stenberg | |
2001-11-28 | now sets a type for in_addr_t even if it isn't found in the #include files | Daniel Stenberg | |
like on my linux box | |||
2001-11-28 | Added an in_addr_t check | Daniel Stenberg | |
2001-11-08 | now we make sure that NULL is defined in the gethostbyname_r() compiles | Daniel Stenberg | |
as it turned out they aren't everywhere, and that causes compiles to fail and then we don't find the proper function call! | |||
2001-10-04 | Albert Chin's improved gethostbyname_r() tests | Daniel Stenberg | |
2001-10-01 | Added non-blocking sockets test | Daniel Stenberg | |
2001-08-20 | Albert Chin's neat configure/package fixes | Daniel Stenberg | |
2001-05-29 | not used in autoconf version 2.50 | Daniel Stenberg | |
2001-04-19 | Albert Chin's patch posted to the mailing list 19 Apr 2001 | Daniel Stenberg | |