summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* nss: use PK11_CreateManagedGenericObject() if availableKamil Dudka2018-02-151-0/+9
| | | | | | | | | ... so that the memory allocated by applications using libcurl does not grow per each TLS connection. Bug: https://bugzilla.redhat.com/1510247 Closes #2297
* configure: fix the check for unsigned time_tDaniel Stenberg2018-01-251-1/+1
| | | | | | Assign the time_t variable negative value and then check if it is greater than zero, which will evaluate true for unsigned time_t but false for signed time_t.
* parsedate: fix date parsing for systems with 32 bit longDaniel Stenberg2018-01-251-1/+18
| | | | | | | | | | | Make curl_getdate() handle dates before 1970 as well (returning negative values). Make test 517 test dates for 64 bit time_t. This fixes bug (3) mentioned in #2238 Closes #2250
* configure.ac: append extra linker flags instead of prepending them.Dan Johnson2018-01-131-2/+2
| | | | | | | | Link order should list libraries after the libraries that use them, so when we're guessing that we might also need to add -ldl in order to use -lssl, we should add -ldl after -lssl. Closes https://github.com/curl/curl/pull/2234
* build: remove HAVE_LIMITS_H checkJay Satiro2018-01-051-1/+0
| | | | | | | | .. because limits.h presence isn't optional, it's required by C89. Ref: http://port70.net/~nsz/c/c89/c89-draft.html#2.2.4.2 Closes https://github.com/curl/curl/pull/2215
* libssh: fix a syntax error in configure.acMichael Kaufmann2017-12-121-1/+1
| | | | | | Follow-up to c92d2e1 Closes #2172
* configure: add AX_CODE_COVERAGE only if using gccMichael Felt2017-12-081-1/+7
| | | | | Fixes #2076 Closes #2125
* configure: check for netinet/in6.hRandall S. Becker2017-12-061-0/+7
| | | | | | | Needed by HPE NonStop NSE and NSX systems Fixes #2146 Closes #2155
* curl-config: add --ssl-backendsDaniel Stenberg2017-12-061-0/+3
| | | | | | | Lists all SSL backends that were enabled at build-time. Suggested-by: Oleg Pudeyev Fixes #2128
* libssh: added SFTP supportNikos Mavrogiannopoulos2017-12-011-0/+1
| | | | | | | | | | The SFTP back-end supports asynchronous reading only, limited to 32-bit file length. Writing is synchronous with no other limitations. This also brings keyboard-interactive authentication. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* Added support for libssh SSH SCP back-endNikos Mavrogiannopoulos2017-12-011-2/+85
| | | | | | | | | | libssh is an alternative library to libssh2. https://www.libssh.org/ That patch set also introduces support for ECDSA ed25519 keys, as well as gssapi authentication. Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
* connect: add support for new TCP Fast Open API on LinuxAlessandro Ghedini2017-11-241-0/+1
| | | | | | | | | | | The new API added in Linux 4.11 only requires setting a socket option before connecting, without the whole sento() machinery. Notably, this makes it possible to use TFO with SSL connections on Linux as well, without the need to mess around with OpenSSL (or whatever other SSL library) internals. Closes #2056
* HTTP: implement Brotli content encodingPatrick Monnerat2017-11-051-0/+93
| | | | | | | | | | | | This uses the brotli external library (https://github.com/google/brotli). Brotli becomes a feature: additional curl_version_info() bit and structure fields are provided for it and CURLVERSION_NOW bumped. Tests 314 and 315 check Brotli content unencoding with correct and erroneous data. Some tests are updated to accomodate with the now configuration dependent parameters of the Accept-Encoding header.
* timeval: use mach time on MacOSDmitri Tikhonov2017-10-301-0/+1
| | | | | | If clock_gettime() is not supported, use mach_absolute_time() on MacOS. closes #2033
* configure: remove the C++ compiler checkDaniel Stenberg2017-10-141-1/+0
| | | | | | | ... we used it only for the fuzzer, which we now have in a separate git repo. Closes #1990
* openssl: enable PKCS12 support for !BoringSSLDaniel Stenberg2017-10-091-4/+1
| | | | | | | | | Enable PKCS12 for all non-boringssl builds without relying on configure or cmake checks. Bug: https://curl.haxx.se/mail/lib-2017-10/0007.html Reported-by: Christian Schmitz Closes #1948
* fuzzer: move to using external curl-fuzzerMax Dymond2017-10-041-1/+0
| | | | | | Use the external curl-fuzzer repository for fuzzing. Closes #1923
* tests: add initial gssapi test using stub implementationIsaac Boukris2017-09-151-0/+7
| | | | | | | | | | | The stub implementation is pre-loaded using LD_PRELOAD and emulates common gssapi uses (only builds if curl is initially built with gssapi support). The initial tests are currently disabled for debug builds as LD_PRELOAD is not used then. Ref: https://github.com/curl/curl/pull/1687
* configure: check for C++ compiler after C, to make it non-fatalDaniel Stenberg2017-09-071-1/+1
| | | | | | | | | The tests for object file/executable file extensions are presumably only done for the first of these macros in the configure file. Bug: https://github.com/curl/curl/pull/1851#issuecomment-327597515 Reported-by: Marcel Raad Closes #1873
* configure: fix curl_off_t check's include orderJay Satiro2017-09-071-1/+1
| | | | | | | | | | | - Prepend srcdir include path instead of append. Prior to this change it was possible that during the check for the size of curl_off_t the include path of a user's already installed curl could come before the include path of the to-be-built curl, resulting in the system.h of the former being incorrectly included for that check. Closes https://github.com/curl/curl/pull/1870
* configure: remove --enable-soname-bump and SONAME_BUMPDaniel Stenberg2017-09-061-33/+0
| | | | | | | | | | | | | | | | | | Back in 2008, (and commit 3f3d6ebe665f3) we changed the logic in how we determine the native type for `curl_off_t`. To really make sure we didn't break ABI without bumping SONAME, we introduced logic that attempted to detect that it would use a different size and thus not be compatible. We also provided a manual switch that allowed users to tell configure to bump SONAME by force. Today, we know of no one who ever got a SONAME bump auto-detected and we don't know of anyone who's using the manual bump feature. The auto- detection is also no longer working since we introduced defining curl_off_t in system.h (7.55.0). Finally, this bumping logic is not present in the cmake build. Closes #1861
* configure: add MultiSSL to FEATURES when enabledDaniel Stenberg2017-09-051-0/+6
| | | | ...for curl-config and its corresponding test 1014
* ossfuzz: Move to C++ for curl_fuzzer.Max Dymond2017-09-021-0/+1
| | | | | | | | Automake gets confused if you want to use C++ static libraries with C code - basically we need to involve the clang++ linker. The easiest way of achieving this is to rename the C code as C++ code. This gets us a bit further along the path and ought to be compatible with Google's version of clang.
* ossfuzz: moving towards the ideal integrationMax Dymond2017-09-011-1/+1
| | | | | | | | | - Start with the basic code from the ossfuzz project. - Rewrite fuzz corpora to be binary files full of Type-Length-Value data, and write a glue layer in the fuzzing function to convert corpora into CURL options. - Have supporting functions to generate corpora from existing tests - Integrate with Makefile.am
* configure: remove the leading comma from the backends listDaniel Stenberg2017-08-311-1/+1
| | | | | | | | | ... when darwinssl is used. Reported-by: Viktor Szakats Bug: https://github.com/curl/curl/commit/b0989cd3abaff4f9a0717b4875022fa79e33b481#commitcomment-23943493 Closes #1845
* configure: Handle "MultiSSL" specially When versioning symbolsJohannes Schindelin2017-08-281-1/+3
| | | | | | | | | | | There is a mode in which libcurl is compiled with versioned symbols, depending on the active SSL backend. When multiple SSL backends are active, it does not make sense to favor one over the others, so let's not: introduce a new prefix for the case where multiple SSL backends are compiled into cURL. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
* configure: allow setting the default SSL backendJohannes Schindelin2017-08-281-0/+54
| | | | | | | | | | | | | Previously, we used as default SSL backend whatever was first in the `available_backends` array. However, some users may want to override that default without patching the source code. Now they can: with the --with-default-ssl-backend=<backend> option of the ./configure script. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
* version: add the CURL_VERSION_MULTI_SSL feature flagJohannes Schindelin2017-08-281-4/+15
| | | | | | | This new feature flag reports When cURL was built with multiple SSL backends. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
* vtls: allow selecting which SSL backend to use at runtimeJohannes Schindelin2017-08-281-27/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When building software for the masses, it is sometimes not possible to decide for all users which SSL backend is appropriate. Git for Windows, for example, uses cURL to perform clones, fetches and pushes via HTTPS, and some users strongly prefer OpenSSL, while other users really need to use Secure Channel because it offers enterprise-ready tools to manage credentials via Windows' Credential Store. The current Git for Windows versions use the ugly work-around of building libcurl once with OpenSSL support and once with Secure Channel support, and switching out the binaries in the installer depending on the user's choice. Needless to say, this is a super ugly workaround that actually only works in some cases: Git for Windows also comes in a portable form, and in a form intended for third-party applications requiring Git functionality, in which cases this "swap out libcurl-4.dll" simply is not an option. Therefore, the Git for Windows project has a vested interest in teaching cURL to make the SSL backend a *runtime* option. This patch makes that possible. By running ./configure with multiple --with-<backend> options, cURL will be built with multiple backends. For the moment, the backend can be configured using the environment variable CURL_SSL_BACKEND (valid values are e.g. "openssl" and "schannel"). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
* CURL_SIZEOF_LONG: removed, use only SIZEOF_LONGDaniel Stenberg2017-08-171-1/+0
|
* system.h: remove all CURL_SIZEOF_* definesDaniel Stenberg2017-08-171-10/+7
| | | | | | | ... as they're not used externally and internally we check for the sizes already in configure etc. Closes #1767
* configure: check for __builtin_available() availability (#1788)Nick Zitzmann2017-08-161-0/+1
| | | | | | | This change does two things: 1. It un-breaks the build in Xcode 9.0. (Xcode 9.0 is currently failing trying to compile connectx() in lib/connect.c.) 2. It finally weak-links the connectx() function, and falls back on connect() when run on older operating systems.
* configure: use the threaded resolver backend by default if possibleDaniel Stenberg2017-08-101-5/+2
| | | | Closes #1647
* configure: fix the check for IdnToUnicodeJeremy Tan2017-08-011-1/+6
| | | | | Fixes #1669 Closes #1713
* configure: remove checks for 5 functions never usedDaniel Stenberg2017-07-041-6/+1
| | | | | | fork, getprotobyname, inet_addr, perror, uname closes #1638
* configure: disable nghttp2 too if HTTP has been disabledDaniel Stenberg2017-06-161-0/+7
|
* fuzz: corpora file structure, initial commitFrederik B2017-06-151-0/+1
|
* includes: remove curl/curlbuild.h and curl/curlrules.hDaniel Stenberg2017-06-141-6/+1
| | | | | | | | Rely entirely on curl/system.h now. Introduced in Aug 2008 with commit 14240e9e109f. Now gone. Fixes #1456
* configure: update the copyright year in the outputDaniel Stenberg2017-06-121-1/+1
|
* configure: fix link with librtmp when specifying pathChris Carlmar2017-06-071-0/+1
| | | | Bug: https://curl.haxx.se/mail/lib-2017-06/0017.html
* build: provide easy code coverage measuringDaniel Stenberg2017-06-021-0/+1
| | | | Closes #1528
* tool_operate: use utimes instead of obsolescent utime when availableDan Fandrich2017-04-271-1/+2
|
* configure: stop prepending to LDFLAGS, CPPFLAGSJay Satiro2017-04-251-9/+9
| | | | | | | | - Change prepends to appends because user's LDFLAGS and CPPFLAGS should always come first so they're searched before ours. Bug: https://github.com/curl/curl/issues/1420 Reported-by: Helmut K. C. Tessarek
* configure: fix the -ldl check for openssl, add -lpthread checkDaniel Stenberg2017-04-241-44/+42
| | | | | | | | | | | The check for if -ldl is needed to build with (a statically built) openssl was broken. This repairs the check, and adds a check for -lpthread as well since OpenSSL 1.1.0+ does in fact require -lpthread so only adding -ldl for a static openssl build is no longer enough. Reported-by: Jay Satiro Ref: #1426 Closes #1427
* configure.ac: ignore CR after version numbersMarcel Raad2017-04-171-2/+2
| | | | | | | | | Ignore everything after the version numbers in LIBCURL_VERSION and LIBCURL_VERSION_NUM to ged rid of the extra CR character. This makes tests 1022 and 1023 pass on Linux with a CRLF checkout. Ref: https://github.com/curl/curl/pull/1344#issuecomment-289243166 Closes https://github.com/curl/curl/pull/1422
* configure: fix --with-zlib when a path is specifiedGreg Rowe2017-03-031-10/+9
| | | | | | | | | | Prior to this change if you attempted to configure curl using --wtih-zlib and specified a path the path would be ignored if you also had pkg-config installed on your system. This situation can easily arise when you are cross compiling. This change moves the test for detecting zlib settings via pkg-config only if OPT_ZLIB is not set. Closes https://github.com/curl/curl/pull/1292
* configure: fix for --enable-pthreadsJay Satiro2017-03-021-13/+32
| | | | | | | Better handle options conflicts that can occur if --enable-pthreads. Bug: https://github.com/curl/curl/pull/1295 Reported-by: Marc-Antoine Perennou
* configure: Allow disabling pthreads, fall back on Win32 threadsJay Satiro2017-02-141-4/+40
| | | | | | | | | When the threaded resolver option is specified for configure the default thread library is pthreads. This change makes it possible to --disable-pthreads and then configure can fall back on Win32 threads for native Windows builds. Closes https://github.com/curl/curl/pull/1260
* gnutls: check for alpn and ocsp in configureMarcus Hoffmann2017-01-131-1/+1
| | | | | | | | | | | Check for presence of gnutls_alpn_* and gnutls_ocsp_* functions during configure instead of relying on the version number. GnuTLS has options to turn these features off and we ca just work with with such builds like we work with older versions. Signed-off-by: Marcus Hoffmann <m.hoffmann@cartelsol.com> Closes #1204
* configure: accept --with-libidn2 insteadDaniel Stenberg2016-12-251-1/+1
| | | | | | | | ... which the help text already implied since we switched to libidn2 from libidn in commit 9c91ec778104ae3b back in October 2016. Reported-by: Christian Weisgerber Bug: https://curl.haxx.se/mail/lib-2016-12/0110.html