aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2004-05-25checl for the idn_free stuff to remain functionall even with older libidnDaniel Stenberg
versions
2004-05-06removed the warning if libidn isn't foundDaniel Stenberg
2004-05-06very minor output changeDaniel Stenberg
2004-05-05AC_CHECK_TOOL is prolly better to use when checking for arDaniel Stenberg
2004-05-05alert the user if 'sed' or 'ar' couldn't be found, as it might very wellDaniel Stenberg
render a build impossible
2004-05-05check the size of size_t for lib/mprintf.cDaniel Stenberg
2004-04-27without-libidn works too nowDaniel Stenberg
2004-04-26We now make sure to only scan for SSL options with pkg-config if we haven'tDaniel Stenberg
disabled SSL with --without-ssl. This previously made the Makefiles use the SSL libs even though told not to.
2004-04-26improved libidn detection to correct the false positives we gotDaniel Stenberg
2004-04-26Moved down the ares check again to the bottom of the script since itDaniel Stenberg
modified the compiler and link options so nothing can be tested for after this check, as the c-ares lib might not have been built yet!
2004-04-26"configure summary"Daniel Stenberg
2004-04-26--with-libidn[=PATH] is now supportedDaniel Stenberg
2004-04-25updated the warning text when SSL is explicitly disabledDaniel Stenberg
2004-04-01Only check that the c-ares lib is valid if we don't use the "embedded"Daniel Stenberg
directory. The provided ares dir is probably up-to-date, but more importantly it is often not built yet at the time when this configure script runs.
2004-04-01When ares is enabled, we now check for the ares_cancel function to verifyDaniel Stenberg
that we use a library that is recent enough to build with the latest libcurl.
2004-03-30Added CURL_CHECK_NI_WITHSCOPEID that checks if NI_WITHSCOPEID exists andDaniel Stenberg
works. No code actually uses the HAVE_NI_WITHSCOPEID (that a positive test results in), but this is still only for testing purposes.
2004-03-29netinet/tcp.h may require netinet/in.h to be include beforeDaniel Stenberg
2004-03-26check for netinet/tcp.h precense before actually including itDaniel Stenberg
2004-03-25get the version number from the new curlver.h header fileDaniel Stenberg
2004-03-25localtime and gmtime are not thread-safe on newer AIXes either so we forceDaniel Stenberg
a check for there *_r-versions too
2004-03-25force recent AIX versions to check for strerror_rDaniel Stenberg
2004-03-24added check for strerror_r()Daniel Stenberg
2004-03-18For IRIX systems we must pick the "correct" lib dirs for the particularDaniel Stenberg
libs we want. $libsuff is the magic variable that contains a suffix (which might be blank). Tor Arntsen brought details and verified this fix.
2004-03-15Added the new vms subdir in the packages dirDaniel Stenberg
2004-03-03Dan Fandrich fixed some GSS detection flawsDaniel Stenberg
2004-02-25Moved most of the set-debug-options-depending-on-compiler logic to the newDaniel Stenberg
CURL_CC_DEBUG_OPTS function in acinclude.m4
2004-02-21-Wno-format-nonliteral does not exist in my gcc 2.96, only use that withDaniel Stenberg
newer versions
2004-02-20Only 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 annoyingDaniel Stenberg
2004-02-19Anything that looks like gcc 5.0 or more is no longer treated as gcc. I hopeDaniel Stenberg
this will make us exclude icc 8.0 etc.
2004-02-19When --enable-debug is used, for every -I provided to $CPPFLAGS we addDaniel Stenberg
a corresponding -isystem, if using gcc, to inhibit warnings on those headers.
2004-02-19if not yacc or bison is found, check if we *really* need it, and if we doDaniel Stenberg
we bail out!
2004-02-19If --enable-debug is used and gcc, we figure out which version and then weDaniel Stenberg
use as aggressive warning options as possible for the used compiler version.
2004-02-15Andrés García added a check for lwinmm for Mingw/sysDaniel Stenberg
2004-02-12If no nroff tool is found, or if no command line switch to nroff that convertsDaniel Stenberg
a man page to text is found, we disable the built-in manual stuff to still be able to build.
2004-02-12added --enable/disable-manualDaniel Stenberg
2004-02-11Andrés García's additional fix to make the OpenSSL stuff work for msys/mingwDaniel Stenberg
2004-02-06Rewrote the gethostbyname() check after Andrés García's provided patchDaniel 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-05An attempt to only set both libz-related defines at the same time. We needDaniel 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-05when using --enable-debug and gcc, provide the -Wno-format-nonliteral optionDaniel Stenberg
to prevent the warning in mprintf.c: (currently line 930) "format not a string literal, argument types not checked"
2004-02-03link with libcares instead of libaresDaniel Stenberg
2004-02-02try to figure out if -man or -mandoc works to get text with the NROFFDaniel Stenberg
utility
2004-01-29check for sys/ioctl.h as wellDaniel 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-22Instead of checking the off_t size, we use the source dir version of theDaniel Stenberg
curl.h header and then check for the size of the curl_off_t type.
2004-01-15check for limits.h as wellDaniel Stenberg
2004-01-08fixed the LDFLAGS creation for the SPNEGO optionDaniel Stenberg
2004-01-07updated year in the copyright stringDaniel Stenberg
2003-12-15We cannot 'cd' to the ares build dir to get the path, as the directory hasn'tDaniel Stenberg
been created at this point yet when we build outside of the source dir.
2003-12-11if there is an 'ares' subdirectory when configure is run with --enable-aresDaniel Stenberg
(without a given path), we run configure automatically in that subdir
2003-12-10check for strtoll(), for the upcoming >2GB patchDaniel Stenberg