summaryrefslogtreecommitdiff
path: root/m4/curl-confopts.m4
Commit message (Collapse)AuthorAgeFilesLines
* curl-confopts.m4: remove --enable/disable-hidden-symbolsDaniel Stenberg2021-10-221-4/+0
| | | | | | | These configure options have been saying "deprecated" since 9e24b9c7af (April 2012). It was about time we remove them. Closes #7891
* configure: s/AC_HELP_STRING/AS_HELP_STRINGDaniel Stenberg2021-03-161-26/+26
| | | | | | | | | AC_HELP_STRING is deprecated in 2.70+ and I believe AS_HELP_STRING works already since 2.59 so bump the minimum required version to that. Reported-by: Emil Engler Fixes #6647 Closes #6748
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* ECH: renamed from ESNI in docs and configureDaniel Stenberg2020-09-291-21/+21
| | | | | | Encrypted Client Hello (ECH) is the current name. Closes #6022
* cleanup: fix typos and wording in docs and commentsPedro Monreal2020-02-021-3/+3
| | | | | Closes #4869 Reviewed-by: Emil Engler and Daniel Gustafsson
* ESNI: initial build/setupNiall2019-10-021-1/+37
| | | | Closes #4011
* configure: Fix typo in commentDaniel Gustafsson2018-11-211-1/+1
|
* whitespace fixesViktor Szakats2018-09-231-2/+0
| | | | | | | | | | | - replace tabs with spaces where possible - remove line ending spaces - remove double/triple newlines at EOF - fix a non-UTF-8 character - cleanup a few indentations/line continuations in manual examples Closes https://github.com/curl/curl/pull/3037
* curl-confopts.m4: fix typo from ed224f23d5bebDaniel Stenberg2018-06-151-1/+1
| | | | | Fixes my local configure to detect a custom installed c-ares without pkgconfig.
* configure: use pkg-config for c-ares detectionDaniel Stenberg2018-06-141-7/+32
| | | | | | | | | First check if there's c-ares information given as pkg-config info and use that as first preference. Reported-by: pszemus on github Fixes #2203 Closes #2658
* configure: put CURLDEBUG and DEBUGBUILD in lib/curl_config.hFrank Gevaerts2018-05-041-0/+3
| | | | | | | | | They are removed from the compiler flags. This ensures that make dependency tracking will force a rebuild whenever configure --enable-debug or --enable-curldebug changes. Closes #2548
* curl-confopts.m4: fix --disable-threaded-resolverJakub Zakrzewski2017-08-151-4/+4
| | | | Closes https://github.com/curl/curl/issues/1784
* configure: use the threaded resolver backend by default if possibleDaniel Stenberg2017-08-101-5/+5
| | | | Closes #1647
* configure: stop prepending to LDFLAGS, CPPFLAGSJay Satiro2017-04-251-2/+2
| | | | | | | | - 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 for --enable-pthreadsJay Satiro2017-03-021-4/+0
| | | | | | | Better handle options conflicts that can occur if --enable-pthreads. Bug: https://github.com/curl/curl/pull/1295 Reported-by: Marc-Antoine Perennou
* configure: ac_cv_ -> curl_cv_ for r/w varsIrfan Adilovic2016-04-211-5/+5
| | | | | | | These configure vars are modified in a curl-specific way and modified by the configure process, but are never loaded from cache, even though they are designated as _cv_. We should implement proper AC_CACHE_CHECKs for them eventually.
* configure: ac_cv_ -> curl_cv_ for all cached varsIrfan Adilovic2016-04-211-2/+2
| | | | | | | | | | | | | This was automated by: sed -b -i -f <(ack -A1 AC_CACHE_CHECK | \ ack -o 'ac_cv_.*?\b' | \ sort -u | xargs -n1 bash -c \ 'echo "s/$0/curl_cv_${0#ac_cv_}/g"') \ $(git ls-files) This only changed the prefix for 16 variables actually checked with AC_CACHE_CHECK.
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* curl-confopts.m4: Add missing ')'Tatsuhiro Tsujikawa2015-09-261-1/+1
| | | | | | ... for CURL_CHECK_OPTION_RT Closes #456
* configure: add --disable-rt optionMichaƂ Fita2015-07-241-0/+36
| | | | | | | | | | This option disables any attempts in configure to create dependency on stuff requiring linking to librt.so and libpthread.so, in this case this means clock_gettime(CLOCK_MONOTONIC, &mt). We were in need to build curl which doesn't link libpthread.so to avoid the following bug: https://sourceware.org/bugzilla/show_bug.cgi?id=16628.
* configure: autotools compatibility fixes - step IYang Tse2013-01-201-5/+5
| | | | | Fix proper macro expansion order across autotools versions for C compiler and preprocessor program checks.
* configure: remove the --enable/disable-nonblocking optionsDaniel Stenberg2012-08-161-54/+14
| | | | | | | Removing this option as it currently only functions to lure people into wrongly using it and falsely believing that libcurl will work fine without using nonblocking sockets internally - which leads to hard to track or understand errors.
* build adjustments: commit 9e24b9c7 follow-upYang Tse2012-04-171-5/+5
|
* build adjustments: CURL_HIDDEN_SYMBOLS no longer defined in config filesYang Tse2012-04-111-2/+75
| | | | | | | | | | | configure script now provides conditional definitions for Makefile.am that result in CURL_HIDDEN_SYMBOLS being defined by resulting makefiles when appropriate. Additionally, configure script option for symbol hiding control is now named --enable-symbol-hiding --disable-symbol-hiding. While still valid, old option name --enable-hidden-symbols --disable-hidden-symbols will be deprecated in some future release.
* NTLM_WB: final congruency naming adjustmentsYang Tse2011-08-271-34/+34
| | | | | | | | | | | | | | Configure script option --enable-wb-ntlm-auth renamed to --enable-ntlm-wb Configure script option --disable-wb-ntlm-auth renamed to --disable-ntlm-wb Preprocessor symbol WINBIND_NTLM_AUTH_ENABLED renamed to NTLM_WB_ENABLED Preprocessor symbol WINBIND_NTLM_AUTH_FILE renamed to NTLM_WB_FILE Test harness env var CURL_NTLM_AUTH renamed to CURL_NTLM_WB_FILE Static function wb_ntlm_close renamed to ntlm_wb_cleanup Static function wb_ntlm_initiate renamed to ntlm_wb_init Static function wb_ntlm_response renamed to ntlm_wb_response
* NTLM single-sign on adjustments (XI)Yang Tse2011-08-271-5/+6
| | | | | | | Feature string literal NTLM_SSO renamed to NTLM_WB. Preprocessor symbol USE_NTLM_SSO renamed to WINBIND_NTLM_AUTH_ENABLED. curl's 'long' option 'ntlm-sso' renamed to 'ntlm-wb'. Fix some comments to make clear that this is actually a NTLM delegation.
* NTLM single-sign on adjustments (VIII)Yang Tse2011-07-311-2/+62
| | | | | | | | | | | | Use preprocessor symbols WINBIND_NTLM_AUTH_ENABLED and WINBIND_NTLM_AUTH_FILE for Samba's winbind daemon ntlm_auth helper code implementation and filename. Retain preprocessor symbol USE_NTLM_SSO for NTLM single-sign-on feature availability implementation independent. For test harness, prefix NTLM_AUTH environment vars with CURL_ Refactor and rename configure option --with-ntlm-auth to --enable-wb-ntlm-auth[=FILE]
* serial number bumpYang Tse2010-11-091-1/+1
|
* duphandle: use ares_dup()Daniel Stenberg2010-09-211-0/+1
| | | | | | | | | | curl_easy_duphandle() was not properly duping the ares channel. The ares_dup() function was introduced in c-ares 1.6.0 so by starting to use this function we also raise the bar and require c-ares >= 1.6.0 (released Dec 9, 2008) for such builds. Reported by: Ning Dong Bug: http://curl.haxx.se/mail/lib-2010-08/0318.html
* configure: werror related adjustmentsYang Tse2010-08-111-4/+4
|
* build: Enable configure --enable-werrorBen Greear2010-07-211-0/+32
| | | | | | | This passes -Werror to gcc when building curl and libcurl, allowing easy dection of compile warnings. Signed-off-by: Ben Greear <greearb@candelatech.com>
* configure: spell --disable-threaded-resolver correctlyDaniel Stenberg2010-06-171-2/+2
| | | | | | | Previously we only accepted the option when named --disable-threaded-resover, which wasn't quite intended. Reported by: Helwing Lutz
* new configure option --enable-threaded-resolverDaniel Stenberg2010-04-251-2/+27
|
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* update outdated serial numberYang Tse2010-03-171-1/+1
|
* Restore normal operation:Yang Tse2010-01-271-8/+8
| | | | | | c-ares is only enabled when specifically requested. Consequently, c-ares default setting is disabled.
* fix c-ares assumed check being skippedYang Tse2010-01-271-3/+3
|
* fix LDFLAGS preservation in CURL_CHECK_LIB_ARESYang Tse2010-01-271-3/+3
|
* minor fixes for --enable-ares configure optionYang Tse2010-01-261-5/+174
|
* fix language in commentYang Tse2009-06-101-2/+2
|
* Added --enable-curldebug configure option to enable and disable buildingYang Tse2009-06-091-2/+54
| | | | | with the low-level curl debug memory tracking 'feature' to allow decoupled setting from --enable-debug.
* Refactor configure script detection of functions used to set sockets intoYang Tse2008-11-131-1/+72
| | | | non-blocking mode, and decouple function detection from function capability.
* Initial attempt to support configure's --(dis|en)able-optimizeYang Tse2008-10-071-10/+66
| | | | | | | option to specify dis(activation) of compiler optimizations. If option is specified, it will be honored independant of the --(dis|en)able-debug option.
* debug option check must be before warnings option checkYang Tse2008-10-021-2/+2
|
* Initial attempt to support configure's --(dis|en)able-warningsYang Tse2008-10-021-0/+93
option to specify dis(activation) of picky compiler warnings. If option is specified, it will be honored independant of the --(dis|en)able-debug option. If option is not specified, it will follow --(dis|en)able-debug setting, whose default is disabled if not specified.