aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2010-06-30http_ntlm: add support for NSSKamil Dudka
When configured with '--without-ssl --with-nss', NTLM authentication now uses NSS crypto library for MD5 and DES. For MD4 we have a local implementation in that case. More details are available at https://bugzilla.redhat.com/603783 In order to get it working, curl_global_init() must be called with CURL_GLOBAL_SSL or CURL_GLOBAL_ALL. That's necessary because NSS needs to be initialized globally and we do so only when the NSS library is actually required by protocol. The mentioned call of curl_global_init() is responsible for creating of the initialization mutex. There was also slightly changed the NSS initialization scenario, in particular, loading of the NSS PEM module. It used to be loaded always right after the NSS library was initialized. Now the library is initialized as soon as any SSL or NTLM is required, while the PEM module is prevented from being loaded until the SSL is actually required.
2010-06-04Enable OpenLDAP support for cygwin builds.Yang Tse
Enable OpenLDAP support for cygwin builds. This support was disabled back in 2008 due to incompatibilities between OpenSSL and OpenLDAP headers. cygwin's OpenSSL 0.9.8l and OpenLDAP 2.3.43 versions on cygwin 1.5.25 allow building an OpenLDAP enabled libcurl supporting back to Windows 95. Remove non-functional CURL_LDAP_HYBRID code and references.
2010-06-01fix ldaps option issueYang Tse
2010-06-01fix ldap related compilation issuesYang Tse
2010-05-28LDAPS: list availability depending on SSL's presenceHoward Chu
2010-05-25LDAP: properly implemented as a curl_handlerHoward Chu
makes the LDAP code much cleaner, nicer and in general being a better libcurl citizen. If a new enough OpenLDAP version is detect, the new and shiny lib/openldap.c code is then used instead of the old cruft Code by Howard, minor cleanups by Daniel.
2010-05-15RMTP: the version code is now rtmp awareHoward Chu
2010-05-13Remove support for BSD version of PolarSSLHoi-Ho Chan
"The BSD version of PolarSSL was made for migratory purposes only and is not maintained. The GPL version of PolarSSL is actually the only actively developed version, so I would be very reluctant to use the BSD version." / Paul Bakker, PolarSSL hacker. Signed-off-by: Hoi-Ho Chan <hoiho.chan@gmail.com>
2010-05-12RTMP: initial support added, powered by librtmpHoward Chu
librtmp is found at http://rtmpdump.mplayerhq.hu/
2010-05-05PolarSSL: initial support addedHoi-Ho Chan
This is Hoi-Ho Chan's patch with some minor fixes by me. There are some potential issues in this, but none worse than we can sort out on the list and over time.
2010-04-25new configure option --enable-threaded-resolverDaniel Stenberg
2010-04-25configure: check for libssh2_init and libssh2_exitDaniel Stenberg
2010-04-16configure: GSSAPI detection on ancient Linux distrosPaul Howarth
On some ancient distributions such as RHEL-3, <gssapi/gssapi_krb5.h> needs to be processed after <gssapi/gssapi.h>, but does not include it itself. This patch checks for <gssapi/gssapi.h> first and then includes it in the test for <gssapi/gssapi_krb5.h>, resolving the problem. Without the patch, <gssapi/gssapi_krb5.h> is "present but cannot be compiled".
2010-03-31update the generic copyright year rangeDaniel Stenberg
2010-03-24remove the CVSish $Id$ linesDaniel Stenberg
2010-03-05Daniel Johnson provided fixes for building with the clang compilerDaniel Stenberg
2010-03-02- [Daniel Johnson] I've been trying to build libcurl with clang on Darwin andDaniel Stenberg
ran into some issues with the GSSAPI tests in configure.ac. The tests first try to determine the include dirs and libs and set CPPFLAGS and LIBS accordingly. It then checks for the headers and finally sets LIBS a second time, causing the libs to be included twice. The first setting of LIBS seems redundant and should be left out, since the first part is otherwise just about finding headers. My second issue is that 'krb5-config --libs gssapi' on Darwin is less than useless and returns junk that, while it happens to work with gcc, causes clang to choke. For example, --libs returns $CFLAGS along with the libs, which is really retarded. Simply setting 'LIBS="$LIBS -lgssapi_krb5 -lresolv"' on Darwin is sufficient.
2010-02-04Added size check for 'short' data typeYang Tse
2010-01-26minor fixes for --enable-ares configure optionYang Tse
2010-01-22adjust rtsp protocol support in curl-config and libcurl.pc when http is disabledYang Tse
2010-01-22In spite claiming to tbe disabled by default, RTSP is enabled and it nowDaniel Stenberg
also says so. I also made the list of protocols get sorted.
2010-01-21Chris Conroy brought support for RTSP transfers, and with it comes 8(!) newDaniel Stenberg
libcurl options for controlling what to get and how to receive posssibly interleaved RTP data. Initial commit.
2010-01-14- Suppressed side effect of OpenSSL configure checks, which prevented NSS fromKamil Dudka
being properly detected under certain circumstances. It had been caused by strange behavior of pkg-config when handling PKG_CONFIG_LIBDIR. pkg-config distinguishes among empty and non-existent environment variable in that case.
2010-01-13remove trailing spaces from configure.acKamil Dudka
2009-12-17- David Byron fixed Curl_ossl_cleanup to actually call ENGINE_cleanup whenDaniel Stenberg
available.
2009-12-12might as well output all supported protocols at the end of configure toDaniel Stenberg
make it more obvious how the output will be
2009-12-12show POP3S, IMAPS and SMTPS as protocols if SSL is enabledDaniel Stenberg
2009-12-12support disabling POP3, IMAP and SMTP and now they also appear in curl-configDaniel Stenberg
--protocols output
2009-11-24When using icc, compile with -fpic and link with intel dynamic libraries.Yang Tse
2009-11-22Make configure remove the curlbuild.h file included in distribution tarballsYang Tse
for use by non-configure systems. As intended, configure would overwrite the distributed one when doing in-tree builds. But VPATH builds would end having two curlbuild.h files, one in the source tree and another in the build tree.
2009-11-15- David Byron improved the configure script to use pkg-config to find OpenSSLKamil Dudka
(and in particular the list of required libraries) even if a path is given as argument to --with-ssl
2009-11-15Remove enable-thread / disable-thread configure option. These were only placeboYang Tse
options. The library is always built as thread safe as possible on every system.
2009-11-14Added '--configure' option to curl-config to display original configure ↵Claes Jakobsson
arguments when curl was built
2009-11-14Refactor how preprocessor symbol _THREAD_SAFE definition is done.Yang Tse
2009-11-14- Claes Jakobsson restored the configure functionality to detect NSS whenDaniel Stenberg
--with-nss is set but not "yes". I think we can still improve that to check for pkg-config in that path etc, but at least this patch brings back the same functionality we had before.
2009-10-28libssh2 detection changes mentioned in ↵Yang Tse
http://curl.haxx.se/mail/lib-2009-10/0343.html
2009-10-27Fix spellingYang Tse
2009-10-21- Attempt to use pkg-config for finding out libssh2 installation detailsDaniel Stenberg
during configure.
2009-10-19Use *_CHECK_PATH_SEPARATOR_REQUIRED to ensure that *_CHECK_PATH_SEPARATORYang Tse
is only expanded and included once in the configure script.
2009-10-18Check for basename() is now done the same as other function checksYang Tse
2009-09-28Added check for memrchr function or macroYang Tse
2009-09-16Moved the libssh2 checks after the SSL library checks. This helps whenDan Fandrich
statically linking since libssh2 needs the SSL library link flags to be set up already to satisfy its dependencies. This wouldn't be necessary if the libssh2 configure check was changed to use pkg-config since the --static flag would add the dependencies automatically.
2009-09-04added --with-nss to configure output.Gunter Knauf
2009-09-01a failed libssh2 check must not pollute the variablesDaniel Stenberg
2009-09-01- configure now tries to use pkg-config for a number of sub-dependencies evenDaniel Stenberg
when cross-compiling. The key to success is then you properly setup PKG_CONFIG_PATH before invoking configure. I also improved how NSS is detected by trying nss-config if pkg-config isn't present, and as a last resort just use the lib name and force the user to setup the LIBS/LDFLAGS/CFLAGS etc properly. The previous last resort would add a range of various libs that would almost never be quite correct.
2009-08-24- Marc de Bruin pointed out that configure --with-gnutls=PATH didn't workDaniel Stenberg
properly and provided a fix. http://curl.haxx.se/bug/view.cgi?id=2843008
2009-07-14renamed generated config.h to curl_config.h in order to avoid clashes when ↵Gunter Knauf
libcurl is used with other projects which also have a config.h.
2009-07-09bring back the libgnutls-config use for checking for GnuTLS if pkg-configDaniel Stenberg
doesn't work, to better fine older gnutls installs
2009-06-20Refactor how libraries are checked for connect() function,Yang Tse
and check for connect() as it is done for other functions.
2009-06-18add CloseSocket camel case function checkYang Tse