aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2004-11-08weirdo hack to fix debian bug report 278691:Daniel Stenberg
'curl -v writes debugging to its network socket if stderr is closed'
2004-11-08check for and require tld.h to be present before libidn usage is activatedDaniel Stenberg
in the build, since libidn 0.3.X didn't have the header and we don't support that old libidn versions anyway. This was mentioned on the list by Jean-Philippe Barrette-LaPierre and in bug report #1062264.
2004-11-04based Andres Garcia's patch, added for mingw buildDaniel Stenberg
2004-11-01When cross-compiling, the configure script no longer attempts to useDaniel Stenberg
pkg-config on the build host in order to detect OpenSSL compiler options.
2004-10-18Peter Wullinger pointed out that curl should call setlocale() properly toDaniel Stenberg
initiate the specific language operations, to make the IDN stuff work better.
2004-10-10If long long is supported, check if [num]LL is supported for numericalDaniel Stenberg
constants.
2004-10-08if basename was found, check for a prototype and if none was found, provideDaniel Stenberg
our own in the formdata.c file to prevent warnings on systems without it
2004-10-07check for tld_strerrorDaniel Stenberg
2004-10-06Dan Fandrich fix for hosts that need both -lnsl and -lsocketDaniel Stenberg
2004-10-05make the given path to --with-libidn override any other installationDaniel Stenberg
2004-10-03when building with libidn support, check for idna_strerror() which isDaniel Stenberg
included in very recent versions
2004-10-01- Based on Fedor Karpelevitch's formpost path basename patch, file parts inDaniel Stenberg
formposts no longer include the path part. If you _really_ want them, you must provide your preferred full file name with CURLFORM_FILENAME. Added detection for libgen.h and basename() to configure. My custom basename() replacement function for systems without it, might be a bit too naive... Updated 6 test cases to make them work with the stripped paths.
2004-09-28made pkg-config not get used if a path is given with --with-sslDaniel Stenberg
2004-09-15Replaced the former date parser with a rewrite. No more yacc/bison needed.Daniel Stenberg
2004-08-19the autobuilds failed all over on AIX, attempt to fix the strerror_r() problemDaniel Stenberg
by setting _THREAD_SAFE (and -qthreaded) before strerror_r() is checked for.
2004-08-17added a check for the xlc compiler on AIX, and if that is detect we useDaniel Stenberg
the -qthreaded compiler option
2004-08-17define _THREAD_SAFE on (recent) AIX systems to build thread-safe codeDaniel Stenberg
2004-08-12Removed the _XOPEN_SOURCE defining again since it caused major havoc in IRIXDaniel Stenberg
land with many warnings and even compiler errors due to missing structs etc
2004-08-11define the _XOPEN_SOURCE define in the config.h file instead, and also added aDaniel Stenberg
decent quote about the define, taken from http://www.opengroup.org/onlinepubs/007908799/xsh/compilation.html
2004-08-11fixed the default result for xopen and mimpure to work betterDaniel Stenberg
2004-08-11experimental code to detect mips-sgi-irix systems that build without gccDaniel Stenberg
and if so, define _XOPEN_SOURCE to 500 in an attempt to build with less warnings (on the 64bit versions)
2004-08-09the krb4 stuff needs -lcom_err to link now, for some odd reason. This isDaniel Stenberg
possibly only on some platforms, but it happens on my Solaris 2.7 box and I don't know anyone else that regularly build curl with krb4 support.
2004-07-24AM_PROG_LIBTOOL is deprecated and AC_PROG_LIBTOOL should be used insteadDaniel Stenberg
2004-07-22refer bug reports to the mailing lists, not the old email aliasDaniel Stenberg
2004-06-29commented out the check for gethostbyname_r() as we no longer use itDaniel Stenberg
2004-06-27check for a fine poll() before it is used to sleep subsecondDaniel Stenberg
2004-06-03set an automake conditional for if this is a cross-compile or notDaniel Stenberg
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.