aboutsummaryrefslogtreecommitdiff
path: root/m4/curl-confopts.m4
AgeCommit message (Collapse)Author
2010-11-09serial number bumpYang Tse
2010-09-21duphandle: use ares_dup()Daniel Stenberg
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
2010-08-11configure: werror related adjustmentsYang Tse
2010-07-21build: Enable configure --enable-werrorBen Greear
This passes -Werror to gcc when building curl and libcurl, allowing easy dection of compile warnings. Signed-off-by: Ben Greear <greearb@candelatech.com>
2010-06-17configure: spell --disable-threaded-resolver correctlyDaniel Stenberg
Previously we only accepted the option when named --disable-threaded-resover, which wasn't quite intended. Reported by: Helwing Lutz
2010-04-25new configure option --enable-threaded-resolverDaniel Stenberg
2010-03-24remove the CVSish $Id$ linesDaniel Stenberg
2010-03-17update outdated serial numberYang Tse
2010-01-27Restore normal operation:Yang Tse
c-ares is only enabled when specifically requested. Consequently, c-ares default setting is disabled.
2010-01-27fix c-ares assumed check being skippedYang Tse
2010-01-27fix LDFLAGS preservation in CURL_CHECK_LIB_ARESYang Tse
2010-01-26minor fixes for --enable-ares configure optionYang Tse
2009-06-10fix language in commentYang Tse
2009-06-09Added --enable-curldebug configure option to enable and disable buildingYang Tse
with the low-level curl debug memory tracking 'feature' to allow decoupled setting from --enable-debug.
2008-11-13Refactor configure script detection of functions used to set sockets intoYang Tse
non-blocking mode, and decouple function detection from function capability.
2008-10-07Initial attempt to support configure's --(dis|en)able-optimizeYang Tse
option to specify dis(activation) of compiler optimizations. If option is specified, it will be honored independant of the --(dis|en)able-debug option.
2008-10-02debug option check must be before warnings option checkYang Tse
2008-10-02Initial attempt to support configure's --(dis|en)able-warningsYang Tse
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.