Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-11-08 | Dmitry Bartsevich discovered some issues in compatibilty of SSPI-enabled | Daniel Stenberg | |
version of libcurl with different Windows versions. Current version of libcurl imports SSPI functions from secur32.dll. However, under Windows NT 4.0 these functions are located in security.dll, under Windows 9x - in secur32.dll and Windows 2000 and XP contains both these DLLs (security.dll just forwards calls to secur32.dll). Dmitry's patch loads proper library dynamically depending on Windows version. Function InitSecurityInterface() is used to obtain pointers to all of SSPI function in one structure. : ---------------------------------------------------------------------- | |||
2005-10-04 | Domenico Andreoli's patch that removes a few 0xa0(!) bytes | Daniel Stenberg | |
2005-09-20 | Since newer ares versions should work with ipv6, I modified the error message | Daniel Stenberg | |
to a warning message as a first step. We should persue to make curl use c-ares properly even when built with ipv6 support. | |||
2005-09-15 | ifdef for includes, added checking for two not previously checked files (one | Daniel Stenberg | |
being necessary for solaris builds) | |||
2005-09-02 | John Kelly added TFTP support to libcurl. A bunch of new error codes was | Daniel Stenberg | |
added. TODO: add them to docs. add TFTP server to test suite. add TFTP to list of protocols whereever those are mentioned. | |||
2005-08-31 | oops, the GNU GSS patch could clobber the CPPFLAGS variable and it thus | Daniel Stenberg | |
broke krb4 builds! | |||
2005-08-29 | Simon Josefson brought GNU GSS support | Daniel Stenberg | |
2005-08-21 | avoid adding a blank dir to the LD_LIBRARY_PATH when OpenSSL is found in a | Daniel Stenberg | |
default dir | |||
2005-07-27 | Fixed --without-gnutls | Dan Fandrich | |
2005-07-20 | Properly support the options --without-spnego --without-gssapi --without-krb4 | Dan Fandrich | |
2005-06-01 | specify the cares lib before the other libs, to make it build fine with mingw | Daniel Stenberg | |
- inspired by Tupone Alfredo's bug report (and patch) #1212940 | |||
2005-05-25 | set LD_LIBRARY_PATH properly even when the openssl lib dir is found using | Daniel Stenberg | |
pkg-config | |||
2005-05-22 | removed leftover debug message ("moo moo") | Daniel Stenberg | |
2005-05-16 | Modified the gmtime_r check to not check for it until the "check for a working | Daniel Stenberg | |
one" is made, and only if that test runs ok we define it as present. Unless crosscompiling, since then we use the former AC_CHECK_FUNCS method. | |||
2005-05-16 | define GMTIME_R to 0 if not working | Daniel Stenberg | |
2005-05-16 | attempt to detect a bad (as in HPUX 10.20 bad) gmtime_r function | Daniel Stenberg | |
2005-05-13 | adjusted the configure to always skip the fine-poll() test on Mac OS X (darwin) | Daniel Stenberg | |
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-04-22 | Andres Garcia's fix for building static curl on windows. | Daniel Stenberg | |
2005-04-19 | Check for and config for the ca cert bundle properly when built with GnuTLS. | Daniel Stenberg | |
Previously this was only done for OpenSSL builds. | |||
2005-04-19 | when --with-gnutls is used, we assume a bin/libgnutls-config file in the | Daniel Stenberg | |
given prefix. Building something with gnutls without it just is too error- prone. | |||
2005-04-19 | remove the warning for a lacking crypto lib since it migth just be a gnutls | Daniel Stenberg | |
build... | |||
2005-04-15 | if libgnutls-config isn't found in the given path, deal with it nicer (but | Daniel Stenberg | |
it is still likely to not do very good since it can't figure out all the lib dependencies) | |||
2005-04-07 | set LD_LIBRARY_PATH when GnuTLS has been found | Daniel Stenberg | |
2005-04-07 | Add support for --with-gnutls. If configure detects OpenSSL, you need to | Daniel Stenberg | |
to explicitly disable that first with --without-ssl. Initial attempt. | |||
2005-03-30 | fix configure's SSL-detection for msys/mingw (from Andres Garcia) | Daniel Stenberg | |
2005-03-15 | added missing features to curl-config | Daniel Stenberg | |
2005-03-14 | if ws2_32 is used, append the lib last in the LIBS list (too) to make it | Daniel Stenberg | |
build and link fine with c-ares | |||
2005-03-13 | Added --enable-sspi that now make libcurl build with SSPI support. This only | Daniel Stenberg | |
works when built for win32. | |||
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. | |||
2005-03-09 | Stopped linking to the SSL libs if a full installation isn't found. | Dan Fandrich | |
Removed a redundant library check. | |||
2005-03-08 | Fixed the --with-zlib configure option so that it always adds the specified | Dan Fandrich | |
path to the compiler flags. Before, a zlib installation in the default path was always used in preference to the one in the desired location. | |||
2005-02-18 | Based on Mike Dobbs' report, BUILDING_LIBCURL is now defined in here if it | Daniel Stenberg | |
runs to build with mingw. | |||
2005-02-14 | check for ENGINE_load_builtin_engines() as well if engine is around | Daniel Stenberg | |
2005-02-11 | remove the check for strftime(), we don't need it | Daniel Stenberg | |
2005-01-18 | check for errno.h | Daniel Stenberg | |
2004-12-26 | nah, don't use the system's getpass() function since it too often is limited | Daniel Stenberg | |
to 8(!) or similar lengths passwords | |||
2004-12-25 | My reimplementation and cleanup of the getpass source code. We officially no | Daniel Stenberg | |
longer use Angus Mackay's getpass code due to the weirdo license his code was donated to us under. | |||
2004-12-23 | David Shaw fixed the disable variables so that curl-config --feature works | Daniel Stenberg | |
correctly! | |||
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-19 | check for openssl/pkcs12.h | Daniel Stenberg | |
2004-12-13 | Dan Fandrich did minor corrections to his SSL cleanup patch | Daniel Stenberg | |
2004-12-11 | Dan Fandrich: | Daniel Stenberg | |
Here's a stab at a consolidation of the SSL detection heuristics into configure. Source files aren't changed by this patch, except for setup.h and the various config*.h files. Within the configure script, OPENSSL_ENABLED is used to determine if SSL is being used or not, and outside configure, USE_SSLEAY means the same thing; this could be even further unified some day. Now, when SSL is not detected, configure skips the various checks that are dependent on SSL, speeding up the configure process and avoiding complications with cross compiles. I also updated all the architecture- specific config files I could see, but I couldn't test them. | |||
2004-12-09 | Ton Voon provided a configure fix that should fix the notorious (mostly | Daniel Stenberg | |
reported on Solaris) problem where the size_t check fails due to the SSL libs being found in a dir not searched through by the run-time linker. patch-tracker entry #1081707. | |||
2004-12-05 | Dan Fandrich added the --disable-cookies option to configure to build | Daniel Stenberg | |
libcurl without cookie support. This is mainly useful if you want to build a minimalistic libcurl with no cookies support at all. Like for embedded systems or similar. | |||
2004-11-24 | Andrés García fixed the configure script to detect select properly when run | Daniel Stenberg | |
with Msys/Mingw on Windows. | |||
2004-11-22 | David Phillips fix for test 518 and my extension to make it not run on | Daniel Stenberg | |
systems that can't run it fine. | |||
2004-11-12 | Dan Fandrich added the --disable-crypto-auth option to configure to allow | Daniel Stenberg | |
libcurl to build without Digest support. (I figure it should also explicitly disable Negotiate and NTLM.) | |||
2004-11-11 | Dan Fandrich can spell, I cannot | Daniel Stenberg | |
2004-11-11 | fix a IDN detect/use mistake | Daniel Stenberg | |