Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-02-20 | Only use -Wstrict-prototypes with gcc 3.3 or later. | Daniel Stenberg | |
It is working with earlier versions, but when I use it with 3.0.3, I can't get it to ignore errors in "system headers" with -isystem so we get excessive amounts of warnings on SSL headers which is very annoying. | |||
2004-02-19 | -Wcast-align is a bit too annoying | Daniel Stenberg | |
2004-02-19 | Anything that looks like gcc 5.0 or more is no longer treated as gcc. I hope | Daniel Stenberg | |
this will make us exclude icc 8.0 etc. | |||
2004-02-19 | When --enable-debug is used, for every -I provided to $CPPFLAGS we add | Daniel Stenberg | |
a corresponding -isystem, if using gcc, to inhibit warnings on those headers. | |||
2004-02-19 | if not yacc or bison is found, check if we *really* need it, and if we do | Daniel Stenberg | |
we bail out! | |||
2004-02-19 | If --enable-debug is used and gcc, we figure out which version and then we | Daniel Stenberg | |
use as aggressive warning options as possible for the used compiler version. | |||
2004-02-15 | Andrés García added a check for lwinmm for Mingw/sys | Daniel Stenberg | |
2004-02-12 | If no nroff tool is found, or if no command line switch to nroff that converts | Daniel Stenberg | |
a man page to text is found, we disable the built-in manual stuff to still be able to build. | |||
2004-02-12 | added --enable/disable-manual | Daniel Stenberg | |
2004-02-11 | Andrés García's additional fix to make the OpenSSL stuff work for msys/mingw | Daniel Stenberg | |
2004-02-06 | Rewrote the gethostbyname() check after Andrés García's provided patch | Daniel Stenberg | |
for finding it using mingw on windows. I also made the script skip the search for gethostbyname_r and gethostbyaddr_r when ipv6 is enabled. | |||
2004-02-05 | An attempt to only set both libz-related defines at the same time. We need | Daniel Stenberg | |
both the lib and the header present for both defines to be set. If only one of the files is found, we issue a warning and set no define. | |||
2004-02-05 | when using --enable-debug and gcc, provide the -Wno-format-nonliteral option | Daniel Stenberg | |
to prevent the warning in mprintf.c: (currently line 930) "format not a string literal, argument types not checked" | |||
2004-02-03 | link with libcares instead of libares | Daniel Stenberg | |
2004-02-02 | try to figure out if -man or -mandoc works to get text with the NROFF | Daniel Stenberg | |
utility | |||
2004-01-29 | check for sys/ioctl.h as well | Daniel Stenberg | |
added commented more aggressive compiler options for gcc, subject to be used instead of the current ones when --enable-debug is used | |||
2004-01-22 | Instead of checking the off_t size, we use the source dir version of the | Daniel Stenberg | |
curl.h header and then check for the size of the curl_off_t type. | |||
2004-01-15 | check for limits.h as well | Daniel Stenberg | |
2004-01-08 | fixed the LDFLAGS creation for the SPNEGO option | Daniel Stenberg | |
2004-01-07 | updated year in the copyright string | Daniel Stenberg | |
2003-12-15 | We cannot 'cd' to the ares build dir to get the path, as the directory hasn't | Daniel Stenberg | |
been created at this point yet when we build outside of the source dir. | |||
2003-12-11 | if there is an 'ares' subdirectory when configure is run with --enable-ares | Daniel Stenberg | |
(without a given path), we run configure automatically in that subdir | |||
2003-12-10 | check for strtoll(), for the upcoming >2GB patch | Daniel Stenberg | |
2003-12-10 | check for assert.h | Daniel Stenberg | |
2003-12-10 | Dominick Meglio made --enable-ares support an option =PATH to specify a | Daniel Stenberg | |
root path to an installed ares. | |||
2003-12-08 | no need to add -lz to LDFLAGS manually, as AC_CHECK_LIB() does that | Daniel Stenberg | |
automatically! | |||
2003-12-08 | curl-config now shows asyncdns if built with ares enabled | Daniel Stenberg | |
2003-12-02 | that MSG_NOSIGNAL check serves no useful purpose! | Daniel Stenberg | |
2003-12-02 | renamed the KRB4 to HAVE_KRB4 | Daniel Stenberg | |
2003-12-02 | check for MSG_NOSIGNAL | Daniel Stenberg | |
2003-11-27 | Markus Moeller fixed the SPNEGO check and it nows defines HAVE_SPNEGO | Daniel Stenberg | |
2003-11-17 | Maciej W. Rozycki made this script use a cache variable for the writable | Daniel Stenberg | |
argv test. This way, the default can be overridden better (for cross-compiles etc) | |||
2003-10-30 | Check for siginterrupt, used by the test suite web server sws. | Daniel Stenberg | |
2003-10-24 | Based on David Hull's fix in bug report 804599, we now check for solaris | Daniel Stenberg | |
and gcc, to set the -mimpure-text link flag for linking the lib better. | |||
2003-10-09 | removed creation of tests/server/config.h | Daniel Stenberg | |
2003-10-07 | check for inet_pton() | Daniel Stenberg | |
2003-10-02 | James MacMillan's patch makes curl build on QNC 6.2.x. | Daniel Stenberg | |
2003-09-21 | find and detect the Heimdal GSSAPI include path properly | Daniel Stenberg | |
2003-09-19 | Markus Moeller's SPNEGO patch applied, with my edits, additions and minor | Daniel Stenberg | |
cleanups. | |||
2003-09-05 | --enable-thread was broken and this should cure it | Daniel Stenberg | |
Kevin Fisk reported. | |||
2003-08-19 | when --enable-debug is used to set debug options with gcc, use -Wno-long-long | Daniel Stenberg | |
to inhibit long long warnings (ISO C90 does not support `long long') | |||
2003-08-19 | check for CRYPTO_cleanup_all_ex_data as well | Daniel Stenberg | |
2003-08-14 | check for long long | Daniel Stenberg | |
changed the use of AC_CHECK_TYPE as the previous approach is deprecated require 2.57 properly | |||
2003-08-11 | define USE_ARES nicer if enabled | Daniel Stenberg | |
2003-08-05 | Add --enable-ares support, which will make us build curl with ares for | Daniel Stenberg | |
asynch name resolves. Still very experimental, beware! | |||
2003-07-30 | add a check for 'ar' since the lack of it bit Jared Ingersoll | Daniel Stenberg | |
we might need to check for some other tools too that on Solaris are put in those weird dirs... | |||
2003-07-25 | only check for CA bundle path if build with SSL support | Daniel Stenberg | |
set a conditional for the makefile if we know the CA path or not | |||
2003-07-04 | Dan Grayson pointed out that we set the CURL_CA_BUNDLE variable wrongly in | Daniel Stenberg | |
the configure script. We set it differently now and generate the lib/ca-bundle.h file entirely. | |||
2003-06-26 | moved from former CVS | Daniel Stenberg | |
2003-06-12 | store HAVE_LIBZ as an automake conditional | Daniel Stenberg | |